From e2af8608c0d243c6ec061791197fd446b4401b8a Mon Sep 17 00:00:00 2001 From: 陶杰 <1378534974@qq.com> Date: 星期三, 25 十二月 2024 13:37:01 +0800 Subject: [PATCH] 1.统计报表-历史合伙人可查 2.小程序-花店:分类按照售罄放到最下面 3.小程序-合伙人:质检按照仓库排序 --- 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