Commit 0af15996 by 王栋源

wdy

parent 2756ef24
...@@ -630,7 +630,13 @@ class AliyunQcService{ ...@@ -630,7 +630,13 @@ class AliyunQcService{
} }
//方案流程列表 //方案流程列表
var solutionFlowList = solutionContent.solutionFlowList || []; var solutionFlowList = solutionContent.solutionFlowList || [];
if (ab.status == "2") {//⽤户已上传 if (ab.status == "1") {//⽤户已支付
solutionFlowList.push({
status: "PAID", statusName: this.icpSolutionStatusReference.PAID, updated_at: new Date()
});
solutionContent.status = "PAID";
solutionContent.statusName = this.icpSolutionStatusReference.PAID;
}else if (ab.status == "2") {//⽤户已上传
if(solutionContent.status =="USER_CONFIRMED"){//防止用户确认后又否决 if(solutionContent.status =="USER_CONFIRMED"){//防止用户确认后又否决
return system.getResultFail(-112, "操作失败,⽤户已确认递交⽂件"); return system.getResultFail(-112, "操作失败,⽤户已确认递交⽂件");
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment