Commit 2c4aa533 by zhiwj

修改bug

parent 6e5f1a0c
......@@ -7,12 +7,12 @@ package com.gic.store.constant;
public enum CreateTypeEnum {
BACKGROUND_ADD(1, "后台新增"),
BATCH_IMPORT(2, "批量导入"),
ORDER(3, "订单生成"),
ERP(4, "erp同步"),
ORDER(3, "增量订单同步"),
ERP(4, "ERP同步"),
API(5, "API接口"),
MEMBER(6, "会员生成"),
BULKORDER(7, "批量导入订单"),
BULKMEMBER(8, "批量导入会员")
MEMBER(6, "增量会员同步"),
BULKORDER(7, "批量订单同步"),
BULKMEMBER(8, "批量会员同步")
;
......
......@@ -181,7 +181,7 @@ public class ClerkApiServiceImpl implements ClerkApiService {
// 查询条件对应的storeId
String storeIdByClerkSearch;
if (StringUtils.isNotBlank(clerkSearchDTO.getSearch())) {
List<Integer> storeInfoIdsBySearch = clerkService.getStoreInfoIdsBySearch(enterpriseId, null);
List<Integer> storeInfoIdsBySearch = clerkService.getStoreInfoIdsBySearch(enterpriseId, clerkSearchDTO.getSearch());
if (CollectionUtils.isEmpty(groupIds) || CollectionUtils.isEmpty(storeInfoIdsBySearch)) {
storeIdByClerkSearch = "";
} else {
......
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