|
@@ -90,31 +90,31 @@
|
|
|
<tbody><tr>
|
|
|
<td>
|
|
|
<p class="mb-0">本期合同计量</p>
|
|
|
- <b>¥<%- ctx.helper.formatMoney((s.contract_tp ? s.contract_tp : 0)) %></b>
|
|
|
+ <b>¥<%- s.contract_tp ? s.contract_tp : 0 %></b>
|
|
|
</td>
|
|
|
<td>
|
|
|
<p class="mb-0">本期数量变更计量</p>
|
|
|
- <b>¥<%- ctx.helper.formatMoney((s.qc_tp ? s.qc_tp : 0)) %></b>
|
|
|
+ <b>¥<%- s.qc_tp ? s.qc_tp : 0 %></b>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td>
|
|
|
<p class="mb-0">本期完成计量</p>
|
|
|
- <b>¥<%- ctx.helper.formatMoney((s.tp ? s.tp : 0)) %></b>
|
|
|
+ <b>¥<%- s.tp ? s.tp : 0 %></b>
|
|
|
</td>
|
|
|
<td>
|
|
|
<p class="mb-0">截止上期完成计量</p>
|
|
|
- <b>¥<%- ctx.helper.formatMoney((s.pre_tp ? s.pre_tp : 0)) %></b>
|
|
|
+ <b>¥<%- s.pre_tp ? s.pre_tp : 0 %></b>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td>
|
|
|
<p class="mb-0">截止本期完成计量</p>
|
|
|
- <b>¥<%- ctx.helper.formatMoney((s.end_tp ? s.end_tp : 0)) %></b>
|
|
|
+ <b>¥<%- s.end_tp ? s.end_tp : 0 %></b>
|
|
|
</td>
|
|
|
<td>
|
|
|
<p class="mb-0">本期应付</p>
|
|
|
- <b>¥<%- ctx.helper.formatMoney((s.yf_tp ? s.yf_tp : 0)) %></b>
|
|
|
+ <b>¥<%- s.yf_tp ? s.yf_tp : 0 %></b>
|
|
|
</td>
|
|
|
</tr>
|
|
|
</tbody></table>
|
|
@@ -140,31 +140,31 @@
|
|
|
<tbody><tr>
|
|
|
<td>
|
|
|
<p class="mb-0">本期合同计量</p>
|
|
|
- <b>¥<%- ctx.helper.formatMoney((stage.contract_tp ? stage.contract_tp : 0)) %></b>
|
|
|
+ <b>¥<%- stage.contract_tp ? stage.contract_tp : 0 %></b>
|
|
|
</td>
|
|
|
<td>
|
|
|
<p class="mb-0">本期数量变更计量</p>
|
|
|
- <b>¥<%- ctx.helper.formatMoney((stage.qc_tp ? stage.qc_tp : 0)) %></b>
|
|
|
+ <b>¥<%- stage.qc_tp ? stage.qc_tp : 0 %></b>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td>
|
|
|
<p class="mb-0">本期完成计量</p>
|
|
|
- <b>¥<%- ctx.helper.formatMoney((stage.tp ? stage.tp : 0)) %></b>
|
|
|
+ <b>¥<%- stage.tp ? stage.tp : 0 %></b>
|
|
|
</td>
|
|
|
<td>
|
|
|
<p class="mb-0">截止上期完成计量</p>
|
|
|
- <b>¥<%- ctx.helper.formatMoney((stage.pre_tp ? stage.pre_tp : 0)) %></b>
|
|
|
+ <b>¥<%- stage.pre_tp ? stage.pre_tp : 0 %></b>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td>
|
|
|
<p class="mb-0">截止本期完成计量</p>
|
|
|
- <b>¥<%- ctx.helper.formatMoney((stage.end_tp ? stage.end_tp : 0)) %></b>
|
|
|
+ <b>¥<%- stage.end_tp ? stage.end_tp : 0 %></b>
|
|
|
</td>
|
|
|
<td>
|
|
|
<p class="mb-0">本期应付</p>
|
|
|
- <b>¥<%- ctx.helper.formatMoney((stage.yf_tp ? stage.yf_tp : 0)) %></b>
|
|
|
+ <b>¥<%- stage.yf_tp ? stage.yf_tp : 0 %></b>
|
|
|
</td>
|
|
|
</tr>
|
|
|
</tbody></table>
|