From 64251287f735a6a26bc585a8ca593c3936113137 Mon Sep 17 00:00:00 2001 From: jiangqs <jiangqs> Date: 星期四, 07 九月 2023 18:04:47 +0800 Subject: [PATCH] bug --- ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/config/CustomConfigServiceImpl.java | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/config/CustomConfigServiceImpl.java b/ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/config/CustomConfigServiceImpl.java index f357232..73e2e9b 100644 --- a/ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/config/CustomConfigServiceImpl.java +++ b/ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/config/CustomConfigServiceImpl.java @@ -205,6 +205,9 @@ case "SHOP_EMERGENCY_DEGREE": mgtAllCustomConfigVo.setShopEmergencyDegree(value.getConfigValue()); break; + case "SHOP_COMMON_PROPORTION": + mgtAllCustomConfigVo.setShopCommonProportion(value.getConfigValue()); + break; case "SHOP_FOLLOW_TYPE": mgtAllCustomConfigVo.setShopFollowType(value.getConfigValue()); break; @@ -425,6 +428,13 @@ } updatedCustomConfigs.add(customConfig); break; + case "SHOP_COMMON_PROPORTION": + newValue = mgtShopConfigEditDto.getShopCommonProportion(); + customConfig.setConfigValue(newValue); + customConfig.setUpdateTime(updateTime); + updatedCustomConfigs.add(customConfig); + redisService.setCacheObject(SecurityConstant.SHOP_COMMON_PROPORTION,mgtShopConfigEditDto.getShopCommonProportion()); + break; default: break; } @@ -437,6 +447,7 @@ createNewConfig(ConfigEnum.SHOP_FOLLOW_TYPE, mgtShopConfigEditDto.getShopFollowType(), updateTime); createNewConfig(ConfigEnum.SHOP_CUSTOM_STATUS, mgtShopConfigEditDto.getShopCustomStatus(), updateTime); createNewConfig(ConfigEnum.SHOP_SOURCE_CHANNEL, mgtShopConfigEditDto.getShopSourceChannel(), updateTime); + createNewConfig(ConfigEnum.SHOP_COMMON_PROPORTION, mgtShopConfigEditDto.getShopCommonProportion(), updateTime); } } -- Gitblit v1.7.1