读取套餐信息ID 改成读取配置 配置项:item.id
This commit is contained in:
parent
704a8ba320
commit
d2a8fbadb1
@ -172,8 +172,10 @@ public class InspectPatientController {
|
||||
}
|
||||
|
||||
// 读取数据行 需要插入患者信息和患者项目信息
|
||||
ConfigDO config = configService.getConfigByKey("item.id");
|
||||
String itemid = config.getValue();
|
||||
//检查套餐信息
|
||||
List<InspectitemsDO> doList = exammoduleService.selectItemsByExamModuleID(1001);
|
||||
List<InspectitemsDO> doList = exammoduleService.selectItemsByExamModuleID(Integer.valueOf(itemid));
|
||||
//患者信息
|
||||
List<InspectPatientSaveReqVO> dataList = new ArrayList<>();
|
||||
//检查项目
|
||||
@ -358,7 +360,9 @@ public class InspectPatientController {
|
||||
//检查项目
|
||||
List<InspectPatientitemsSaveReqVO> dataList2 = new ArrayList<>();
|
||||
//检查套餐信息
|
||||
List<InspectitemsDO> doList = exammoduleService.selectItemsByExamModuleID(1001);
|
||||
ConfigDO config = configService.getConfigByKey("item.id");
|
||||
String itemid = config.getValue();
|
||||
List<InspectitemsDO> doList = exammoduleService.selectItemsByExamModuleID(Integer.valueOf(itemid));
|
||||
|
||||
//填写项目信息
|
||||
for (InspectitemsDO inspectitemsDO : doList) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user