Commit 79978aae by guojx

Merge branch 'feature-2023-01-目标配置' into 'developer'

公用参数调整:多个门店同时查询的时候

See merge request !933
parents 46c767a4 312bc131
...@@ -249,7 +249,13 @@ public class TargetController { ...@@ -249,7 +249,13 @@ public class TargetController {
storeIdList = storeAuthUtils.queryClerkStoreIds(qo.getClerkId(), qo.getWxEnterpriseId()); storeIdList = storeAuthUtils.queryClerkStoreIds(qo.getClerkId(), qo.getWxEnterpriseId());
} else { } else {
storeIdList = new ArrayList<>(); storeIdList = new ArrayList<>();
storeIdList.add(qo.getStoreId()); String[] storeIds = qo.getStoreId().split(",");
for (String storeIdTemp :storeIds) {
if (StringUtils.isBlank(storeIdTemp)) {
continue;
}
storeIdList.add(storeIdTemp);
}
} }
if (!isRelease) { if (!isRelease) {
return storeIdList; return storeIdList;
......
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