|
@@ -105,24 +105,6 @@ public interface YiZhuLuRuDao {
|
|
|
@Param("admissTimes") Integer admissTimes,
|
|
|
@Param("ledgerSn") Integer ledgerSn);
|
|
|
|
|
|
- @Select("select distinct rtrim(order_name) code, rtrim(order_name) name " +
|
|
|
- "from yz_act_order with (NOLOCK) " +
|
|
|
- "where inpatient_no = #{inpatientNo} " +
|
|
|
- " and admiss_times = #{admissTimes} " +
|
|
|
- " and (order_name like #{orderName} or order_code like #{orderName})")
|
|
|
- List<GetDropdownBox> huoQuYiZhuMingZi(@Param("inpatientNo") String inpatientNo,
|
|
|
- @Param("admissTimes") Integer admissTimes,
|
|
|
- @Param("orderName") String orderName);
|
|
|
-
|
|
|
- @Select("select rtrim(frequ_code) code, " +
|
|
|
- " name = (select rtrim(comm) from yz_order_frequency where frequ_code = code) " +
|
|
|
- "from yz_act_order with (NOLOCK) " +
|
|
|
- "where inpatient_no = #{patNo} " +
|
|
|
- " and admiss_times = #{times} " +
|
|
|
- "group by frequ_code")
|
|
|
- List<GetDropdownBox> huoQuGeRenPinLv(@Param("patNo") String patNo,
|
|
|
- @Param("times") Integer times);
|
|
|
-
|
|
|
|
|
|
@Select("select a.act_order_no, " +
|
|
|
" cast(cast(a.act_order_no as decimal) as varchar) id, " +
|
|
@@ -813,6 +795,11 @@ public interface YiZhuLuRuDao {
|
|
|
List<GetDropdownBox> huoQuZhuYuanPinLv(String code);
|
|
|
|
|
|
|
|
|
+ @Select("select rtrim(code) as code, rtrim(comm) name " +
|
|
|
+ "from yz_order_frequency")
|
|
|
+ List<GetDropdownBox> selectFrequency();
|
|
|
+
|
|
|
+
|
|
|
@Select("select rtrim(supply_code) code, rtrim(supply_name) name " +
|
|
|
"from yz_supply_type with (NOLOCK) " +
|
|
|
"where (supply_code like #{code} or supply_name like #{code} or py_code like #{code} )")
|