Parcourir la source

1、修改华卓数据导入接口

louhr il y a 5 ans
Parent
commit
5707279d52

+ 1 - 1
kernel/src/test/java/com/lantone/qc/kernel/ChangxDataImportApiTest.java

@@ -327,7 +327,7 @@ public class ChangxDataImportApiTest {
             String sql = "select a.brzyid,c.bllbmc,b.bljlnr from " + tableMap.get("MR_MEDICALRECORDS") + " a " +
                     "left join " + tableMap.get("MR_MRCONTENT") + " b on a.bljlid=b.bljlid " +
                     "left join " + tableMap.get("AR_MEDIRECCLASS") + " c on a.Bllbid = c.bllbid " +
-                    "where bljlnr is not null and brzyid = '" + brzyid + "' " +
+                    "where bljlnr is not null and brzyid = '" + brzyid + "' and a.bljlmc != '诊断证明书' " +
                     "order by brzyid";
             rs = st.executeQuery(sql);
             while (rs.next()) {