Commit d03d200c by guojuxing

完善状态字段筛选添加

parent 6a5cf8ce
......@@ -99,6 +99,8 @@ public class WmStoreSyncController {
//todo 过滤已同步过的门店
storeSearchDTO.setEnterpriseId(UserDetailUtils.getUserDetail().getEnterpriseId());
storeSearchDTO.setStatus(1);
//已完善
storeSearchDTO.setCompleteStatus(1);
ServiceResponse<List<WmStoreSyncLogDTO>> hasSyncStoreListResult = wmStoreSyncLogApiService.getStoreList(null, wmMallStoreId);
if (hasSyncStoreListResult.isSuccess()) {
StringBuilder sb = new StringBuilder();
......@@ -222,7 +224,7 @@ public class WmStoreSyncController {
wmStoreSyncLogApiService.saveWmStoreSyncLog(Arrays.asList(headStoreId), wmMallStoreId, 1, enterpriseId);
//同步导购
List<Integer> storeIdList = new ArrayList<>();
if (!isBranch) {
if (!isBranch) {0
storeIdList.add(headStoreId);
}
storeIdList.addAll(getListByStr(storeIds));
......
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