|
@@ -296,6 +296,7 @@ public interface MzPharmacyMapper {
|
|
|
" yp_mz_fytj.self_flag, " +
|
|
|
" yp_mz_fytj.response_type, " +
|
|
|
" yp_mz_fytj.warn_dept ," +
|
|
|
+ " yp_mz_fytj.refund_medicine_remark ," +
|
|
|
" real_no=yp_mz_fytj.real_no," +
|
|
|
" win_no = yp_mz_fytj.win_no " +
|
|
|
" FROM yp_mz_fytj WITH(NOLOCK) , " +
|
|
@@ -1186,4 +1187,9 @@ public interface MzPharmacyMapper {
|
|
|
@Update("update mz_charge_detail set confirm_flag = #{confirmFlag}, dec_amount = 0 " +
|
|
|
"where real_no =#{realNo} and group_no = #{groupNo} and order_no =#{orderNo} and receipt_no = #{receiptNo} ")
|
|
|
void updateChargeDetailConfirmFlagByTy(@Param("confirmFlag") String confirmFlag, @Param("realNo") Integer realNo, @Param("groupNo") String groupNo, @Param("orderNo") Integer orderNo, @Param("receiptNo") Integer receiptNo);
|
|
|
+
|
|
|
+ @Select(" select * from mz_charge_detail " +
|
|
|
+ " where pay_mark = '0' and group_no = #{groupNo} and confirm_flag in ('0', '5')" +
|
|
|
+ " and patient_id = #{patientId} and times = #{times} and receipt_no = #{receiptNo} ")
|
|
|
+ List<MzChargeDetail> getMzCfWfy(MzChargeDetail mzChargeDetail);
|
|
|
}
|