垫资金额 格式

master
Harry Yang 2023-01-06 11:38:00 +08:00
parent 29d74d0889
commit d975b0adcb
2 changed files with 3 additions and 3 deletions

View File

@ -296,7 +296,7 @@ public class ProcessController {
public String isPrepaid;
// 垫资金额
public String repaidAmount;
public BigDecimal repaidAmount;
// 预算毛利率
public BigDecimal budgetGrossMargin;
@ -340,7 +340,7 @@ public class ProcessController {
.incomeDetails(incomeDetails)
.procurementDetails(procurementDetails)
.projectName(project.getName())
.repaidAmount(repaidAmount + "元")
.repaidAmount(repaidAmount)
.budgetGrossMargin(budgetBean.getProjectGrossProfitRate())
.projectNo(project.getProjectNo())
.applyPersonName(admin.getRealName())

View File

@ -305,7 +305,7 @@
</el-form-item>
<el-form-item label="垫资金额" v-if="processForm.isPrepaid!=='否'">
<span v-if="projectSelected">{{processForm.repaidAmount|numberFormat}}</span>
<span v-if="projectSelected">{{processForm.repaidAmount|numberFormat}}</span>
<span v-else>未选择项目</span>
</el-form-item>