Commit 312bc131 by guojx

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

parent f03dc3d9
......@@ -249,7 +249,13 @@ public class TargetController {
storeIdList = storeAuthUtils.queryClerkStoreIds(qo.getClerkId(), qo.getWxEnterpriseId());
} else {
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) {
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