给空白处预设值
parent
23767ce480
commit
5b1147b246
|
@ -230,14 +230,14 @@
|
||||||
<div class="am-g am-form-group am-margin-top">
|
<div class="am-g am-form-group am-margin-top">
|
||||||
<div class="am-u-sm-4 am-u-md-2 am-text-right">华智产品金额</div>
|
<div class="am-u-sm-4 am-u-md-2 am-text-right">华智产品金额</div>
|
||||||
<div class="am-u-sm-6 am-u-md-6">
|
<div class="am-u-sm-6 am-u-md-6">
|
||||||
<span>${Utils.format(project.huazhiProductAmount)}</span>元
|
<span>${Utils.format(project.huazhiProductAmount, '0.00')}</span>元
|
||||||
</div>
|
</div>
|
||||||
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
|
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="am-g am-form-group am-margin-top">
|
<div class="am-g am-form-group am-margin-top">
|
||||||
<div class="am-u-sm-4 am-u-md-2 am-text-right">其他产品金额</div>
|
<div class="am-u-sm-4 am-u-md-2 am-text-right">其他产品金额</div>
|
||||||
<div class="am-u-sm-6 am-u-md-6">
|
<div class="am-u-sm-6 am-u-md-6">
|
||||||
<span>${Utils.format(project.ziguangOtherAmount)}</span>元
|
<span>${Utils.format(project.ziguangOtherAmount, '0.00')}</span>元
|
||||||
</div>
|
</div>
|
||||||
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
|
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -355,15 +355,15 @@
|
||||||
<td>成本</td>
|
<td>成本</td>
|
||||||
<td>其他</td>
|
<td>其他</td>
|
||||||
<td>${project.otherName!}</td>
|
<td>${project.otherName!}</td>
|
||||||
<td><input type="text" class="number" name="costOtherOtherTaxInclude" value="${Utils.format(estimateBean.costOtherOtherTaxInclude, "0.00")}" required readonly></td>
|
<td><input type="text" class="number" name="costOtherOtherTaxInclude" value="${Utils.format(estimateBean.costOtherOtherTaxInclude, '0.00')}" required readonly></td>
|
||||||
<td><input type="text" class="number" name="costOtherOtherTaxExclude" value="${Utils.format(estimateBean.costOtherOtherTaxExclude, "0.00")}" required readonly></td>
|
<td><input type="text" class="number" name="costOtherOtherTaxExclude" value="${Utils.format(estimateBean.costOtherOtherTaxExclude, '0.00')}" required readonly></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>合计</td>
|
<td>合计</td>
|
||||||
<td></td>
|
<td></td>
|
||||||
<td></td>
|
<td></td>
|
||||||
<td><input type="text" class="number" name="costTotalTaxInclude" value="${Utils.format(estimateBean.costTotalTaxInclude)}" readonly readonly title="此列累计"></td>
|
<td><input type="text" class="number" name="costTotalTaxInclude" value="${Utils.format(estimateBean.costTotalTaxInclude, '0.00')}" readonly readonly title="此列累计"></td>
|
||||||
<td><input type="text" class="number" name="costTotalTaxExclude" value="${Utils.format(estimateBean.costTotalTaxExclude)}" readonly readonly title="此列累计"></td>
|
<td><input type="text" class="number" name="costTotalTaxExclude" value="${Utils.format(estimateBean.costTotalTaxExclude, '0.00')}" readonly readonly title="此列累计"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
@ -979,10 +979,10 @@
|
||||||
<td></td>
|
<td></td>
|
||||||
<td></td>
|
<td></td>
|
||||||
<td><input type="text" class="number" name="costTotalTaxInclude"
|
<td><input type="text" class="number" name="costTotalTaxInclude"
|
||||||
value="${Utils.format(budgetBean.costTotalTaxInclude,'0')}"
|
value="${Utils.format(budgetBean.costTotalTaxInclude, '0.00')}"
|
||||||
readonly required title="此列累计"></td>
|
readonly required title="此列累计"></td>
|
||||||
<td><input type="text" class="number" name="costTotalTaxExclude"
|
<td><input type="text" class="number" name="costTotalTaxExclude"
|
||||||
value="${Utils.format(budgetBean.costTotalTaxExclude,'0')}"
|
value="${Utils.format(budgetBean.costTotalTaxExclude, '0.00')}"
|
||||||
readonly required title="此列累计"></td>
|
readonly required title="此列累计"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
Loading…
Reference in New Issue