(MedicalRecord record)
| 10 | |
| 11 | public class PR1 { |
| 12 | public static String group(MedicalRecord record){ |
| 13 | String[] adrg_zd={"P22.000","P22.000x001","P22.100x003","P22.101","P22.801","P22.900"}; |
| 14 | String[] adrg_zd1={}; |
| 15 | String[] adrg_ss={}; |
| 16 | String[] adrg_ss1={}; |
| 17 | |
| 18 | if (true && Base.contains(adrg_zd,record.zdList[0]) && record.ageDay<=28){ |
| 19 | Base.groupMessages.putMessage(record.Index,"符合PR1入组条件,匹配规则:主诊断匹配、新生儿"); |
| 20 | |
| 21 | if (MDCP_DRG.PR11_group(record)){ |
| 22 | return "PR11"; |
| 23 | } |
| 24 | |
| 25 | if (MDCP_DRG.PR15_group(record)){ |
| 26 | return "PR15"; |
| 27 | } |
| 28 | |
| 29 | return "PR1"; |
| 30 | }else{ |
| 31 | return ""; |
| 32 | } |
| 33 | } |
| 34 | } |
| 35 |
no test coverage detected