% include ../tender/tender_sub_menu.ejs %>
变更申请编号 | 变更工程名称 | 变更金额 | 变更立项书 | 变更通知书 | 通知书发出人 | 审批状态 | 审批进度 | 操作 |
---|---|---|---|---|---|---|---|---|
<%- c.code %> | <%- c.name %> | <%- c.total_price %> | <% if (c.project_code) { %><% if (ctx.helper._.find(changeProjectList, { code: c.project_code })) { %><%- c.project_code %><% } else { %><%- c.project_code %><% } %><% } %> | <% if (c.notice_code) { %><%- c.notice_code %><% } %> | <%- c.account_name %> | <% if (c.status === auditConst.status.uncheck && c.uid === ctx.session.sessionUser.accountId) { %> <%- auditConst.statusButton[c.status] %> <% } else if ((c.status === auditConst.status.checkNo || c.status === auditConst.status.revise) && c.curAuditors && c.aid === ctx.session.sessionUser.accountId) { %> <%- auditConst.statusButton[c.status] %> <% } else if (c.status === auditConst.status.checking && c.curAuditors && c.curAuditors.findIndex(x => { return x.aid === ctx.session.sessionUser.accountId; }) >= 0) { %> <% const curAudit = c.curAuditors.find(x => { return x.aid === ctx.session.sessionUser.accountId; }); %> <% if (curAudit.status === auditConst.status.checking) { %> <%- auditConst.statusButton[c.status] %> <% } else { %> <%- auditConst.auditString[curAudit.status] %> <% } %> <% } else { %> <%- auditConst.auditString[c.status] %> <% } %> | <% if (c.status === auditConst.status.checked && c.final_auditor_str) { %> <%- c.final_auditor_str %> <% } else if (c.curAuditors.length > 0) { %> <% if (c.curAuditors[0].audit_type === auditType.key.common) { %> <%- c.curAuditors[0].name %><%if (c.curAuditors[0].role !== '' && c.curAuditors[0].role !== null) { %>-<%- c.curAuditors[0].role %><% } %> <% } else { %> <%- ctx.helper.transFormToChinese(c.curAuditors[0].audit_order) + '审' %> <% } %> <% } %> <%- auditConst.auditProgress[c.status] %> | <% if (c.uid === uid && (c.status === auditConst.status.uncheck || c.status === auditConst.status.checkNo)) { %>删除<% } %> |