Commit 346b0570 by jinxin

离职继承bug修复

parent 8e72d579
...@@ -128,7 +128,7 @@ public class HandoverServiceImpl implements HandoverService { ...@@ -128,7 +128,7 @@ public class HandoverServiceImpl implements HandoverService {
} }
}); });
//删除不需要的staff数据 //删除不需要的staff数据
List<TabHandoverStaff> handoverStaffList = handoverStaffMapper.listByWxEnterpriseId(wxEnterpriseId); /*List<TabHandoverStaff> handoverStaffList = handoverStaffMapper.listByWxEnterpriseId(wxEnterpriseId);
if (CollectionUtils.isEmpty(handoverStaffList)) { if (CollectionUtils.isEmpty(handoverStaffList)) {
logger.info("没有新数据,无需删除"); logger.info("没有新数据,无需删除");
return true; return true;
...@@ -140,7 +140,7 @@ public class HandoverServiceImpl implements HandoverService { ...@@ -140,7 +140,7 @@ public class HandoverServiceImpl implements HandoverService {
return true; return true;
} }
logger.info("删除数据"); logger.info("删除数据");
delHandoverStaff(wxEnterpriseId, new ArrayList<>(needDelUserIds)); delHandoverStaff(wxEnterpriseId, new ArrayList<>(needDelUserIds));*/
return false; return false;
} }
......
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