Browse Source

计算基数相关

MaiXinRong 6 months atrás
parent
commit
050a6f081d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/service/phase_pay.js

+ 1 - 1
app/service/phase_pay.js

@@ -119,7 +119,7 @@ module.exports = app => {
             const result = {};
             for (const stage of relaStage) {
                 result.contract_tp = this.ctx.helper.add(result.contract_tp, stage.contract_tp);
-                result.qc_tp = this.ctx.helper.add(result.contract_tp, stage.qc_tp);
+                result.qc_tp = this.ctx.helper.add(result.qc_tp, stage.qc_tp);
                 result.pc_tp = this.ctx.helper.add(result.pc_tp, stage.pc_tp);
 
                 const qdSum = await this.ctx.service.stageBills.getSumTotalPriceGcl(stage);