MaiXinRong 6 年之前
父節點
當前提交
e4c4c0df73
共有 1 個文件被更改,包括 1 次插入1 次删除
  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);