<% include ../tender/tender_sub_menu.ejs %>
<% include ../tender/tender_sub_mini_menu.ejs %>

材料调差期列表

<% if (ctx.session.sessionUser.accountId === ctx.tender.data.user_id && stages.length > 0 && (materials.length === 0 || materials[0].status === auditConst.status.checked)) { %> 开始新一期 <% } %>
<% for (const m of materials) { %> <% } %>
期数 添加时间 计量期 信息价调差 指数法调差 合计 审批进度 操作
价差费用 价差费用(含税) 价差费用 价差费用(含税) 价差费用 价差费用(含税)
第 <%- m.order %> 期 <%= moment(m.in_time).format('YYYY-MM-DD') %> 第 <%= m.s_order %> 期 <%= m.m_tp !== null ? ctx.helper.round(m.m_tp, 2) : null %> <%= m.m_tp !== null ? ctx.helper.round(ctx.helper.mul(m.m_tp, 1+m.rate/100), 2) : null %> <%= m.ex_tp !== null ? ctx.helper.round(m.ex_tp, 2) : null %> <%= m.ex_tp !== null ? ctx.helper.round(ctx.helper.mul(m.ex_tp, 1+m.rate/100), 2) : null %> <%= ctx.helper.add(ctx.helper.round(m.ex_tp, 2), ctx.helper.round(m.m_tp, 2)) %> <%= ctx.helper.add(ctx.helper.round(ctx.helper.mul(m.ex_tp, 1+m.rate/100), 2), ctx.helper.round(ctx.helper.mul(m.m_tp, 1+m.rate/100), 2)) %> <% if (m.curAuditor) { %> <%- m.curAuditor.name %><%if (m.curAuditor.role !== '' && m.curAuditor.role !== null) { %>-<%- m.curAuditor.role %><% } %> <% } %> <%- auditConst.auditProgress[m.status] %> <% if (m.status === auditConst.status.uncheck && m.user_id === ctx.session.sessionUser.accountId) { %> <%- auditConst.statusButton[m.status] %> <% } else if (m.status === auditConst.status.checkNo && m.curAuditor && m.user_id === ctx.session.sessionUser.accountId) { %> <%- auditConst.statusButton[m.status] %> <% } else if (m.status === auditConst.status.checking && m.curAuditor && m.curAuditor.aid === ctx.session.sessionUser.accountId) { %> <%- auditConst.statusButton[m.status] %> <% } else { %> <%- auditConst.auditProgress[m.status] %> <% } %> <% if (m.user_id === ctx.session.sessionUser.accountId && m.order === materials.length) { %> 删除 <% } %>