Fix Bug #435: 门诊手术安排:编辑弹窗中"费用类别"字段数据未回显

根因:getSurgeryScheduleDetail 查询未关联 fin_contract 表,导致 feeType 始终为 null
修复:SQL 中添加 adm_encounter → adm_account → fin_contract 三表关联,取 fc.contract_name AS feeType;
      OpScheduleDto 新增 feeType 字段用于接收映射

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
赵云
2026-05-12 10:03:50 +08:00
parent eb3d0ee608
commit 3f35b4f2bb
2 changed files with 9 additions and 0 deletions

View File

@@ -106,4 +106,9 @@ public class OpScheduleDto extends OpSchedule {
* 创建人名称
*/
private String createByName;
/**
* 费用类别
*/
private String feeType;
}