Commit e2e98582 by guojuxing

导购同步修改

parent 77d42f04
......@@ -32,9 +32,10 @@ public class WmStoreSyncLogApiServiceImpl implements WmStoreSyncLogApiService {
Integer enterpriseId) {
StoreSearchDTO storeSearchDTO = new StoreSearchDTO();
StringBuilder storeIds = new StringBuilder();
storeIdList.forEach(storeId -> storeIds.append(storeId).append(","));
storeIdList.forEach(storeId -> storeIds.append(storeId).append(" "));
storeSearchDTO.setStoreIds(storeIds.toString());
ServiceResponse<Page<StoreDTO>> storeResponse = storeApiService.listStore(storeSearchDTO, 0, storeIdList.size());
storeSearchDTO.setEnterpriseId(enterpriseId);
ServiceResponse<Page<StoreDTO>> storeResponse = storeApiService.listStore(storeSearchDTO, 1, storeIdList.size());
if (storeResponse.isSuccess()) {
Page<StoreDTO> page = storeResponse.getResult();
if (page != null) {
......
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