From f862a844ea7e212f8cc0622b858308e2b91dca2e Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期六, 04 七月 2020 16:35:50 +0800 Subject: [PATCH] 后台管理相关Controller注入系统 --- fanli/src/main/java/com/yeshi/fanli/controller/client/v2/TaoLiJinControllerV2.java | 18 ++++++++---------- 1 files changed, 8 insertions(+), 10 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/controller/client/v2/TaoLiJinControllerV2.java b/fanli/src/main/java/com/yeshi/fanli/controller/client/v2/TaoLiJinControllerV2.java index 52a5e89..42020e7 100644 --- a/fanli/src/main/java/com/yeshi/fanli/controller/client/v2/TaoLiJinControllerV2.java +++ b/fanli/src/main/java/com/yeshi/fanli/controller/client/v2/TaoLiJinControllerV2.java @@ -561,7 +561,6 @@ * 鍒嗕韩鐖嗘鍟嗗搧-闄愪簬娣樼ぜ閲� * * @param acceptData - * @param uid * @param out */ @RequestMapping(value = "getBuyGoods", method = RequestMethod.POST) @@ -585,7 +584,7 @@ } // 璁$畻鎺ㄥ箍绾㈠寘 - BigDecimal spreadMoney = TaoBaoUtil.getGoodsHongBaoMoney(taoBaoGoodsBrief, proportion); + BigDecimal spreadMoney = TaoBaoUtil.getGoodsHongBaoMoney(taoBaoGoodsBrief, proportion,true); // 鎺ㄥ箍绾㈠寘 涓嶈兘灏忎簬1 if (spreadMoney.compareTo(new BigDecimal(1.0)) < 0) { @@ -620,14 +619,14 @@ data.put("list", array); if (page == 1) { List<BannerVO> bannerList = swiperPictureService.getByBannerCardAndVersion("zigoulijian_banner", - acceptData.getPlatform(), Integer.parseInt(acceptData.getVersion())); + acceptData.getPlatform(), Integer.parseInt(acceptData.getVersion()),acceptData.getSystem()); if (bannerList != null && bannerList.size() > 0) data.put("topPicture", bannerList.get(0).getSrc()); else data.put("topPicture", ""); - data.put("ruleUrl", configService.get(ConfigKeyEnum.zigoulijianRule.getKey())); + data.put("ruleUrl", configService.getValue(ConfigKeyEnum.zigoulijianRule.getKey(),acceptData.getSystem())); } out.print(JsonUtil.loadTrueResult(data)); } @@ -636,7 +635,6 @@ * 鍒嗕韩鐖嗘鍟嗗搧-闄愪簬娣樼ぜ閲� * * @param acceptData - * @param uid * @param out */ @RequestMapping(value = "getBuyGoodsV2", method = RequestMethod.POST) @@ -662,7 +660,7 @@ } // 璁$畻鎺ㄥ箍绾㈠寘 - BigDecimal spreadMoney = TaoBaoUtil.getGoodsHongBaoMoney(taoBaoGoodsBrief, proportion); + BigDecimal spreadMoney = TaoBaoUtil.getGoodsHongBaoMoney(taoBaoGoodsBrief, proportion,true); // 鎺ㄥ箍绾㈠寘 涓嶈兘灏忎簬1 if (spreadMoney.compareTo(new BigDecimal(1.0)) < 0) { @@ -709,14 +707,14 @@ data.put("list", array); if (page == 1) { List<BannerVO> bannerList = swiperPictureService.getByBannerCardAndVersion("zigoulijian_banner", - acceptData.getPlatform(), Integer.parseInt(acceptData.getVersion())); + acceptData.getPlatform(), Integer.parseInt(acceptData.getVersion()),acceptData.getSystem()); if (bannerList != null && bannerList.size() > 0) data.put("topPicture", bannerList.get(0).getSrc()); else data.put("topPicture", ""); - data.put("ruleUrl", configService.get(ConfigKeyEnum.zigoulijianRule.getKey())); + data.put("ruleUrl", configService.getValue(ConfigKeyEnum.zigoulijianRule.getKey(),acceptData.getSystem())); } out.print(JsonUtil.loadTrueResult(data)); } @@ -757,7 +755,7 @@ // 2銆侀《閮ㄨ疆鎾浘 List<BannerVO> oldtopPicList = swiperPictureService.getByBannerCardAndVersion( - "redpack_win_detail_banner", acceptData.getPlatform(), Integer.parseInt(acceptData.getVersion())); + "redpack_win_detail_banner", acceptData.getPlatform(), Integer.parseInt(acceptData.getVersion()),acceptData.getSystem()); List<BannerVO> topPicList = new ArrayList<>(); if (oldtopPicList != null && oldtopPicList.size() > 0) topPicList.addAll(oldtopPicList); @@ -848,7 +846,7 @@ } String rule = configTaoLiJinService.getValueByKey("new_user_free_buy_list_rule"); - rule = rule.replace("{閾炬帴}", configService.get(ConfigKeyEnum.customerServiceLink.getKey())); + rule = rule.replace("{閾炬帴}", configService.getValue(ConfigKeyEnum.customerServiceLink.getKey(),acceptData.getSystem())); data.put("state", state); data.put("balance", "鏂颁汉绾㈠寘锛�" + balance.setScale(2) + "鍏�"); -- Gitblit v1.8.0