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

Method group

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

Source from the content-addressed store, hash-verified

10
11public class DB2 {
12 public static String group(MedicalRecord record){
13 String[] adrg_zd={};
14 String[] adrg_zd1={};
15 String[] adrg_ss={"20.9501","20.9502","20.9601","20.9602","20.9701","20.9702","20.9801","20.9802"};
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,"符合DB2入组条件,匹配规则:某一手术匹配");
20
21 if (MDCD_DRG.DB20_group(record)){
22 return "DB20";
23 }
24
25 if (MDCD_DRG.DB29_group(record)){
26 return "DB29";
27 }
28
29 return "DB2";
30 }else{
31 return "";
32 }
33 }
34}
35

Callers 1

groupMethod · 0.95

Calls 4

intersectMethod · 0.95
DB20_groupMethod · 0.95
DB29_groupMethod · 0.95
putMessageMethod · 0.45

Tested by

no test coverage detected