dev-discount
袁野 2 years ago
parent a962e7f523
commit 189b5990eb
  1. 13
      hai-bweb/src/main/java/com/bweb/controller/OutRechargePriceController.java

@ -323,9 +323,20 @@ public class OutRechargePriceController {
map.put("sourceId" , id); map.put("sourceId" , id);
map.put("rechargePlatform" , dictionary.getCodeValue()); map.put("rechargePlatform" , dictionary.getCodeValue());
BsRechargeCode rechargeCode = bsRechargeCodeService.findByMap(map); BsRechargeCode rechargeCode = bsRechargeCodeService.findByMap(map);
if (rechargeCode != null) {
object.put("id" , rechargeCode.getId());
object.put("rechargePlatformName" , dictionary.getCodeName());
object.put("rechargePlatform" , rechargeCode.getRechargePlatform());
object.put("goodsId" , rechargeCode.getGoodsId());
objectList.add(object);
} }
return ResponseMsgUtil.success(RechargeConfig.getProductsListByLy());
}
return ResponseMsgUtil.success(objectList);
} catch (Exception e) { } catch (Exception e) {
log.error("HighOrderController --> unionStagingPay() error!", e); log.error("HighOrderController --> unionStagingPay() error!", e);

Loading…
Cancel
Save