MaiXinRong hace 6 años
padre
commit
e4c4c0df73
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      app/public/js/stage_im.js

+ 1 - 1
app/public/js/stage_im.js

@@ -25,7 +25,7 @@ const stageIm = (function () {
     gsTreeSetting.calcFun = function (node) {
         if (node.children && node.children.length === 0) {
             node.pre_gather_qty = ZhCalc.plus(node.pre_contract_qty, node.pre_qc_qty);
-            node.gather_qty = _ZhCalc.plus(node.contract_qty, node.qc_qty);
+            node.gather_qty = ZhCalc.plus(node.contract_qty, node.qc_qty);
             node.end_contract_qty = ZhCalc.plus(node.pre_contract_qty, node.contract_qty);
             node.end_qc_qty = ZhCalc.plus(node.pre_qc_qty, node.qc_qty);
             node.end_gather_qty = ZhCalc.plus(node.pre_gather_qty, node.gather_qty);