Authored by wujiexiang

Merge branch 'hotfix-bid-seller-cache' into test6.9.14

... ... @@ -441,11 +441,13 @@ public class SellerOrderCancelService {
}
try {
cacheCleaner.cleanList(uid, TabType.SELL.getValue());
SellerOrderGoods psog = sellerOrderGoodsMapper.selectByPrimaryKey(skup);
cacheCleaner.cleanSellerDetail(psog);
//数据库中的 uid= 0,status也发生变化了,为了删除原缓存,重新设置
psog.setUid(uid);
psog.setStatus(SkupStatus.CAN_NOT_SELL.getCode());
cacheCleaner.cleanSellerOrderDetailAndList(psog, null);
} catch (Exception ex) {
logger.warn("in seller cancel waiting pay and then clean cache of list and detail fail, uid {}, skup {}",
logger.warn("in seller cancel before Buy Action clean cache of list and detail fail, uid {}, skup {}",
uid, skup, ex);
}
return 1;
... ...