任务代办修改
This commit is contained in:
parent
fcac221026
commit
ce17d4606d
@ -77,4 +77,6 @@ public class ManualFollowUpDTO extends BaseEntity {
|
|||||||
* 时间标识 whole:全部 today:今天及今天之前
|
* 时间标识 whole:全部 today:今天及今天之前
|
||||||
*/
|
*/
|
||||||
private String timeSign;
|
private String timeSign;
|
||||||
|
|
||||||
|
private String phoneNodeExecuteResultStatus;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -292,6 +292,9 @@ public class SignPatientManageRouteServiceImpl implements ISignPatientManageRout
|
|||||||
@Override
|
@Override
|
||||||
@DataScope(agencyAlias = "pi", deptAlias = "pi")
|
@DataScope(agencyAlias = "pi", deptAlias = "pi")
|
||||||
public List<ManualFollowUpVO> selectManualFollowUpList(ManualFollowUpDTO manualFollowUpDTO) {
|
public List<ManualFollowUpVO> selectManualFollowUpList(ManualFollowUpDTO manualFollowUpDTO) {
|
||||||
|
if (manualFollowUpDTO.getNodeExecuteStatus().equals(NodeExecuteStatusEnum.UNEXECUTED.getInfo())){
|
||||||
|
manualFollowUpDTO.setPhoneNodeExecuteResultStatus(null);
|
||||||
|
}
|
||||||
List<ManualFollowUpVO> manualFollowUpVOS = signPatientManageRouteMapper.selectManualFollowUpList(manualFollowUpDTO);
|
List<ManualFollowUpVO> manualFollowUpVOS = signPatientManageRouteMapper.selectManualFollowUpList(manualFollowUpDTO);
|
||||||
if (StringUtils.isNotBlank(manualFollowUpDTO.getTimeSign()) && manualFollowUpDTO.getTimeSign().equals("WHOLE")) {
|
if (StringUtils.isNotBlank(manualFollowUpDTO.getTimeSign()) && manualFollowUpDTO.getTimeSign().equals("WHOLE")) {
|
||||||
return manualFollowUpVOS;
|
return manualFollowUpVOS;
|
||||||
|
|||||||
@ -390,11 +390,11 @@
|
|||||||
<if test="followEndTime != null ">
|
<if test="followEndTime != null ">
|
||||||
AND pter.execute_time <= #{followEndTime}
|
AND pter.execute_time <= #{followEndTime}
|
||||||
</if>
|
</if>
|
||||||
<if test="manageRouteName != null and manageRouteName != ''">
|
<if test="manageRouteName != null and manageRouteName != ''">
|
||||||
AND spmrn.manage_route_name like concat('%', #{manageRouteName}, '%')
|
AND spmrn.manage_route_name like concat('%', #{manageRouteName}, '%')
|
||||||
</if>
|
</if>
|
||||||
<if test="nodeExecuteStatus != null and nodeExecuteStatus = 'UNEXECUTED'">
|
<if test="phoneNodeExecuteResultStatus = null">
|
||||||
AND (spmrn.phone_node_execute_result_status is null or spmrn.phone_node_execute_result_status = ' ')
|
AND (spmrn.phone_node_execute_result_status is null or spmrn.phone_node_execute_result_status = ' ')
|
||||||
</if>
|
</if>
|
||||||
<!-- 数据范围过滤 -->
|
<!-- 数据范围过滤 -->
|
||||||
${params.dataScope}
|
${params.dataScope}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user