feat 收入明细表:

1:资金计划修改
dev_1.0.0
chenhao 2024-10-29 16:01:53 +08:00
parent d34ae39d8d
commit 3cbe4d951f
1 changed files with 1 additions and 0 deletions

View File

@ -725,6 +725,7 @@ public class ProjectController extends BaseController {
//付款计划表 //付款计划表
List<ProjectBudgetPayPlan> budgetPayPlan = projectBudgetService.getBudgetPayPlan(project); List<ProjectBudgetPayPlan> budgetPayPlan = projectBudgetService.getBudgetPayPlan(project);
model.put("budgetPayPlan", budgetPayPlan); model.put("budgetPayPlan", budgetPayPlan);
model.put("budgetPayPlanTotal", budgetPayPlan.stream().filter(p->p.getPayAmount()!=null).map(p->p.getPayAmount()).reduce(BigDecimal.ZERO, BigDecimal::add));
//成本明细 //成本明细
List<ProjectBudgetCostDetail> budgetCostDetail = projectBudgetService.getBudgetCostDetail(project); List<ProjectBudgetCostDetail> budgetCostDetail = projectBudgetService.getBudgetCostDetail(project);
model.put("costDetails", budgetCostDetail); model.put("costDetails", budgetCostDetail);