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

Method group

drg_group/suzhou_2023/ADRG/SS1.java:11–35  ·  view source on GitHub ↗
(MedicalRecord record)

Source from the content-addressed store, hash-verified

9
10public class SS1 {
11 public static String group(MedicalRecord record){
12 String[] adrg_zd={"T79.300x001","T81.400x001","T81.400x002","T81.400x004","T81.400x005","T81.400x006","T81.401","T81.402","T81.403","T81.404","T81.405","T81.406","T82.700x001","T82.700x002","T82.700x003","T82.700x004","T82.700x005","T82.700x007","T82.700x008","T82.700x009","T82.700x010","T82.700x011","T82.701","T84.701","T85.700x103","T85.700x104","T85.700x808","T85.700x809","T85.701","T85.702","T85.703","T85.706","T85.708","T85.709","T85.710","T85.711","T85.712","T86.807","T98.200x012","T98.200x021"};
13 String[] adrg_ss={};
14 String[] adrg_ss1={};
15
16 if (true && Base.contains(adrg_zd,record.zdList[0])){
17 Base.groupMessages.putMessage(record.Index,"符合SS1入组条件,匹配规则:主诊断匹配");
18
19 if (MDCS_DRG.SS11_group(record)){
20 return "SS11";
21 }
22
23 if (MDCS_DRG.SS13_group(record)){
24 return "SS13";
25 }
26
27 if (MDCS_DRG.SS15_group(record)){
28 return "SS15";
29 }
30
31 return "SS1";
32 }else{
33 return "";
34 }
35 }
36}
37

Callers 1

groupMethod · 0.95

Calls 5

containsMethod · 0.95
SS11_groupMethod · 0.95
SS13_groupMethod · 0.95
SS15_groupMethod · 0.95
putMessageMethod · 0.45

Tested by

no test coverage detected