(MedicalRecord record)
| 10 | |
| 11 | public class ER2 { |
| 12 | public static String group(MedicalRecord record){ |
| 13 | String[] adrg_zd={"I26.900x001","I26.900x002","I26.900x003","I26.900x005","I26.900x006","I26.900x007","I26.900x008","I26.900x009","I26.900x010","I26.900x011","I26.900x012","I26.900x013","I26.900x015","I26.900x016","I26.900x017","I26.900x018","I26.901","I26.902","I28.800x010"}; |
| 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,"符合ER2入组条件,匹配规则:主诊断匹配"); |
| 20 | |
| 21 | if (MDCE_DRG.ER23_group(record)){ |
| 22 | return "ER23"; |
| 23 | } |
| 24 | |
| 25 | if (MDCE_DRG.ER25_group(record)){ |
| 26 | return "ER25"; |
| 27 | } |
| 28 | |
| 29 | return "ER2"; |
| 30 | }else{ |
| 31 | return ""; |
| 32 | } |
| 33 | } |
| 34 | } |
| 35 |
no test coverage detected