|
|
@@ -173,6 +173,7 @@ public interface MzPharmacyMapper {
|
|
|
" yp_mz_fytj.group_no ," ,
|
|
|
" charge_date," ,
|
|
|
" confirm_time," ,
|
|
|
+ " input_time," ,
|
|
|
" confirm_flag," ,
|
|
|
"doctor_id," ,
|
|
|
"doctor_name," ,
|
|
|
@@ -200,7 +201,7 @@ public interface MzPharmacyMapper {
|
|
|
"</when>",
|
|
|
"<when test='endDate!=null'>",
|
|
|
" and confirm_time <![CDATA[<=]]> #{endDate}",
|
|
|
- "</when> group by name,real_no,order_no,patient_id,times,receipt_no ,group_no ,charge_date,confirm_time,doctor_id,doctor_name,warn_dept,confirm_flag",
|
|
|
+ "</when> group by input_time,name,real_no,order_no,patient_id,times,receipt_no ,group_no ,charge_date,confirm_time,doctor_id,doctor_name,warn_dept,confirm_flag",
|
|
|
") as A WHERE RowNumber >#{pageSize}*#{pageIndex} order by RowNumber ASC",
|
|
|
"</script>"})
|
|
|
List<YpMzFytjVo> selectYpMzRefundSucceedFytjPage(ChargeFeeParamsVo chargeFeeParamsVo);
|
|
|
@@ -315,7 +316,7 @@ public interface MzPharmacyMapper {
|
|
|
* @param mzRefundMedicineVo
|
|
|
* @return
|
|
|
*/
|
|
|
- @Update("update yp_mz_fytj set confirm_flag =#{confirmFlag} where patient_id =#{patientId} and times =#{times} and receipt_no =-#{receiptNo}" +
|
|
|
+ @Update("update yp_mz_fytj set confirm_flag =#{confirmFlag},input_time=#{inputTime} where patient_id =#{patientId} and times =#{times} and receipt_no =-#{receiptNo}" +
|
|
|
" and order_no =#{orderNo} and real_no =-#{realNo} ")
|
|
|
int updateFytjConfirmFlag(MzRefundMedicineVo mzRefundMedicineVo);
|
|
|
|