任务管理列表

This commit is contained in:
zhangheng 2025-01-21 16:09:55 +08:00
parent 5c61ae2e2f
commit c5a2561f8e
3 changed files with 6 additions and 1 deletions

View File

@ -92,4 +92,6 @@ public class ManualFollowUpDTO extends BaseEntity {
@ApiModelProperty(value = "任务节点类型电话外呼PHONE_OUTBOUND问卷量表QUESTIONNAIRE_SCALE宣教文章PROPAGANDA_ARTICLE文字提醒TEXT_REMIND")
private String taskNodeType;
private Long phonePushSign;
}

View File

@ -382,6 +382,7 @@ public class SignPatientManageRouteServiceImpl implements ISignPatientManageRout
if (manualFollowUpDTO.getNodeExecuteStatus().equals(NodeExecuteStatusEnum.UNEXECUTED.getInfo())) {
manualFollowUpDTO.setPhoneNodeExecuteResultStatus(null);
}
manualFollowUpDTO.setPhonePushSign(1L);
//1查询
List<ManualFollowUpVO> manualFollowUpVOS = signPatientManageRouteMapper.selectManualFollowUpList(manualFollowUpDTO);
//字典名称匹配

View File

@ -365,8 +365,10 @@
<where>
pi.del_flag = 0
and spmrn.del_flag = 0
and spmrn.phone_push_sign = 1
AND spmrn.route_check_status = 'AGREE'
<if test="phonePushSign != null">
AND spmrn.phone_push_sign = #{phonePushSign}
</if>
<if test="taskNodeType != null and taskNodeType != ''">
AND spmrn.task_node_type = #{taskNodeType}
</if>