Browse Source

Merge branch 'dev' of http://192.168.1.41:3000/maixinrong/Calculation into dev

laiguoran 3 years ago
parent
commit
f77125fe66
1 changed files with 6 additions and 0 deletions
  1. 6 0
      app/public/js/stage.js

+ 6 - 0
app/public/js/stage.js

@@ -3900,6 +3900,7 @@ $(document).ready(() => {
                             {title: '单价', field: 'unit_price', hAlign: 2, width: 50},
                             {title: '数量', field: 'quantity', hAlign: 2, width: 50},
                             {title: '完成率(%)', field: 'end_gather_percent', hAlign: 2, width: 70},
+                            {title: '本期负变更', field: 'minus_qc_qty', hAlign: 2, width: 50},
                         ],
                         emptyRows: 0,
                         headRows: 1,
@@ -3938,6 +3939,11 @@ $(document).ready(() => {
                                 }
                             }
                         }, {
+                            key: 'minus_qc_qty', title: '负变更', valid: true,
+                            check: function (node) {
+                                return node.end_minus_qc_qty;
+                            }
+                        }, {
                             key: 'estimate', title: '预计变更', valid: true,
                             check: function (node) {
                                 const posRange = stagePos.ledgerPos[itemsPre + node.id] || [];