|
@@ -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);
|