This commit is contained in:
YAS\29473
2025-12-04 17:30:13 +08:00
parent db32eaab6a
commit 0a9c934ea9

View File

@@ -351,6 +351,9 @@ public class LianLianPlatformServiceImpl implements ThirdPartyPlatformService {
if( MerchantUtils.isPaiHeMerchant(String.valueOf(pileStationInfo.getMerchantId()))){ if( MerchantUtils.isPaiHeMerchant(String.valueOf(pileStationInfo.getMerchantId()))){
stationInfo.setEquipmentOwnerID(Constants.OPERATORID_PAI_HE); stationInfo.setEquipmentOwnerID(Constants.OPERATORID_PAI_HE);
} }
if (MerchantUtils.isHongPeng(String.valueOf(pileStationInfo.getMerchantId()))) {
stationInfo.setEquipmentOwnerID(Constants.OPERATORID_HONG_PENG);
}
List<EquipmentInfo> pileList = pileBasicInfoService.getPileListForLianLian(stationId); List<EquipmentInfo> pileList = pileBasicInfoService.getPileListForLianLian(stationId);
@@ -1002,6 +1005,9 @@ public class LianLianPlatformServiceImpl implements ThirdPartyPlatformService {
if( MerchantUtils.isPaiHeMerchant(String.valueOf(orderBasicInfo.getMerchantId()))){ if( MerchantUtils.isPaiHeMerchant(String.valueOf(orderBasicInfo.getMerchantId()))){
orderInfo.setEquipmentOwnerID(Constants.OPERATORID_PAI_HE); orderInfo.setEquipmentOwnerID(Constants.OPERATORID_PAI_HE);
} }
if (MerchantUtils.isHongPeng(String.valueOf(orderBasicInfo.getMerchantId()))) {
orderInfo.setEquipmentOwnerID(Constants.OPERATORID_HONG_PENG);
}
// 支付方式 // 支付方式
if (StringUtils.equals(orderBasicInfo.getPayMode(), OrderPayModeEnum.PAYMENT_OF_WECHATPAY.getValue())) { if (StringUtils.equals(orderBasicInfo.getPayMode(), OrderPayModeEnum.PAYMENT_OF_WECHATPAY.getValue())) {