Commit bc6278ee by 徐高华

非空判断

parent 3333947e
......@@ -940,6 +940,9 @@ public class GroupChatPlanServiceImpl implements GroupChatPlanService {
@Override
public Integer getTaskNum(String wxEnterpriseId, String enterpriseId, String storeId, String clerkId, String staffId) {
ClerkDTO clerkDTO = this.clerkService.getclerkById(clerkId) ;
if(null == clerkDTO) {
return 0 ;
}
if(clerkDTO.getClerkType()==1) {
clerkId = null ;
}
......
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