(MedicalRecord record)
| 11 | |
| 12 | public class PS2 { |
| 13 | public static String group(MedicalRecord record){ |
| 14 | String[] adrg_zd={"P07.200","P07.200x011","P07.200x021","P07.300","P07.300x001","P07.300x011","P07.300x021"}; |
| 15 | String[] adrg_zd1={}; |
| 16 | String[] adrg_ss={}; |
| 17 | String[] adrg_ss1={}; |
| 18 | String[] adrg_ss2={}; |
| 19 | if (true && Base.intersect(record.zdList,adrg_zd) && record.weight>0 && record.weight>=1500 && record.weight<2000 && record.ageDay<=28){ |
| 20 | Base.groupMessages.putMessage(record.Index,"符合PS2入组条件,匹配规则:某一诊断匹配 体重1500至2000克 新生儿"); |
| 21 | |
| 22 | |
| 23 | if (MDCP_DRG.PS21_group(record)){ |
| 24 | return "PS21"; |
| 25 | } |
| 26 | |
| 27 | if (MDCP_DRG.PS25_group(record)){ |
| 28 | return "PS25"; |
| 29 | } |
| 30 | |
| 31 | return ""; |
| 32 | }else{ |
| 33 | return ""; |
| 34 | } |
| 35 | } |
| 36 | } |
| 37 |
no test coverage detected