Commit 8401b94c by ping.wu

Merge branches 'feature/20210728_购物车满赠优惠空判断_wuping' and 'master' of…

Merge branches 'feature/20210728_购物车满赠优惠空判断_wuping' and 'master' of http://gitlab.freemud.com/order-group-application/order-group
parents ebea1b7f 2cc5a8e9
...@@ -9,6 +9,7 @@ import cn.freemud.entities.dto.ecology.SubscribeMessageRequest; ...@@ -9,6 +9,7 @@ import cn.freemud.entities.dto.ecology.SubscribeMessageRequest;
import cn.freemud.entities.dto.ecology.SubscribeMessageResponse; import cn.freemud.entities.dto.ecology.SubscribeMessageResponse;
import cn.freemud.entities.vo.TakeMealNoticesVO; import cn.freemud.entities.vo.TakeMealNoticesVO;
import cn.freemud.enums.MessageEventTypeEnum; import cn.freemud.enums.MessageEventTypeEnum;
import cn.freemud.redis.RedisCache;
import cn.freemud.service.impl.CheckOrder; import cn.freemud.service.impl.CheckOrder;
import cn.freemud.service.thirdparty.EcologyAdminApplicationClient; import cn.freemud.service.thirdparty.EcologyAdminApplicationClient;
import cn.freemud.utils.DateTimeUtil; import cn.freemud.utils.DateTimeUtil;
...@@ -39,12 +40,14 @@ import java.util.concurrent.TimeUnit; ...@@ -39,12 +40,14 @@ import java.util.concurrent.TimeUnit;
@Service @Service
public class CallerService { public class CallerService {
private final RedisTemplate redisTemplate; // private final RedisTemplate redisTemplate;
private final EcologyAdminApplicationClient ecologyAdminApplicationClient; private final EcologyAdminApplicationClient ecologyAdminApplicationClient;
private final OrderCenterSdkService orderCenterSdkService; private final OrderCenterSdkService orderCenterSdkService;
private final CheckOrder checkOrder; private final CheckOrder checkOrder;
@Autowired @Autowired
private LogUtil logUtil; private LogUtil logUtil;
@Autowired
private RedisCache redisCache;
/** /**
...@@ -53,6 +56,7 @@ public class CallerService { ...@@ -53,6 +56,7 @@ public class CallerService {
* @param vo * @param vo
*/ */
private void cacheTakeMealNotices(TakeMealNoticesVO vo) { private void cacheTakeMealNotices(TakeMealNoticesVO vo) {
RedisTemplate redisTemplate = redisCache.getRedisTemplate();
String redisKey = RedisKeyConstant.notMadeGoodsNumber(vo.getPartnerId(), vo.getStoreCode()); String redisKey = RedisKeyConstant.notMadeGoodsNumber(vo.getPartnerId(), vo.getStoreCode());
redisTemplate.boundValueOps(redisKey).set(vo.getCupTotalNum(), 1, TimeUnit.DAYS); redisTemplate.boundValueOps(redisKey).set(vo.getCupTotalNum(), 1, TimeUnit.DAYS);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment