| | |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | import java.util.stream.Collectors; |
| | | |
| | | /** |
| | |
| | | } |
| | | |
| | | /** |
| | | * 获取随访及时率 |
| | | */ |
| | | @ApiOperation("获取随访及时率") |
| | | //@PreAuthorize("@ss.hasPermi('smartor:ServiceTask:add')") |
| | | @Log(title = "获取随访及时率", businessType = BusinessType.INSERT) |
| | | @PostMapping("/selectTimelyRate") |
| | | public AjaxResult selectTimelyRate(@RequestBody ServiceSubtask serviceSubtask) { |
| | | SysUser user = getLoginUser().getUser(); |
| | | serviceSubtask.setOrgid(user.getOrgid()); |
| | | return success(serviceTaskService.selectTimelyRate(serviceSubtask)); |
| | | } |
| | | |
| | | /** |
| | | * 修改语音任务 |
| | | */ |
| | | @ApiOperation("修改任务") |
| | |
| | | log.error("getScriptInfoByCondition报错了:{}", e.getMessage()); |
| | | } |
| | | |
| | | log.error("tid和pid的值为:{},{}", tid, pid); |
| | | log.info("tid和pid的值为:{},{}", tid, pid); |
| | | if (StringUtils.isEmpty(serviceTaskScriptQues.getPatfrom())) serviceTaskScriptQues.setPatfrom("0"); |
| | | return success(serviceTaskService.getScriptInfoByCondition(tid, pid, true, serviceTaskScriptQues.getPatfrom())); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 通过任务ID和患者ID获取单个人的题目信息 |
| | | * |
| | | * @return |
| | | */ |
| | | @ApiOperation("通过任务ID和诊疗记录号获取单个人的题目信息") |
| | | @PostMapping("/getScriptByCondition") |
| | | public AjaxResult getScriptByCondition(@RequestBody ServiceTaskScriptQues serviceTaskScriptQues) { |
| | | RSAPublicKeyExample rsaPublicKeyExample = new RSAPublicKeyExample(); |
| | | Long taskId = Long.valueOf(rsaPublicKeyExample.decryptedData(serviceTaskScriptQues.getParam1(), pri_key)); |
| | | String zyserialnum = null; |
| | | String mzserialnum = null; |
| | | String tsserialnum = null; |
| | | if (StringUtils.isNotEmpty(serviceTaskScriptQues.getParam2())) |
| | | zyserialnum = rsaPublicKeyExample.decryptedData(serviceTaskScriptQues.getParam2(), pri_key); |
| | | if (StringUtils.isNotEmpty(serviceTaskScriptQues.getParam3())) |
| | | mzserialnum = rsaPublicKeyExample.decryptedData(serviceTaskScriptQues.getParam3(), pri_key); |
| | | if (StringUtils.isNotEmpty(serviceTaskScriptQues.getParam4())) |
| | | tsserialnum = rsaPublicKeyExample.decryptedData(serviceTaskScriptQues.getParam4(), pri_key); |
| | | Map<String, Object> scriptByCondition = serviceTaskService.getScriptByCondition(taskId, zyserialnum, mzserialnum, tsserialnum); |
| | | scriptByCondition.put("zy", serviceTaskScriptQues.getParam2()); |
| | | scriptByCondition.put("mz", serviceTaskScriptQues.getParam3()); |
| | | scriptByCondition.put("tid", serviceTaskScriptQues.getParam1()); |
| | | return success(scriptByCondition); |
| | | } |
| | | |
| | | } |