Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
B
byh-family-doctor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
包
包
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
杨凯
byh-family-doctor
Commits
1c712b5f
提交
1c712b5f
authored
5月 27, 2024
作者:
luzhangjian
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat:测试
上级
5b871dc8
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
31 行增加
和
39 行删除
+31
-39
PatientMedicalRecordController.java
...tor/server/controller/PatientMedicalRecordController.java
+31
-39
没有找到文件。
family-doctor-server/src/main/java/com/ebaiyihui/family/doctor/server/controller/PatientMedicalRecordController.java
浏览文件 @
1c712b5f
...
...
@@ -3,6 +3,10 @@ package com.ebaiyihui.family.doctor.server.controller;
import
com.ebaiyihui.family.doctor.common.dto.InvalidMedicalRecordDTO
;
import
com.ebaiyihui.family.doctor.common.vo.PatientCaseDetail
;
import
com.ebaiyihui.family.doctor.server.entity.PatientSignEntity
;
import
com.ebaiyihui.family.doctor.server.exception.BusinessException
;
import
com.ebaiyihui.family.doctor.server.mapper.PatientSignMapper
;
import
com.ebaiyihui.family.doctor.server.service.HisTemplateService
;
import
com.ebaiyihui.family.doctor.server.service.PatientMedicalRecordService
;
import
com.ebaiyihui.framework.response.BaseResponse
;
import
io.swagger.annotations.Api
;
...
...
@@ -22,45 +26,12 @@ public class PatientMedicalRecordController {
@Autowired
private
PatientMedicalRecordService
patientMedicalRecordService
;
// @PostMapping("/insert")
// @ApiOperation(value = "新建复诊病历", notes = "医生开具复诊病历")
// public BaseResponse<InsertPatientMedicalRecordVO> insert(@RequestBody @Validated InsertPatientMedicalRecordDTO dto,
// BindingResult bindingResult) {
// if (bindingResult.hasErrors()) {
// return BaseResponse.error(Objects.requireNonNull(bindingResult.getFieldError()).getDefaultMessage());
// }
// return patientMedicalRecordService.insertPatientMedicalRecord(dto);
// }
//
// @PostMapping("/update")
// @ApiOperation(value = "修改复诊病历", notes = "医生修改复诊病历")
// public BaseResponse<InsertPatientMedicalRecordVO> update(@RequestBody @Validated UpdatePatientMedicalRecordDTO dto,
// BindingResult bindingResult) {
// if (bindingResult.hasErrors()) {
// return BaseResponse.error(Objects.requireNonNull(bindingResult.getFieldError()).getDefaultMessage());
// }
// return patientMedicalRecordService.updatePatientMedicalRecord(dto);
// }
//
// @PostMapping("/insertOrUpdate")
// @ApiOperation(value = "新建或修改复诊病历", notes = "新建或修改复诊病历")
// public BaseResponse<Object> insertOrUpdate(@RequestBody @Validated InsertPatientMedicalRecordDTO dto,
// BindingResult bindingResult) {
// if (bindingResult.hasErrors()) {
// return BaseResponse.error(Objects.requireNonNull(bindingResult.getFieldError()).getDefaultMessage());
// }
// return patientMedicalRecordService.insertOrUpdate(dto);
// }
//
// @PostMapping("/detail")
// @ApiOperation(value = "复诊病历详情", notes = "复诊病历详情")
// public BaseResponse<PatientMedicalRecordVO> detail(@RequestBody @Validated InvalidMedicalRecordDTO dto,
// BindingResult bindingResult) {
// if (bindingResult.hasErrors()) {
// return BaseResponse.error(Objects.requireNonNull(bindingResult.getFieldError()).getDefaultMessage());
// }
// return patientMedicalRecordService.detailMedicalRecord(dto);
// }
@Autowired
private
PatientSignMapper
patientSignMapper
;
@Autowired
private
HisTemplateService
hisTemplateService
;
/**
* 根据admID查询病例
* @param admId
...
...
@@ -93,4 +64,25 @@ public class PatientMedicalRecordController {
}
return
patientMedicalRecordService
.
getBaseInfoByAdmId
(
param
.
getAdmId
());
}
@ApiOperation
(
value
=
"test"
,
notes
=
"test"
)
@RequestMapping
(
value
=
"/test"
,
method
=
RequestMethod
.
GET
)
public
BaseResponse
<
Object
>
test
(
@RequestParam
String
admId
,
BindingResult
bindingResult
)
{
if
(
bindingResult
.
hasErrors
())
{
return
BaseResponse
.
error
(
Objects
.
requireNonNull
(
bindingResult
.
getFieldError
()).
getDefaultMessage
());
}
PatientSignEntity
patientSignEntity
=
patientSignMapper
.
queryByAdmId
(
admId
);
BaseResponse
<
Object
>
response
=
hisTemplateService
.
registrationAndTreatment
(
patientSignEntity
);
if
(
response
.
isSuccess
()){
patientSignEntity
.
setClinicCode
(
response
.
getData
().
toString
());
}
else
{
throw
new
BusinessException
(
"his挂号失败"
);
}
patientSignMapper
.
updateById
(
patientSignEntity
);
return
BaseResponse
.
success
();
}
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论