3
0
Fork 0

## Opt - 业绩列表-增加金额&数字/10000(保留4位小数)

This commit is contained in:
sangelxiu1 2025-09-05 15:20:19 +08:00 committed by cabbage
parent 242dd90758
commit fdd71547c3
1 changed files with 1 additions and 1 deletions

View File

@ -543,7 +543,7 @@ public class CuMemberRetailAchieveServiceImpl extends ServiceImpl<CuMemberRetail
for (PerformanceVO performanceVO : list) { for (PerformanceVO performanceVO : list) {
// debug // debug
performanceVO.setCurrentMonthPv(performanceVO.getCurrentMonthAmount()); performanceVO.setCurrentMonthPv(performanceVO.getCurrentMonthAmount());
performanceVO.setRepurchasePv(performanceVO.getRepurchasePv()); performanceVO.setRepurchasePv(performanceVO.getRepurchaseAmount());
performanceVO.setRepurchasePv(DataStatisticsUtil.formatPV(performanceVO.getRepurchasePv())); performanceVO.setRepurchasePv(DataStatisticsUtil.formatPV(performanceVO.getRepurchasePv()));
performanceVO.setRepurchaseAmount(DataStatisticsUtil.formatPV(performanceVO.getRepurchaseAmount())); performanceVO.setRepurchaseAmount(DataStatisticsUtil.formatPV(performanceVO.getRepurchaseAmount()));