|
@@ -2709,7 +2709,12 @@ public class WmScorePackageServiceImpl extends ServiceImpl<WmScorePackageMapper,
|
|
|
}
|
|
|
|
|
|
wmScorePackage.setPayScore(payScoreAndYsh.get("payScore"));
|
|
|
- wmScorePackage.setYsh(payScoreAndYsh.get("ysh"));
|
|
|
+
|
|
|
+ // 完成积分值(最终完成积分值 = 完成积分值 * (1+审核管理费比例))
|
|
|
+ int actualScore = BigDecimal.valueOf(ysh).multiply(
|
|
|
+ wmScorePackage.getAuditManagementFeeRates().divide(new BigDecimal("100.00"), RoundingMode.HALF_EVEN).add(BigDecimal.ONE)
|
|
|
+ ).intValue();
|
|
|
+ wmScorePackage.setYsh(actualScore);
|
|
|
|
|
|
// 封装报告状态
|
|
|
wmScorePackage.setReportMqName(CacheConstants.EXPORT_NBA_REPORT_CACHE);
|