垫资金额 格式
parent
29d74d0889
commit
d975b0adcb
|
@ -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())
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
Loading…
Reference in New Issue