|
@@ -472,7 +472,7 @@ public class AppletHomeServiceImpl implements AppletHomeService {
|
|
|
Map<Integer, PolicyFee> platformPriceMap = new HashMap<>();
|
|
Map<Integer, PolicyFee> platformPriceMap = new HashMap<>();
|
|
|
List<PolicyFee> platformPolicyFeeList = policyFeeMapper.selectList(
|
|
List<PolicyFee> platformPolicyFeeList = policyFeeMapper.selectList(
|
|
|
new LambdaQueryWrapper<PolicyFee>()
|
|
new LambdaQueryWrapper<PolicyFee>()
|
|
|
- .eq(PolicyFee::getStationInfoId, stationId)
|
|
|
|
|
|
|
+ .eq(PolicyFee::getStationInfoId, stationInfo.getId()) // 使用主键ID
|
|
|
.eq(PolicyFee::getSalesType, 0) // 0-平台
|
|
.eq(PolicyFee::getSalesType, 0) // 0-平台
|
|
|
.eq(PolicyFee::getIsDeleted, 0)
|
|
.eq(PolicyFee::getIsDeleted, 0)
|
|
|
);
|
|
);
|
|
@@ -487,7 +487,7 @@ public class AppletHomeServiceImpl implements AppletHomeService {
|
|
|
if (firmId != null) {
|
|
if (firmId != null) {
|
|
|
List<PolicyFee> policyFeeList = policyFeeMapper.selectList(
|
|
List<PolicyFee> policyFeeList = policyFeeMapper.selectList(
|
|
|
new LambdaQueryWrapper<PolicyFee>()
|
|
new LambdaQueryWrapper<PolicyFee>()
|
|
|
- .eq(PolicyFee::getStationInfoId, stationId)
|
|
|
|
|
|
|
+ .eq(PolicyFee::getStationInfoId, stationInfo.getId()) // 使用主键ID
|
|
|
.eq(PolicyFee::getSalesType, 1) // 1-企业
|
|
.eq(PolicyFee::getSalesType, 1) // 1-企业
|
|
|
.eq(PolicyFee::getFirmId, firmId)
|
|
.eq(PolicyFee::getFirmId, firmId)
|
|
|
.eq(PolicyFee::getIsDeleted, 0)
|
|
.eq(PolicyFee::getIsDeleted, 0)
|