任务管理列表
This commit is contained in:
parent
5c61ae2e2f
commit
c5a2561f8e
@ -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;
|
||||
}
|
||||
|
||||
@ -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);
|
||||
//字典名称匹配
|
||||
|
||||
@ -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>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user