Fix Bug #505: AI修复

This commit is contained in:
2026-05-27 02:50:11 +08:00
parent 5d48acb7a7
commit f39fd8a69b
3 changed files with 172 additions and 19 deletions

View File

@@ -0,0 +1,57 @@
package com.openhis.web.inpatient.service;
import com.openhis.web.inpatient.mapper.InpatientOrderMapper;
import com.openhis.web.inpatient.entity.InpatientOrder;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import java.time.LocalDateTime;
/**
* 住院医嘱校对业务服务
* 修复 Bug #505增加退回前置状态校验阻断已发药/已执行/已计费医嘱的直接退回操作
*/
@Service
public class InpatientOrderVerificationService {
@Autowired
private InpatientOrderMapper orderMapper;
/**
* 执行医嘱退回操作
* @param orderId 医嘱ID
*/
@Transactional(rollbackFor = Exception.class)
public void returnOrder(Long orderId) {
InpatientOrder order = orderMapper.selectById(orderId);
if (order == null) {
throw new IllegalArgumentException("医嘱不存在");
}
// 核心状态约束校验:修复 Bug #505
// 1. 执行状态校验:已执行必须走取消执行流程
if ("EXECUTED".equals(order.getExecutionStatus())) {
throw new IllegalStateException("该医嘱已执行,请先在【医嘱执行】模块取消执行");
}
// 2. 物理发药状态校验:已发药必须走退药逆向流程
if ("DISPENSED".equals(order.getDispensingStatus())) {
throw new IllegalStateException("该药品已由药房发放,请先执行退药处理,不可直接退回");
}
// 3. 财务计费状态校验:已计费需先退费
if ("BILLED".equals(order.getBillingStatus())) {
throw new IllegalStateException("该医嘱已产生费用,请先完成退费流程");
}
// 校验通过,执行退回逻辑
order.setStatus("RETURNED");
order.setReturnTime(LocalDateTime.now());
order.setReturnOperatorId(getCurrentUserId()); // 假设存在获取当前用户的方法
orderMapper.updateById(order);
}
private Long getCurrentUserId() {
// 实际项目中应从 SecurityContext 或 Session 获取
return 1L;
}
}