Commit 27a4767f by 陶光胜

通过电话号码查询商户

parent 972aed03
......@@ -103,7 +103,7 @@ public class StoreImportApiServiceImpl implements StoreImportApiService {
return ServiceResponse.success();
}
List<String> resultList = new ArrayList<>();
List<TabStoreBrand> storeBrandList = storeBrandService.listAllStoreBrand(enterpriseId, null, null, null);
List<TabStoreBrand> storeBrandList = storeBrandService.listAllStoreBrand(enterpriseId, null);
if (CollectionUtils.isEmpty(storeBrandList)) {
return ServiceResponse.success();
}
......
......@@ -110,7 +110,7 @@ public class StoreTaskServiceImpl extends AbstractTaskAllocationOperation implem
String brands = t.getBrands();
if (StringUtils.isNotBlank(brands)) {
String[] brandArr = brands.split("、");
List<TabStoreBrand> storeBrandList = storeBrandService.listAllStoreBrand(t.getEnterpriseId(), null, null, null);
List<TabStoreBrand> storeBrandList = storeBrandService.listAllStoreBrand(t.getEnterpriseId(), null);
List<Integer> list = new ArrayList<>();
for (String brandName : brandArr) {
for (TabStoreBrand storeBrand : storeBrandList) {
......
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