|
@@ -19,7 +19,7 @@ public interface MedicineManagementDao {
|
|
|
@Select("select b.code as chargeCode,sum(a.amount) as amount,sum(a.charge_fee) as chargeFee, " +
|
|
|
"max(b.pack_retprice) as price,max(a.exec_unit) as execUnit,b.serial as serialNo, " +
|
|
|
"max(a.group_no) as groupNo,max(a.page_no) as pageNo,max(b.name) as drugName, " +
|
|
|
- "max(b.specification) as spec,max(a.confirm_flag) as confirmFlag,max(b.drug_flag) as drugFlag " +
|
|
|
+ "max(b.specification) as spec,max(a.confirm_flag) as confirmFlag,max(b.drug_flag) as drugFlag,max(b.infusion_flag) as infusionFlag " +
|
|
|
"from zy_drug a with(nolock),yp_zd_dict b with(nolock) ${ew.customSqlSegment}")
|
|
|
List<MedicinePage> selectMedicinePages(@Param(Constants.WRAPPER) QueryWrapper<?> queryWrapper);
|
|
|
|