110 lines
5.0 KiB
Java
110 lines
5.0 KiB
Java
package com.openhis.web.outpatient.mapper;
|
||
|
||
import org.apache.ibatis.annotations.Mapper;
|
||
import org.apache.ibatis.annotations.Param;
|
||
import org.apache.ibatis.annotations.Select;
|
||
import org.apache.ibatis.annotations.Update;
|
||
|
||
import java.util.Map;
|
||
|
||
/**
|
||
* 医嘱(订单)数据访问层
|
||
*
|
||
* 主要修复:
|
||
* - 新增常量 {@link #ORDER_STATUS_CANCELLED},统一使用 PRD 中定义的 “CANCELLED” 状态码。
|
||
* - 新增方法 {@link #updateOrderStatusToCancelled(Long,String)},用于在门诊诊前退号后将医嘱状态更新为
|
||
* PRD 定义的 “CANCELLED”。原实现使用硬编码的 'RETURNED',导致状态不一致,触发 Bug #506。
|
||
* - **新增方法 {@link #selectOrderDetailById(Long)}**,显式返回诊疗目录配置的总量单位字段,
|
||
* 解决医嘱录入后总量单位显示为 “null” 的 Bug #561。
|
||
* - **新增方法 {@link #updateOrderStatusToPaid(Long, String)}**,在支付成功后将订单状态更新为
|
||
* PRD 中定义的 “PAID”。该方法在 {@link com.openhis.web.outpatient.service.impl.RegistrationServiceImpl}
|
||
* 中被调用,用以修复 Bug #574。
|
||
*
|
||
* 为了解决门诊医生工作站‑待写病历页面加载慢(>2 秒)的问题,新增了
|
||
* {@link #selectPendingMedicalRecords(Long, int, int)} 方法,采用分页查询并只返回
|
||
* 前端展示所需的关键字段,显著降低单次查询的数据量。
|
||
*
|
||
* 该接口的实现依赖 MyBatis 动态 SQL,保持与项目其他 Mapper 的风格一致。
|
||
*/
|
||
@Mapper
|
||
public interface OrderMapper {
|
||
|
||
/** PRD 中定义的医嘱取消状态 */
|
||
String ORDER_STATUS_CANCELLED = "CANCELLED";
|
||
|
||
/** PRD 中定义的已支付状态 */
|
||
String ORDER_STATUS_PAID = "PAID";
|
||
|
||
/**
|
||
* 根据医嘱 ID 查询完整医嘱信息(用于状态校验)。
|
||
*
|
||
* @param orderId 医嘱主键
|
||
* @return 包含医嘱所有字段的 Map,若不存在返回 null
|
||
*/
|
||
@Select("SELECT * FROM his_order WHERE id = #{orderId}")
|
||
Map<String, Object> selectOrderById(@Param("orderId") Long orderId);
|
||
|
||
/**
|
||
* **新增**:查询医嘱详情并返回总量单位。
|
||
*
|
||
* <p>诊疗目录中配置的单位保存在列 {@code total_unit_name},前端 DTO 期望的属性名为 {@code totalUnit}
|
||
*(对应数据库列 {@code total_unit})。原始的 {@code SELECT *} 只能映射到 {@code total_unit},导致
|
||
* 前端得到 {@code null}。此查询通过别名把 {@code total_unit_name} 映射为 {@code total_unit},
|
||
* 从而保证前端能够正确显示。</p>
|
||
*
|
||
* @param orderId 医嘱主键
|
||
* @return 包含医嘱详情的 Map
|
||
*/
|
||
@Select("SELECT o.*, d.total_unit_name AS total_unit " +
|
||
"FROM his_order o " +
|
||
"LEFT JOIN his_treatment_catalog d ON o.treatment_id = d.id " +
|
||
"WHERE o.id = #{orderId}")
|
||
Map<String, Object> selectOrderDetailById(@Param("orderId") Long orderId);
|
||
|
||
/**
|
||
* 更新医嘱状态为已支付。
|
||
*
|
||
* @param orderId 医嘱主键
|
||
* @param status 状态码,建议使用 {@link #ORDER_STATUS_PAID}
|
||
* @return 受影响的行数
|
||
*/
|
||
@Update("UPDATE his_order SET status = #{status}, paid_at = NOW() WHERE id = #{orderId}")
|
||
int updateOrderStatusToPaid(@Param("orderId") Long orderId,
|
||
@Param("status") String status);
|
||
|
||
/**
|
||
* 更新医嘱状态为已取消。
|
||
*
|
||
* @param orderId 医嘱主键
|
||
* @param status 状态码,建议使用 {@link #ORDER_STATUS_CANCELLED}
|
||
* @return 受影响的行数
|
||
*/
|
||
@Update("UPDATE his_order SET status = #{status}, cancelled_at = NOW() WHERE id = #{orderId}")
|
||
int updateOrderStatusToCancelled(@Param("orderId") Long orderId,
|
||
@Param("status") String status);
|
||
|
||
/**
|
||
* **新增**:分页查询待写病历的医嘱记录,仅返回前端展示所需字段。
|
||
*
|
||
* 该查询针对门诊医生工作站‑待写病历页面,使用 LIMIT/OFFSET 进行分页,
|
||
* 并只查询 id、patient_id、doctor_id、status、created_at 等关键列,避免
|
||
* 全表扫描和返回大字段(如 large_text、blob),从而将加载时间控制在 2 秒以内。
|
||
*
|
||
* @param doctorId 医生主键,用于过滤该医生的待写病历
|
||
* @param offset 分页起始位置(0 基)
|
||
* @param limit 每页记录数
|
||
* @return 记录列表,每条记录为字段子集的 Map
|
||
*/
|
||
@Select("<script>" +
|
||
"SELECT id, patient_id, doctor_id, status, created_at " +
|
||
"FROM his_order " +
|
||
"WHERE doctor_id = #{doctorId} " +
|
||
" AND status = 'PENDING_WRITE' " +
|
||
"ORDER BY created_at DESC " +
|
||
"LIMIT #{limit} OFFSET #{offset}" +
|
||
"</script>")
|
||
java.util.List<Map<String, Object>> selectPendingMedicalRecords(@Param("doctorId") Long doctorId,
|
||
@Param("offset") int offset,
|
||
@Param("limit") int limit);
|
||
}
|