Commit 474a72b3 by LJM

css

parent b8d2c21f
Showing with 2 additions and 2 deletions
......@@ -193,7 +193,7 @@ export default {
*/
inputNumChange: debounce(function(event, pending_shelf_qty) {
//如果是退货入库就不请求推荐规则
if (this.formParams.position_code && this.formParams.qty_on_shelf && this.detail.stock_in_type != 2) {
if (this.formParams.position_code && this.formParams.qty_on_shelf && this.detail.stock_in_type != 2 && this.detail.quality == 1) {
this.getWorkingRuleList();
}
var pending_shelf_qty = Number(pending_shelf_qty);
......@@ -208,7 +208,7 @@ export default {
inputPositionCodeChange: debounce(function(event) {
this.getWhPositionList();
//如果是退货入库就不请求推荐规则
if (this.formParams.position_code && this.formParams.qty_on_shelf && this.detail.stock_in_type != 2) {
if (this.formParams.position_code && this.formParams.qty_on_shelf && this.detail.stock_in_type != 2 && this.detail.quality == 1) {
this.getWorkingRuleList();
}
}, 500),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment