diff --git a/src/main/resources/templates/admin/project_approve.ftl b/src/main/resources/templates/admin/project_approve.ftl index b129dca..4bd5d2f 100644 --- a/src/main/resources/templates/admin/project_approve.ftl +++ b/src/main/resources/templates/admin/project_approve.ftl @@ -248,14 +248,14 @@
华智产品金额
- ${Utils.format(project.huazhiProductAmount)}元 + ${Utils.format(project.huazhiProductAmount, "0.00")}
其他产品金额
- ${Utils.format(project.ziguangOtherAmount)}元 + ${Utils.format(project.ziguangOtherAmount, "0.00")}
diff --git a/src/main/resources/templates/admin/project_budget_edit.ftl b/src/main/resources/templates/admin/project_budget_edit.ftl index 93fc774..d9561c0 100644 --- a/src/main/resources/templates/admin/project_budget_edit.ftl +++ b/src/main/resources/templates/admin/project_budget_edit.ftl @@ -176,7 +176,7 @@
+ value="${Utils.format(project.huazhiProductAmount, "0.00")}" />
@@ -185,7 +185,7 @@
+ value="${Utils.format(project.ziguangOtherAmount, "0.00")}" />
diff --git a/src/main/resources/templates/admin/project_estimate_edit.ftl b/src/main/resources/templates/admin/project_estimate_edit.ftl index bd25d56..7e6be85 100644 --- a/src/main/resources/templates/admin/project_estimate_edit.ftl +++ b/src/main/resources/templates/admin/project_estimate_edit.ftl @@ -156,7 +156,7 @@
<#--*-->华智产品金额
+ name="huazhiProductAmount" placeholder="单位(元)" maxlength="16" value="${Utils.format(project.huazhiProductAmount, "0.00")}" />
@@ -164,7 +164,7 @@
<#--*-->其他产品金额
+ name="ziguangOtherAmount" placeholder="单位(元)" maxlength="16" value="${Utils.format(project.ziguangOtherAmount, "0.00")}" />