Commit 008d8f97 by guojuxing

导购关闭状态修复

parent 69cd3bb5
......@@ -634,6 +634,9 @@ public class ClerkApiServiceImpl implements ClerkApiService {
messageBuiler.append("当前门店下只有 ").append(clerkIdMap.get(clerkId).getClerkName()).append(" 是上线状态;");
}
}
if (CollectionUtils.isEmpty(needDealClerkIdList)) {
return ServiceResponse.failure(ErrorCode.OPERATION_FAILED.getCode(), messageBuiler.toString());
}
clerkService.updateClerkStatus(enterpriseId, needDealClerkIdList, status);
//导购下线重算导购归属
logger.info("导购下线 重算归属:{}", JSON.toJSONString(clerkOfflineDTOList));
......
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