(MedicalRecord record)
| 10 | |
| 11 | public class OR1 { |
| 12 | public static String group(MedicalRecord record){ |
| 13 | String[] adrg_zd={"Z37.000","Z37.000x001","Z37.001","Z37.002","Z37.100","Z37.100x002","Z37.200","Z37.200x003","Z37.201","Z37.202","Z37.203","Z37.204","Z37.300","Z37.300x001","Z37.301","Z37.302","Z37.303","Z37.400","Z37.400x001","Z37.500","Z37.500x001","Z37.501","Z37.502","Z37.600","Z37.600x001","Z37.700","Z37.700x001","Z37.900","Z37.900x003"}; |
| 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,"符合OR1入组条件,匹配规则:主诊断匹配"); |
| 20 | |
| 21 | if (MDCO_DRG.OR19_group(record)){ |
| 22 | return "OR19"; |
| 23 | } |
| 24 | |
| 25 | return "OR1"; |
| 26 | }else{ |
| 27 | return ""; |
| 28 | } |
| 29 | } |
| 30 | } |
| 31 |
no test coverage detected