Commit 8e7ce7a9 by jinxin

clerkType类型问题

parent f34ffff8
......@@ -475,7 +475,7 @@ public class AuditApiServiceImpl implements AuditApiService {
List<String> storeIdList = new ArrayList<>();
Integer clerkType = clerkDTO.getClerkType();
String storeId = clerkDTO.getStoreId();
if (clerkType == 2) {
if (clerkType >= 2) {
// 如果null,说明是所有门店
storeIdList = staffApiService.getHaoBanStoreIdsRolesByClerkId(clerkId, wxEnterpriseId);
logger.info("审核查询门店id:{}",JSON.toJSONString(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