Browse Source

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

ellisran 1 year ago
parent
commit
7e915909c0

+ 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,