活动副表类型错误修复
This commit is contained in:
parent
bf6ce7ce31
commit
69b83ba2ff
@ -198,7 +198,7 @@ public class SyncThirdDataServiceImpl extends SyncBaseThirdSxAbstract implements
|
||||
@Override
|
||||
public ThirdApiRes saveOrUpdateShopBaseProductCategoryBatch(String appKey, String sign, JSONArray categoryListJSON) {
|
||||
if (StrUtil.isBlank(appKey) || StrUtil.isBlank(sign) || ObjectUtil.isEmpty(categoryListJSON)) {
|
||||
return new ThirdApiRes().fail(1003, I18nUtil._("缺少必要参数!"));
|
||||
return new ThirdApiRes().fail(1003, _("缺少必要参数!"));
|
||||
}
|
||||
//用gson保证与客户端的顺序一致
|
||||
List<SxCategoryModel> sxCategoryModelList = categoryListJSON.toList(SxCategoryModel.class);
|
||||
@ -207,17 +207,17 @@ public class SyncThirdDataServiceImpl extends SyncBaseThirdSxAbstract implements
|
||||
// 验签、appid,必要参数判断
|
||||
SyncApp syncApp = syncAppService.checkAppSign(appKey, sign, jsonStr);
|
||||
if (syncApp == null) {
|
||||
return new ThirdApiRes().fail(1001, I18nUtil._("签名有误!"));
|
||||
return new ThirdApiRes().fail(1001, _("签名有误!"));
|
||||
}
|
||||
String storeId = syncApp.getStore_id();
|
||||
|
||||
List<ShopBaseProductCategory> list = JSONUtil.toList(categoryListJSON, ShopBaseProductCategory.class);
|
||||
if (list == null) {
|
||||
return new ThirdApiRes().fail(1004, I18nUtil._("请求参数有误!"));
|
||||
return new ThirdApiRes().fail(1004, _("请求参数有误!"));
|
||||
}
|
||||
|
||||
if (list != null && list.size() > limitCnt) {
|
||||
return new ThirdApiRes().fail(1004, I18nUtil._("单次同步记录最多" + limitCnt + "条!"));
|
||||
return new ThirdApiRes().fail(1004, _("单次同步记录最多" + limitCnt + "条!"));
|
||||
}
|
||||
|
||||
int count = baseSaveOrUpdateShopBaseProductCategoryBatch(list, categoryListJSON, storeId);
|
||||
@ -236,7 +236,7 @@ public class SyncThirdDataServiceImpl extends SyncBaseThirdSxAbstract implements
|
||||
@Override
|
||||
public ThirdApiRes saveOrUpdateShopBaseProductBrandBatch(String appKey, String sign, JSONArray brandListJSON) {
|
||||
if (StrUtil.isBlank(appKey) || StrUtil.isBlank(sign) || ObjectUtil.isEmpty(brandListJSON)) {
|
||||
return new ThirdApiRes().fail(1003, I18nUtil._("缺少必要参数!"));
|
||||
return new ThirdApiRes().fail(1003, _("缺少必要参数!"));
|
||||
}
|
||||
//用gson保证与客户端的顺序一致
|
||||
List<BrandModel> brandModels = brandListJSON.toList(BrandModel.class);
|
||||
@ -245,17 +245,17 @@ public class SyncThirdDataServiceImpl extends SyncBaseThirdSxAbstract implements
|
||||
// 验签、appid,必要参数判断
|
||||
SyncApp syncApp = syncAppService.checkAppSign(appKey, sign, jsonStr);
|
||||
if (syncApp == null) {
|
||||
return new ThirdApiRes().fail(1001, I18nUtil._("签名有误!"));
|
||||
return new ThirdApiRes().fail(1001, _("签名有误!"));
|
||||
}
|
||||
|
||||
String storeId = syncApp.getStore_id();
|
||||
List<ShopBaseProductBrand> goodBrandList = JSONUtil.toList(brandListJSON, ShopBaseProductBrand.class);
|
||||
if (goodBrandList == null) {
|
||||
return new ThirdApiRes().fail(1004, I18nUtil._("请求参数有误!"));
|
||||
return new ThirdApiRes().fail(1004, _("请求参数有误!"));
|
||||
}
|
||||
|
||||
if (goodBrandList != null && goodBrandList.size() > limitCnt) {
|
||||
return new ThirdApiRes().fail(1004, I18nUtil._("单次同步记录最多" + limitCnt + "条!"));
|
||||
return new ThirdApiRes().fail(1004, _("单次同步记录最多" + limitCnt + "条!"));
|
||||
}
|
||||
|
||||
int count = baseSaveOrUpdateShopBaseProductBrandBatch(goodBrandList, storeId, brandListJSON);
|
||||
@ -274,17 +274,17 @@ public class SyncThirdDataServiceImpl extends SyncBaseThirdSxAbstract implements
|
||||
@Override
|
||||
public ThirdApiRes saveOrUpdateGoodsBatch(String appKey, String sign, JSONArray goodsListJSON) {
|
||||
if (StrUtil.isBlank(appKey) || StrUtil.isBlank(sign) || ObjectUtil.isEmpty(goodsListJSON)) {
|
||||
return new ThirdApiRes().fail(1003, I18nUtil._("缺少必要参数!"));
|
||||
return new ThirdApiRes().fail(1003, _("缺少必要参数!"));
|
||||
}
|
||||
// 验签、appid,必要参数判断
|
||||
SyncApp syncApp = syncAppService.checkAppSign(appKey, sign, goodsListJSON.toString());
|
||||
if (syncApp == null) {
|
||||
return new ThirdApiRes().fail(1001, I18nUtil._("签名有误!"));
|
||||
return new ThirdApiRes().fail(1001, _("签名有误!"));
|
||||
}
|
||||
String storeId = syncApp.getStore_id();
|
||||
|
||||
if (goodsListJSON.size() > limitCnt) {
|
||||
return new ThirdApiRes().fail(1004, I18nUtil._("单次同步记录最多" + limitCnt + "条!"));
|
||||
return new ThirdApiRes().fail(1004, _("单次同步记录最多" + limitCnt + "条!"));
|
||||
}
|
||||
|
||||
int count = baseSaveOrUpdateGoods(goodsListJSON, storeId);
|
||||
@ -305,7 +305,7 @@ public class SyncThirdDataServiceImpl extends SyncBaseThirdSxAbstract implements
|
||||
// @Transactional
|
||||
public ThirdApiRes saveOrUpdateMemberBatch(String appKey, String sign, List<SyncThirdMemberReq> memberList) {
|
||||
if (StrUtil.isBlank(appKey) || StrUtil.isBlank(sign) || CollUtil.isEmpty(memberList)) {
|
||||
return new ThirdApiRes().fail(1003, I18nUtil._("缺少必要参数!"));
|
||||
return new ThirdApiRes().fail(1003, _("缺少必要参数!"));
|
||||
}
|
||||
//用gson保证与客户端的顺序一致
|
||||
Gson gson = new Gson();
|
||||
@ -313,12 +313,12 @@ public class SyncThirdDataServiceImpl extends SyncBaseThirdSxAbstract implements
|
||||
// 验签、appid,必要参数判断
|
||||
SyncApp syncApp = syncAppService.checkAppSign(appKey, sign, jsonStr);
|
||||
if (syncApp == null) {
|
||||
return new ThirdApiRes().fail(1001, I18nUtil._("签名有误!"));
|
||||
return new ThirdApiRes().fail(1001, _("签名有误!"));
|
||||
}
|
||||
String storeId = syncApp.getStore_id();
|
||||
|
||||
if (memberList.size() > limitCnt) {
|
||||
return new ThirdApiRes().fail(1004, I18nUtil._("单次同步记录最多" + limitCnt + "条!"));
|
||||
return new ThirdApiRes().fail(1004, _("单次同步记录最多" + limitCnt + "条!"));
|
||||
}
|
||||
shopNumberSeqService.clearKeyStoreAccountBaseId();
|
||||
int count = 0;
|
||||
@ -497,19 +497,19 @@ public class SyncThirdDataServiceImpl extends SyncBaseThirdSxAbstract implements
|
||||
@Override
|
||||
public ThirdApiRes fileUpload(String appKey, String sign, String page, String syncType, MultipartFile multipartFile) {
|
||||
if (StrUtil.isBlank(appKey) || StrUtil.isBlank(sign)) {
|
||||
return new ThirdApiRes().fail(1003, I18nUtil._("缺少必要参数!"));
|
||||
return new ThirdApiRes().fail(1003, _("缺少必要参数!"));
|
||||
}
|
||||
// 验签、appid,必要参数判断
|
||||
SyncApp syncAppO = syncAppService.getOne(new LambdaQueryWrapper<SyncApp>()
|
||||
.select(SyncApp::getApp_key, SyncApp::getStore_id)
|
||||
.eq(SyncApp::getApp_key, appKey));
|
||||
if (syncAppO == null) {
|
||||
return new ThirdApiRes().fail(1001, I18nUtil._("签名有误!"));
|
||||
return new ThirdApiRes().fail(1001, _("签名有误!"));
|
||||
}
|
||||
String storeId = syncAppO.getStore_id();
|
||||
try {
|
||||
if (multipartFile.isEmpty()) {
|
||||
return new ThirdApiRes().fail(1001, I18nUtil._("文件不能为空!"));
|
||||
return new ThirdApiRes().fail(1001, _("文件不能为空!"));
|
||||
}
|
||||
byte[] bytes = multipartFile.getBytes();
|
||||
String folder = new FileUtils().getSyncTypeFlag(syncType, clientPath) + storeId + FileUtils.pathSeparator + page + FileUtils.pathSeparator;
|
||||
@ -750,7 +750,7 @@ public class SyncThirdDataServiceImpl extends SyncBaseThirdSxAbstract implements
|
||||
@Override
|
||||
public ThirdApiRes getStoreDbConfig(String appKey, String sign) {
|
||||
if (StrUtil.isBlank(appKey) || StrUtil.isBlank(sign)) {
|
||||
return new ThirdApiRes().fail(1003, I18nUtil._("缺少必要参数!"));
|
||||
return new ThirdApiRes().fail(1003, _("缺少必要参数!"));
|
||||
}
|
||||
// 验签、appid,必要参数判断
|
||||
SyncApp syncAppO = syncAppService.getOne(new LambdaQueryWrapper<SyncApp>()
|
||||
@ -758,7 +758,7 @@ public class SyncThirdDataServiceImpl extends SyncBaseThirdSxAbstract implements
|
||||
.eq(SyncApp::getApp_key, appKey)
|
||||
.eq(SyncApp::getApp_secret, sign));
|
||||
if (syncAppO == null) {
|
||||
return new ThirdApiRes().fail(1001, I18nUtil._("签名有误!"));
|
||||
return new ThirdApiRes().fail(1001, _("签名有误!"));
|
||||
}
|
||||
String storeId = syncAppO.getStore_id();
|
||||
QueryWrapper<StoreDbConfig> queryWrapper = new QueryWrapper<>();
|
||||
@ -766,7 +766,7 @@ public class SyncThirdDataServiceImpl extends SyncBaseThirdSxAbstract implements
|
||||
queryWrapper.eq("has_start", DicEnum.YESORNO_1.getCode());
|
||||
StoreDbConfig storeDbConfig = storeDbConfigService.getOne(queryWrapper);
|
||||
if (storeDbConfig == null) {
|
||||
return new ThirdApiRes().fail(1003, I18nUtil._("服务器配置缺少配置信息!"));
|
||||
return new ThirdApiRes().fail(1003, _("服务器配置缺少配置信息!"));
|
||||
}
|
||||
return new ThirdApiRes().success("成功", storeDbConfig);
|
||||
}
|
||||
@ -774,7 +774,7 @@ public class SyncThirdDataServiceImpl extends SyncBaseThirdSxAbstract implements
|
||||
@Override
|
||||
public ThirdApiRes getStoreDataRelease(String appKey, String sign) {
|
||||
if (StrUtil.isBlank(appKey) || StrUtil.isBlank(sign)) {
|
||||
return new ThirdApiRes().fail(1003, I18nUtil._("缺少必要参数!"));
|
||||
return new ThirdApiRes().fail(1003, _("缺少必要参数!"));
|
||||
}
|
||||
// 验签、appid,必要参数判断
|
||||
SyncApp syncAppO = syncAppService.getOne(new LambdaQueryWrapper<SyncApp>()
|
||||
@ -782,7 +782,7 @@ public class SyncThirdDataServiceImpl extends SyncBaseThirdSxAbstract implements
|
||||
.eq(SyncApp::getApp_key, appKey)
|
||||
.eq(SyncApp::getApp_secret, sign));
|
||||
if (syncAppO == null) {
|
||||
return new ThirdApiRes().fail(1001, I18nUtil._("签名有误!"));
|
||||
return new ThirdApiRes().fail(1001, _("签名有误!"));
|
||||
}
|
||||
|
||||
// Object obRst = redisService.get(RedisKey.STOREDATARELEASE);//商品库存扣减
|
||||
@ -923,7 +923,7 @@ public class SyncThirdDataServiceImpl extends SyncBaseThirdSxAbstract implements
|
||||
@Override
|
||||
public ThirdApiRes fileUploadToOss(String appKey, String sign, String syncType, Date refreshDate, List<String> folders) {
|
||||
if (StrUtil.isBlank(appKey) || StrUtil.isBlank(sign)) {
|
||||
return new ThirdApiRes().fail(1003, I18nUtil._("缺少必要参数!"));
|
||||
return new ThirdApiRes().fail(1003, _("缺少必要参数!"));
|
||||
}
|
||||
// 验签、appid,必要参数判断
|
||||
SyncApp syncApp = syncAppService.getOne(new LambdaQueryWrapper<SyncApp>()
|
||||
@ -931,7 +931,7 @@ public class SyncThirdDataServiceImpl extends SyncBaseThirdSxAbstract implements
|
||||
.eq(SyncApp::getApp_key, appKey)
|
||||
.eq(SyncApp::getApp_secret, sign));
|
||||
if (syncApp == null) {
|
||||
return new ThirdApiRes().fail(1001, I18nUtil._("签名有误!"));
|
||||
return new ThirdApiRes().fail(1001, _("签名有误!"));
|
||||
}
|
||||
String storeId = syncApp.getStore_id();
|
||||
if (null == syncApp.getStore_id() || syncApp.getStore_id().isEmpty()) {
|
||||
@ -1165,6 +1165,7 @@ public class SyncThirdDataServiceImpl extends SyncBaseThirdSxAbstract implements
|
||||
ShopProductIndex shopProductIndex=new ShopProductIndex();
|
||||
shopProductIndex.setIs_special(null);
|
||||
shopProductIndex.setProduct_id(productId);
|
||||
int activityType = 0;
|
||||
if (activityTypeId == 1) {//限时秒杀
|
||||
shopProductIndex.setActivity_type_ids(String.valueOf(StateCode.ACTIVITY_TYPE_LIMITED_DISCOUNT));
|
||||
ruleType = ActiveShopJsonUtils.SECKILL;
|
||||
@ -1174,6 +1175,7 @@ public class SyncThirdDataServiceImpl extends SyncBaseThirdSxAbstract implements
|
||||
newDiscout = specPrice.divide(oldPrice, 4, RoundingMode.HALF_UP);
|
||||
newItems.addAll(getFulReduItemList(itemIds, ruleType, newDiscout));//获取满减规则的itemid
|
||||
}
|
||||
activityType=StateCode.ACTIVITY_TYPE_LIMITED_DISCOUNT;
|
||||
}
|
||||
if (activityTypeId == 2) {//折扣
|
||||
if (discount.compareTo(BigDecimal.ZERO) <= 0) {
|
||||
@ -1183,6 +1185,7 @@ public class SyncThirdDataServiceImpl extends SyncBaseThirdSxAbstract implements
|
||||
ruleType = ActiveShopJsonUtils.DISCOUNT;
|
||||
newItems.addAll(getFulReduItemList(itemIds, ruleType, discount));//获取满减规则的itemid
|
||||
shopProductIndex.setActivity_type_ids(String.valueOf(StateCode.ACTIVITY_TYPE_ONE_PIECE_DISCOUNT));
|
||||
activityType=StateCode.ACTIVITY_TYPE_ONE_PIECE_DISCOUNT;
|
||||
}
|
||||
if (activityTypeId == 3) {//满减
|
||||
ruleType = ActiveShopJsonUtils.FULLREDUCE;
|
||||
@ -1198,7 +1201,7 @@ public class SyncThirdDataServiceImpl extends SyncBaseThirdSxAbstract implements
|
||||
for (int i = 0; i < itemIdsArray.length; i++) {
|
||||
ShopStoreActivityItem shopStoreActivityItem = new ShopStoreActivityItem();
|
||||
shopStoreActivityItem.setActivity_id(Integer.valueOf(activityId));
|
||||
shopStoreActivityItem.setActivity_type_id(activityTypeId);
|
||||
shopStoreActivityItem.setActivity_type_id(activityType);
|
||||
shopStoreActivityItem.setActivity_item_state(activityState);
|
||||
shopStoreActivityItem.setActivity_item_starttime(activityStarttime);
|
||||
shopStoreActivityItem.setActivity_item_endtime(jsonObj.getDate("activityEndtime"));
|
||||
@ -1323,7 +1326,7 @@ public class SyncThirdDataServiceImpl extends SyncBaseThirdSxAbstract implements
|
||||
@Override
|
||||
public ThirdApiRes syncRefreshTime(@RequestParam String appKey, @RequestParam String sign) {
|
||||
if (StrUtil.isBlank(appKey) || StrUtil.isBlank(sign) ) {
|
||||
return new ThirdApiRes().fail(1003, I18nUtil._("缺少必要参数!"));
|
||||
return new ThirdApiRes().fail(1003, _("缺少必要参数!"));
|
||||
}
|
||||
// 验签、appid,必要参数判断
|
||||
SyncApp syncApp = syncAppService.getOne(new LambdaQueryWrapper<SyncApp>()
|
||||
@ -1331,7 +1334,7 @@ public class SyncThirdDataServiceImpl extends SyncBaseThirdSxAbstract implements
|
||||
.eq(SyncApp::getApp_key, appKey)
|
||||
.eq(SyncApp::getApp_secret,sign));
|
||||
if (syncApp == null) {
|
||||
return new ThirdApiRes().fail(1001, I18nUtil._("签名有误!"));
|
||||
return new ThirdApiRes().fail(1001, _("签名有误!"));
|
||||
}
|
||||
Date tenMinutesAgo = Date.from(Instant.now().minus(Duration.ofMinutes(30)));//校准误差
|
||||
Date refreshDate = DateUtil.date(tenMinutesAgo);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user