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

Method group

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

Source from the content-addressed store, hash-verified

10
11public class OF2 {
12 public static String group(MedicalRecord record){
13 String[] adrg_zd={};
14 String[] adrg_zd1={};
15 String[] adrg_ss={"69.0100x002","69.0101","69.0200x003","69.0201","69.0902","69.5101","69.5102","69.5103","69.5202","69.5901","73.4x00x004","73.8x00x003","96.4902"};
16 String[] adrg_ss1={};
17
18 if (true && record.ssList!=null && record.ssList.length>0 && Base.intersect(record.ssList,adrg_ss)){
19 Base.groupMessages.putMessage(record.Index,"符合OF2入组条件,匹配规则:某一手术匹配");
20
21 if (MDCO_DRG.OF21_group(record)){
22 return "OF21";
23 }
24
25 if (MDCO_DRG.OF23_group(record)){
26 return "OF23";
27 }
28
29 if (MDCO_DRG.OF25_group(record)){
30 return "OF25";
31 }
32
33 return "OF2";
34 }else{
35 return "";
36 }
37 }
38}
39

Callers 1

groupMethod · 0.95

Calls 5

intersectMethod · 0.95
OF21_groupMethod · 0.95
OF23_groupMethod · 0.95
OF25_groupMethod · 0.95
putMessageMethod · 0.45

Tested by

no test coverage detected