Browse Source

'检验检查开立住院停用'

yaodeguang 2 tuần trước cách đây
mục cha
commit
1aee83e876

+ 2 - 1
src/main/java/thyyxxk/webserver/dao/his/zhuyuanyisheng/JianYanJianChaDao.java

@@ -481,7 +481,7 @@ public interface JianYanJianChaDao {
     List<JyJcItem> queryInspectionClassification();
 
     /**
-     * 获取详细的检验项目
+     * 获取详细的检验项目(非住院停用)
      *
      * @return
      */
@@ -505,6 +505,7 @@ public interface JianYanJianChaDao {
             "from jy_zd_item a\n" +
             "         left join yz_order_item b on (a.zy_order_code = b.order_code)\n" +
             "where isnull(a.del_flag, '0') != '1'\n" +
+            "  and isnull(a.zy_flag, '0') != '1'\n" +
             "  and isnull(b.del_flag, '0') <> '1'")
     List<JyJcItem> getJyDetailedItems();