Commit 99c8f82e by guojuxing

门店同步错误提示

parent e2e98582
......@@ -680,6 +680,8 @@ public class WmStoreSyncController {
private List<StoreDTO> getStoreList(String storeInfoIds, Integer enterpriseId) {
String[] subStoreIdArr = storeInfoIds.split(",");
//一次性查询分店列表数据
//转为空格
storeInfoIds = storeInfoIds.replaceAll(",", " ");
StoreSearchDTO storeSearchDTO = new StoreSearchDTO();
storeSearchDTO.setStoreInfoIds(storeInfoIds);
storeSearchDTO.setEnterpriseId(enterpriseId);
......@@ -849,6 +851,8 @@ public class WmStoreSyncController {
String[] subStoreIdArr = storeIds.split(",");
//一次性查询分店列表数据
StoreSearchDTO storeSearchDTO = new StoreSearchDTO();
//转为空格
storeIds = storeIds.replaceAll(",", " ");
if (isStoreInfoIds) {
storeSearchDTO.setStoreInfoIds(storeIds);
} 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