Browse Source

修改判断条件 ---cjh

17767204043 3 years ago
parent
commit
cf7f189505
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/views/ProductionOrderList/Deliverylist/matchIronware.vue

+ 1 - 1
src/views/ProductionOrderList/Deliverylist/matchIronware.vue

@@ -459,7 +459,7 @@ export default {
       this.modelRightTableData.forEach((r) => {
         this.modelLeftTableData.forEach((l) => {
           if (r.id == l.id) {
-            if (r.remain_num < l.remain_num) {
+            if (r.remain_num > l.remain_num) {
               ifTrue = 1;
             }
           }