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

Method group

drg_group/qingdao_2023/ADRG/PR1.java:12–33  ·  view source on GitHub ↗
(MedicalRecord record)

Source from the content-addressed store, hash-verified

10
11public class PR1 {
12 public static String group(MedicalRecord record){
13 String[] adrg_zd={"P22.000","P22.000x001","P22.100x003","P22.101","P22.801","P22.900"};
14 String[] adrg_zd1={};
15 String[] adrg_ss={};
16 String[] adrg_ss1={};
17
18 if (true && Base.contains(adrg_zd,record.zdList[0]) && record.ageDay<=28){
19 Base.groupMessages.putMessage(record.Index,"符合PR1入组条件,匹配规则:主诊断匹配、新生儿");
20
21 if (MDCP_DRG.PR11_group(record)){
22 return "PR11";
23 }
24
25 if (MDCP_DRG.PR15_group(record)){
26 return "PR15";
27 }
28
29 return "PR1";
30 }else{
31 return "";
32 }
33 }
34}
35

Callers 1

groupMethod · 0.95

Calls 4

containsMethod · 0.95
PR11_groupMethod · 0.95
PR15_groupMethod · 0.95
putMessageMethod · 0.45

Tested by

no test coverage detected