|
@@ -69,7 +69,7 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="ml-auto">
|
|
<div class="ml-auto">
|
|
- <% if (tender.user_id === ctx.session.sessionUser.accountId) { %>
|
|
|
|
|
|
+ <% if (tender.user_id === ctx.session.sessionUser.accountId || addPermission) { %>
|
|
<a href="#add-bj" data-toggle="modal" data-target="#add-bj" class="btn btn-sm btn-primary pull-right ml-1">新建变更令</a>
|
|
<a href="#add-bj" data-toggle="modal" data-target="#add-bj" class="btn btn-sm btn-primary pull-right ml-1">新建变更令</a>
|
|
<a href="#setting" data-toggle="modal" data-target="#setting" class="btn btn-sm btn-outline-primary pull-right ml-2"><i class="fa fa-cog"></i></a>
|
|
<a href="#setting" data-toggle="modal" data-target="#setting" class="btn btn-sm btn-outline-primary pull-right ml-2"><i class="fa fa-cog"></i></a>
|
|
<a href="#batch-sb" data-toggle="modal" data-target="#batch-sb" class="btn btn-sm btn-primary pull-right ml-2">批量上报</a>
|
|
<a href="#batch-sb" data-toggle="modal" data-target="#batch-sb" class="btn btn-sm btn-primary pull-right ml-2">批量上报</a>
|
|
@@ -89,11 +89,11 @@
|
|
<table class="table table-bordered" id="change-table">
|
|
<table class="table table-bordered" id="change-table">
|
|
<thead class="text-center">
|
|
<thead class="text-center">
|
|
<tr><th width="3%">序号</th>
|
|
<tr><th width="3%">序号</th>
|
|
- <th width="18%" id="sort_change">申请编号/变更令号</th><th width="24%">变更工程名称</th>
|
|
|
|
|
|
+ <th width="16%" id="sort_change">申请编号/变更令号</th><th width="22%">变更工程名称</th>
|
|
<th width="7%">变更性质</th><% if (ctx.session.sessionProject.page_show.openChangeState) { %><th width="7%">变更令状态</th><% } %>
|
|
<th width="7%">变更性质</th><% if (ctx.session.sessionProject.page_show.openChangeState) { %><th width="7%">变更令状态</th><% } %>
|
|
<th width="7%">变更金额</th><th width="7%">计价金额</th>
|
|
<th width="7%">变更金额</th><th width="7%">计价金额</th>
|
|
- <th width="7%">不计价金额</th><th width="7%">审批状态</th>
|
|
|
|
- <th width="14%">审批进度</th><th width="4%">操作</th>
|
|
|
|
|
|
+ <th width="7%">不计价金额</th><th width="6%">创建人</th><th width="7%">审批状态</th>
|
|
|
|
+ <th width="12%">审批进度</th><th width="4%">操作</th>
|
|
</tr>
|
|
</tr>
|
|
</thead>
|
|
</thead>
|
|
<tbody id="changeList">
|
|
<tbody id="changeList">
|
|
@@ -115,6 +115,7 @@
|
|
<td style="text-align: right"><%= ctx.helper.roundNum(c.total_price, tpUnit) %></td>
|
|
<td style="text-align: right"><%= ctx.helper.roundNum(c.total_price, tpUnit) %></td>
|
|
<td style="text-align: right"><%= ctx.helper.roundNum(c.valuation_tp, tpUnit) %></td>
|
|
<td style="text-align: right"><%= ctx.helper.roundNum(c.valuation_tp, tpUnit) %></td>
|
|
<td style="text-align: right"><%= ctx.helper.roundNum(c.unvaluation_tp, tpUnit) %></td>
|
|
<td style="text-align: right"><%= ctx.helper.roundNum(c.unvaluation_tp, tpUnit) %></td>
|
|
|
|
+ <td style="text-align: center"><%- c.username %></td>
|
|
<td class="text-center">
|
|
<td class="text-center">
|
|
<% if (c.status === auditConst.status.uncheck && c.uid === ctx.session.sessionUser.accountId) { %>
|
|
<% if (c.status === auditConst.status.uncheck && c.uid === ctx.session.sessionUser.accountId) { %>
|
|
<a href="<%- '/tender/' + ctx.tender.id + '/change/' + c.cid %>/information" class="btn <%- auditConst.statusButtonClass[c.status] %> btn-sm"><%- auditConst.statusButton[c.status] %></a>
|
|
<a href="<%- '/tender/' + ctx.tender.id + '/change/' + c.cid %>/information" class="btn <%- auditConst.statusButtonClass[c.status] %> btn-sm"><%- auditConst.statusButton[c.status] %></a>
|