From b8b7520a25365c9d2a8d55a43aad69eded2ae03a Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Fri, 28 Nov 2025 18:07:59 +0800 Subject: [PATCH] =?UTF-8?q?bd=E9=A6=96=E9=A1=B5=E6=95=B0=E6=8D=AE=E6=95=B0?= =?UTF-8?q?=E9=87=8F=E4=B8=8D=E5=AF=B9=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../circle/other/app/command/bd/query/BdTeamSummaryQryExe.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/bd/query/BdTeamSummaryQryExe.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/bd/query/BdTeamSummaryQryExe.java index 16e74d82..0c2a0bb4 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/bd/query/BdTeamSummaryQryExe.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/bd/query/BdTeamSummaryQryExe.java @@ -166,7 +166,8 @@ public class BdTeamSummaryQryExe { return item; } - item.setCount(bdTeamList.size()); + List bdInfos = businessDevelopmentBaseInfoService.listBdByLeadUserId(bdUserId); + item.setCount(bdInfos.size()); // 计算总收入 BigDecimal totalIncome = calculateBdTotalIncome(bdTeamList, currentBillBelong);