소스 검색

修复3种变更退回原报审批列表bug

ellisran 1 년 전
부모
커밋
7e915909c0
3개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 1
      app/service/change_apply_audit.js
  2. 1 1
      app/service/change_plan_audit.js
  3. 1 1
      app/service/change_project_audit.js

+ 1 - 1
app/service/change_apply_audit.js

@@ -482,7 +482,7 @@ module.exports = app => {
                 a.status = auditConst.status.uncheck;
                 order++;
                 newAuditors.push({
-                    tid: a.tid,
+                    tid: this.ctx.tender.id,
                     caid: caId,
                     times: a.times,
                     order: a.order,

+ 1 - 1
app/service/change_plan_audit.js

@@ -495,7 +495,7 @@ module.exports = app => {
                 a.status = auditConst.status.uncheck;
                 order++;
                 newAuditors.push({
-                    tid: a.tid,
+                    tid: this.ctx.tender.id,
                     cpid: cpId,
                     times: a.times,
                     order: a.order,

+ 1 - 1
app/service/change_project_audit.js

@@ -485,7 +485,7 @@ module.exports = app => {
                 a.status = auditConst.status.uncheck;
                 order++;
                 newAuditors.push({
-                    tid: a.tid,
+                    tid: this.ctx.tender.id,
                     cpid: cpId,
                     times: a.times,
                     order: a.order,