导出修改
This commit is contained in:
parent
a02360918a
commit
0e3cdb4e5c
@ -22,6 +22,11 @@ public enum QuestionSubjectTypeEnum {
|
|||||||
* 填空题
|
* 填空题
|
||||||
*/
|
*/
|
||||||
FILL_IN_THE_BLANKS("FILL_IN_THE_BLANKS"),
|
FILL_IN_THE_BLANKS("FILL_IN_THE_BLANKS"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 反馈填空题
|
||||||
|
*/
|
||||||
|
FEEDBACK_BLANKS_SUBJECT("FEEDBACK_BLANKS_SUBJECT"),
|
||||||
;
|
;
|
||||||
|
|
||||||
final private String info;
|
final private String info;
|
||||||
|
|||||||
@ -1523,7 +1523,7 @@ public class SignPatientManageRouteNodeServiceImpl implements ISignPatientManage
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
//题目是多选
|
//题目是多选
|
||||||
if (questionSubmitExportVo.getQuestionType().equals(QuestionSubjectTypeEnum.FILL_IN_THE_BLANKS.getInfo())) {
|
if (questionSubmitExportVo.getQuestionType().equals(QuestionSubjectTypeEnum.FILL_IN_THE_BLANKS.getInfo()) || questionSubmitExportVo.getQuestionType().equals(QuestionSubjectTypeEnum.FEEDBACK_BLANKS_SUBJECT.getInfo())) {
|
||||||
followUpFeedbackVo.setWorkSuggestions(questionSubmitExportVo.getFillBlanksAnswer());
|
followUpFeedbackVo.setWorkSuggestions(questionSubmitExportVo.getFillBlanksAnswer());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1551,6 +1551,10 @@
|
|||||||
from patient_question_submit_result pqsm
|
from patient_question_submit_result pqsm
|
||||||
LEFT JOIN patient_question_subject_result pqsj on pqsm.id = pqsj.question_submit_result_id
|
LEFT JOIN patient_question_subject_result pqsj on pqsm.id = pqsj.question_submit_result_id
|
||||||
LEFT JOIN patient_question_option_result pqor on pqsj.id = pqor.question_subject_result_id
|
LEFT JOIN patient_question_option_result pqor on pqsj.id = pqor.question_subject_result_id
|
||||||
|
where pqsm.manage_route_node_id in
|
||||||
|
<foreach item="id" collection="list" open="(" separator="," close=")">
|
||||||
|
#{id}
|
||||||
|
</foreach>
|
||||||
ORDER BY pqsm.create_time DESC
|
ORDER BY pqsm.create_time DESC
|
||||||
</select>
|
</select>
|
||||||
</mapper>
|
</mapper>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user