(MedicalRecord record)
| 10 | |
| 11 | public class KU1 { |
| 12 | public static String group(MedicalRecord record){ |
| 13 | String[] adrg_zd={"E40.x00","E41.x00","E41.x01","E42.x00","E43.x00","E43.x00x001","E43.x00x002","E44.000","E44.100","E45.x00","E45.x00x003","E46.x00x002","E46.x00x003","E46.x00x004","E46.x00x005","E46.x01","E50.100x001+H13.8*","E50.900","E51.800","E51.900","E51.900x001","E52.x00x003","E53.000","E53.100","E53.100x001","E53.800x010","E53.800x011","E53.800x012","E53.800x013","E53.802","E53.804","E53.900","E53.901","E54.x00","E55.002","E55.900","E56.000","E56.100","E56.800x001","E56.900","E58.x00","E59.x00","E59.x01","E60.x00","E61.000","E61.100","E61.200","E61.300","E61.400","E61.500","E61.600","E61.700","E61.800","E61.900","E63.000","E63.100","E63.800","E63.900","E64.000","E64.100","E64.200","E64.800","E64.900","E67.800","E68.x00","E78.601","E80.700","E83.800","E84.801","R63.801","R64.x00"}; |
| 14 | String[] adrg_zd1={}; |
| 15 | String[] adrg_ss={}; |
| 16 | String[] adrg_ss1={}; |
| 17 | |
| 18 | if (true && Base.contains(adrg_zd,record.zdList[0])){ |
| 19 | Base.groupMessages.putMessage(record.Index,"符合KU1入组条件,匹配规则:主诊断匹配"); |
| 20 | |
| 21 | if (MDCK_DRG.KU13_group(record)){ |
| 22 | return "KU13"; |
| 23 | } |
| 24 | |
| 25 | if (MDCK_DRG.KU15_group(record)){ |
| 26 | return "KU15"; |
| 27 | } |
| 28 | |
| 29 | return "KU1"; |
| 30 | }else{ |
| 31 | return ""; |
| 32 | } |
| 33 | } |
| 34 | } |
| 35 |
no test coverage detected