From 44050285d9b0f2df69e625f92e69309a530902b6 Mon Sep 17 00:00:00 2001 From: 陶杰 <1378534974@qq.com> Date: 星期三, 11 十二月 2024 16:57:34 +0800 Subject: [PATCH] 1.财务报表详情-部分统计字段新增 2.合伙人报表-部分统计字段新增 --- src/main/java/com/mzl/flower/service/flower/FlowerMarkupSpService.java | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/mzl/flower/service/flower/FlowerMarkupSpService.java b/src/main/java/com/mzl/flower/service/flower/FlowerMarkupSpService.java index 89b410b..e6d1697 100644 --- a/src/main/java/com/mzl/flower/service/flower/FlowerMarkupSpService.java +++ b/src/main/java/com/mzl/flower/service/flower/FlowerMarkupSpService.java @@ -15,6 +15,7 @@ import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; +import java.math.BigDecimal; import java.util.List; @Slf4j @@ -77,6 +78,11 @@ if(ll != null && ll.size() > 0){ for(FlowerMarkupSpListDTO ss : ll){ ss.setPrice(getFinalPriceForPartner(dto.getPartnerId(), ss.getCategory(), ss.getFlowerId(), ss.getPrice(), ss.getLevel())); + BigDecimal fee = ss.getFee(); + if (fee == null) { + fee = BigDecimal.ZERO; + } + ss.setSellPrice(ss.getPrice().add(fee)); } } @@ -90,6 +96,11 @@ if(ll != null && ll.size() > 0){ for(FlowerMarkupSpListDTO ss : ll){ ss.setPrice(getFinalPriceForPartner(dto.getPartnerId(), ss.getCategory(), ss.getFlowerId(), ss.getPrice(), ss.getLevel())); + BigDecimal fee = ss.getFee(); + if (fee == null) { + fee = BigDecimal.ZERO; + } + ss.setSellPrice(ss.getPrice().add(fee)); } } -- Gitblit v1.9.3