MCPcopy Create free account
hub / github.com/OpenDRG/DRG_Java / group

Method group

drg_group/guangxi_2022/ADRG/OR1.java:12–37  ·  view source on GitHub ↗
(MedicalRecord record)

Source from the content-addressed store, hash-verified

10
11public class OR1 {
12 public static String group(MedicalRecord record){
13 String[] adrg_zd={};
14 String[] adrg_zd1={"Z37.000","Z37.000x001","Z37.001","Z37.002","Z37.100","Z37.100x002","Z37.200","Z37.200x003","Z37.201","Z37.202","Z37.203","Z37.204","Z37.300","Z37.300x001","Z37.301","Z37.302","Z37.303","Z37.400","Z37.400x001","Z37.500","Z37.500x001","Z37.501","Z37.502","Z37.600","Z37.600x001","Z37.700","Z37.700x001","Z37.900","Z37.900x003"};
15 String[] adrg_ss={};
16 String[] adrg_ss1={};
17 String[] adrg_ss2={};
18 if (true && Base.intersect(Arrays.copyOfRange(record.zdList,1,record.zdList.length),adrg_zd1)){
19 Base.groupMessages.putMessage(record.Index,"符合OR1入组条件,匹配规则:其他诊断匹配");
20
21 if (MDCO_DRG.OR11_group(record)){
22 return "OR11";
23 }
24
25 if (MDCO_DRG.OR13_group(record)){
26 return "OR13";
27 }
28
29 if (MDCO_DRG.OR15_group(record)){
30 return "OR15";
31 }
32
33 return "";
34 }else{
35 return "";
36 }
37 }
38}
39

Callers 1

groupMethod · 0.95

Calls 5

intersectMethod · 0.95
OR11_groupMethod · 0.95
OR13_groupMethod · 0.95
OR15_groupMethod · 0.95
putMessageMethod · 0.45

Tested by

no test coverage detected