服务指令-护理指令,生成工单BUG处理

This commit is contained in:
曹磊 2025-12-16 11:10:20 +08:00
parent 5565871abf
commit 062e543822
1 changed files with 2 additions and 2 deletions

View File

@ -168,11 +168,11 @@ public class CareOrdersServiceImpl extends ServiceImpl<CareOrdersMapper, CareOrd
* @return * @return
*/ */
private CareOrders employeeScreening(String directiveIds, String customerId, String employeeIds, Date startTime){ private CareOrders employeeScreening(String directiveIds, String customerId, String employeeIds, Date startTime){
if (sendOrderRule.getRuleCode().equals("1")) { if (sendOrderRule.getRuleCode().equals(1)) {
//按优先级 //按优先级
return getByPriority(directiveIds, customerId, startTime, employeeIds); return getByPriority(directiveIds, customerId, startTime, employeeIds);
} }
if (sendOrderRule.getRuleCode().equals("2")) { if (sendOrderRule.getRuleCode().equals(2)) {
//专项按人头可1v1可NvN全看长者配置专项护理员的设置 //专项按人头可1v1可NvN全看长者配置专项护理员的设置
return getByHeadCount(directiveIds, customerId, startTime, employeeIds); return getByHeadCount(directiveIds, customerId, startTime, employeeIds);
} }