|
@@ -219,22 +219,22 @@ public class BillProcess {
|
|
|
List<BillMsg> billMsgList = new ArrayList<>();
|
|
|
for (BillNeoMaxDTO bill : billNeoMaxDTOList) {
|
|
|
// 性别
|
|
|
- sexRule.compareSexWithBill(wordCrfDTO, bill, billMsgList, NeoEnum.gender.getName());
|
|
|
+ sexRule.bill(wordCrfDTO, bill, billMsgList, NeoEnum.gender.getName());
|
|
|
|
|
|
// 年龄
|
|
|
- ageRule.compareAgeWithBill(wordCrfDTO, bill, billMsgList, NeoEnum.ageNeoDTO.getName());
|
|
|
+ ageRule.bill(wordCrfDTO, bill, billMsgList, NeoEnum.ageNeoDTO.getName());
|
|
|
|
|
|
// 诊断
|
|
|
commonRule.compareItemWithBill(bill.getDisease(), diags, bill, billMsgList, NeoEnum.disease.getName());
|
|
|
|
|
|
// 化验
|
|
|
- lisRule.compareLisWithBill(wordCrfDTO.getLis(), bill, billMsgList, NeoEnum.lis.getName());
|
|
|
+ lisRule.bill(wordCrfDTO.getLis(), bill, billMsgList, NeoEnum.lis.getName());
|
|
|
|
|
|
// 体征
|
|
|
- vitalRule.compareVitalWithBill(wordCrfDTO.getVitalLabel(), bill, billMsgList, NeoEnum.vitals.getName());
|
|
|
+ vitalRule.bill(wordCrfDTO.getVitalLabel(), bill, billMsgList, NeoEnum.vitals.getName());
|
|
|
|
|
|
// 辅检
|
|
|
- pacsRule.comparePacsWithBill(bill.getPacs(), wordCrfDTO.getPacs(), bill, billMsgList, NeoEnum.pacs.getName());
|
|
|
+ pacsRule.bill(bill.getPacs(), wordCrfDTO.getPacs(), bill, billMsgList, NeoEnum.pacs.getName());
|
|
|
|
|
|
// 临床表现
|
|
|
commonRule.compareNameWithBill(bill.getClinicfindings(), clinicals, bill, billMsgList, NeoEnum.clinicfindings.getName());
|
|
@@ -243,13 +243,13 @@ public class BillProcess {
|
|
|
commonRule.compareNameWithBill(bill.getOperations(), operations_all, bill, billMsgList, NeoEnum.operations.getName());
|
|
|
|
|
|
// 禁忌过敏药品(既往史)
|
|
|
- drugRule.compareDrugWithBill(bill.getAllergicmeds(), pastLabel.getAllergyMedicines(), bill, billMsgList, NeoEnum.allergicmeds.getName());
|
|
|
+ drugRule.bill(bill.getAllergicmeds(), pastLabel.getAllergyMedicines(), bill, billMsgList, NeoEnum.allergicmeds.getName());
|
|
|
|
|
|
// 服用药品(现病史一般情况后的药品)
|
|
|
- drugRule.compareDrugWithBill(bill.getOralmeds(), allergyAll, bill, billMsgList, NeoEnum.oralmeds.getName());
|
|
|
+ drugRule.bill(bill.getOralmeds(), allergyAll, bill, billMsgList, NeoEnum.oralmeds.getName());
|
|
|
|
|
|
// 禁用人群
|
|
|
- groupRule.compareGroupWithBill(wordCrfDTO, bill, billMsgList, NeoEnum.group.getName());
|
|
|
+ groupRule.bill(wordCrfDTO, bill, billMsgList, NeoEnum.group.getName());
|
|
|
|
|
|
// 禁用辅助检查描述
|
|
|
commonRule.compareItemWithBill(bill.getPacsDesc(), pacsDescList, bill, billMsgList, NeoEnum.pacsDesc.getName());
|