258 预约管理-》医生排班管理:点【预约设置】界面编辑内容【确定】提示”保存成功“但是刷新重新进入未显示最后一次更新的数据

This commit is contained in:
HuangXinQuan
2026-03-27 15:42:26 +08:00
parent 112ec2e4a3
commit e2e5999276
15 changed files with 419 additions and 38 deletions

View File

@@ -239,32 +239,32 @@
<select id="countOrders" resultType="int">
select count(*) from order_main
<where>
<if test="orderNo != null and orderNo != ''">
and order_no = #{orderNo}
<if test="params.orderNo != null and params.orderNo != ''">
and order_no = #{params.orderNo}
</if>
<if test="patientId != null">
and patient_id = #{patientId}
<if test="params.patientId != null">
and patient_id = #{params.patientId}
</if>
<if test="scheduleId != null">
and schedule_id = #{scheduleId}
<if test="params.scheduleId != null">
and schedule_id = #{params.scheduleId}
</if>
<if test="slotId != null">
and slot_id = #{slotId}
<if test="params.slotId != null">
and slot_id = #{params.slotId}
</if>
<if test="departmentId != null">
and department_id = #{departmentId}
<if test="params.departmentId != null">
and department_id = #{params.departmentId}
</if>
<if test="doctorId != null">
and doctor_id = #{doctorId}
<if test="params.doctorId != null">
and doctor_id = #{params.doctorId}
</if>
<if test="status != null">
and status = #{status}
<if test="params.status != null">
and status = #{params.status}
</if>
<if test="payStatus != null">
and pay_status = #{payStatus}
<if test="params.payStatus != null">
and pay_status = #{params.payStatus}
</if>
<if test="appointmentDate != null">
and appointment_date = #{appointmentDate}
<if test="params.appointmentDate != null">
and appointment_date = #{params.appointmentDate}
</if>
</where>
</select>