D_Update.sql 578 B

123456789
  1. --VTE重复病例默认勾选上以下病种
  2. update D_RepeatReportSetting set [Enabled]=1
  3. where ReportClass=36 and RepeatReportClass in(12,6,1,4,5,7,29,24,30,31)
  4. --PACG编码调整
  5. UPDATE Report_ICDCodeMatch Set SuborderValue='b' Where ReportClass=39 AND ICDCode like 'H40.0%'
  6. UPDATE Report_ICDCodeMatch Set SuborderValue='c' Where ReportClass=39 AND ICDCode like 'H40.2%'
  7. UPDATE Report_ICDCodeMatch Set SuborderValue='a' Where ReportClass=39 AND ICDCode like 'H26.2%'
  8. UPDATE Report_ICDCodeMatch Set SuborderValue='oth' Where ReportClass=39 AND ICDCode like 'H40.9%'