From 1e6bb6d0bfd497d8b2167e5d5eff3c48afc45f82 Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Tue, 6 Jan 2026 14:27:47 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AE=A1=E7=90=86=E5=91=98=E6=94=BF=E7=AD=96?= =?UTF-8?q?=E5=8E=BB=E9=99=A4rewardAmount?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../other/app/service/AdminSalarySettlementServiceImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/service/AdminSalarySettlementServiceImpl.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/service/AdminSalarySettlementServiceImpl.java index 98985e47..37bda394 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/service/AdminSalarySettlementServiceImpl.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/service/AdminSalarySettlementServiceImpl.java @@ -254,10 +254,10 @@ public class AdminSalarySettlementServiceImpl implements AdminSalarySettlementSe for (AdminSalaryPolicy policy : policies) { if (teamSalary.compareTo(policy.getRequiredTeamSalary()) >= 0) { - // 工资 = Basic Salary + Reward Amount + // 工资 = Basic Salary BigDecimal salary = policy.getBasicSalary(); if (policy.getRewardAmount() != null) { - salary = salary.add(policy.getRewardAmount()); +// salary = salary.add(policy.getRewardAmount()); } record.setBdLeaderSalary(salary.setScale(2, RoundingMode.DOWN)); record.setBdLeaderHitLevel(policy.getLevel());