|
@@ -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();
|
|
|
|