Commit 451b9efda1c1910518ef801104557c59ba42eb80

Authored by Min
1 parent ffb3bd83

1.增加调试

src/components/Common/commonBusiness.js
... ... @@ -731,6 +731,7 @@ export function getCalculatedReserveBags1(tableDataRow, sFieldName) {
731 731 /** 输入数量, 计算箱包 */
732 732 export function getCalculatedReserveBags(tableDataRow, sFieldName) {
733 733 /* 执行条件 || sFieldName === 'dTrunkQty' */
  734 + console.log('计算箱包数');
734 735 if (sFieldName === 'dProductQty' || sFieldName === 'dGiveQty') { /* 输入数量,算包数 及零头 */
735 736 /* 数量 */
736 737 const dProductQty = commonUtils.convertToNum(tableDataRow.dProductQty) + commonUtils.convertToNum(tableDataRow.dGiveQty);
... ...