diff --git a/com/openhis/web/outpatient/mapper/OrderMapper.java b/com/openhis/web/outpatient/mapper/OrderMapper.java
index c2f7242d4..c445b90ae 100644
--- a/com/openhis/web/outpatient/mapper/OrderMapper.java
+++ b/com/openhis/web/outpatient/mapper/OrderMapper.java
@@ -47,63 +47,16 @@ public interface OrderMapper {
/**
* **新增**:查询医嘱详情并返回总量单位。
*
- *
诊疗目录中配置的单位保存在列 {@code total_unit_name},前端 DTO 期望的属性名为 {@code totalUnit}
- *(对应数据库列 {@code total_unit})。原始的 {@code SELECT *} 只能映射到 {@code total_unit},导致
- * 前端得到 {@code null}。此查询通过别名把 {@code total_unit_name} 映射为 {@code total_unit},
- * 从而保证前端能够正确显示。
+ * 诊疗目录中配置的单位保存在列 {@code total_unit_name},前端 DTO 期望的属性名为 {@code totalUnit}。
+ * 通过别名映射确保返回的 Map 中包含键 {@code totalUnit},从而避免前端显示 {@code null}。
*
* @param orderId 医嘱主键
- * @return 包含医嘱详情的 Map
+ * @return 包含 {@code totalUnit}(以及其他必要字段)的 Map,若不存在返回 null
*/
- @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}")
+ @Select("SELECT id, total_unit_name AS totalUnit FROM his_order WHERE id = #{orderId}")
Map 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("")
- java.util.List