Commit e1d906e3 by qwmqiuwenmin

fix

parent f7851870
......@@ -214,7 +214,7 @@ public class StaffApiServiceImpl implements StaffApiService {
StaffDepartmentRelatedDTO related = staffDepartmentRelatedService.selectById(staffDepartmentStaffRelatedId);
if(related != null) {
List<TabHaobanStaffDepartmentRelated> relatedList = staffDepartmentRelatedService.listStaffDepartmentByStaffId(related.getStaffId());
if(relatedList != null || relatedList.isEmpty()){
if(relatedList == null || relatedList.isEmpty()){
return;
}
//只在当前门店
......
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