Commit Graph

22 Commits

Author SHA1 Message Date
0728f65ead docs: add durable execution state management and idempotency patterns
- Three-layer state management (system/execution/business)
- Event sourcing simplified pattern for project workflow
- Idempotency patterns (unique ID, state check, compensation)
- Checkpoint strategy with time/event/state-change triggers
2026-05-28 14:46:59 +08:00
ebf6d803a9 docs: add maturity tracker L1-L5 and adoption path for this project 2026-05-28 14:45:57 +08:00
b7809046b1 docs: add Cursor Self-Driving patterns - perception/decision/execution and bug auto-fix 2026-05-28 14:45:29 +08:00
e1709ef719 docs: add LangChain practices - AI review pipeline and tiered support 2026-05-28 14:45:03 +08:00
2b915f3246 docs: 补充失败原因分布分析和本项目度量体系 2026-05-28 14:44:38 +08:00
6038d61674 docs: 补充四大技能路线图(本项目进度)和检查点策略 2026-05-28 14:43:37 +08:00
d2b71041d8 docs: 补充OpenAI实验基准数据、分层信任和渐进授权模式 2026-05-28 14:43:14 +08:00
acbab07616 docs: 补充控制平面适配版(幂等性/优雅降级/串行执行) 2026-05-28 14:41:13 +08:00
dfd5c69601 docs: 补充闭环测试金字塔和质量门禁(本项目适配版) 2026-05-28 14:40:14 +08:00
b02c10de15 docs: 补充环境设计原则和监控指标体系 2026-05-28 14:39:19 +08:00
1a16dcaab3 docs: 补充约束四层模型、反馈三层结构和常见陷阱表 2026-05-28 14:38:50 +08:00
ba766dd280 docs: 补充范式对比(五大维度)和企业落地路径 2026-05-28 14:37:26 +08:00
bda4b398c6 docs: 补充第四支柱(持久执行)和思维模式转变 2026-05-28 14:35:14 +08:00
37ea3b1b45 docs: 补充范式定位(三次跃迁)和Meta-Harness未来方向 2026-05-28 14:34:14 +08:00
b746b55a1f docs: 补充Harness Engineering完整方法论(三大支柱、设计原则、人机协作边界、 2026-05-28 14:32:34 +08:00
7251c79b9c docs: 补充全链路修复原则到AGENTS.md 2026-05-28 12:20:47 +08:00
913a971ce4 revert: restore develop to clean baseline 5132de36 (remove all AI changes) 2026-05-28 09:43:49 +08:00
30461d7577 chore: add pre-push hook and AGENTS.md protection rules
- .githooks/pre-push: 防误删保护钩子(受保护路径、大量删除、pom.xml 保护、比例检查)
- AGENTS.md: 添加安全铁律章节,标注受保护路径和提交规范

Install: git config core.hooksPath .githooks
2026-05-27 09:05:48 +08:00
9db5ced4e3 Revert "Fix Bug #550: AI修复"
This reverts commit 16c42ca108.
2026-05-27 08:59:07 +08:00
16c42ca108 Fix Bug #550: AI修复 2026-05-27 03:00:08 +08:00
9c3e603b94 Fix Bug #443: 手术计费:点击签发耗材时异常报错
当手术计费弹窗中点击"签发"耗材时,因耗材的locationId(发放库房)为空导致后端异常。
在DoctorStationAdviceAppServiceImpl.handDevice方法中,当locationId为null时,使用登录用户的科室ID作为默认值,
与NurseBillingAppService中的处理方式保持一致。
2026-05-08 09:14:18 +08:00
89bf85fd97 feat: 门诊手术中计费功能
- 数据库:在adm_charge_item表添加SourceBillNo字段
- 后端实体类:更新ChargeItem.java添加SourceBillNo字段
- 前端组件:创建手术计费界面(基于门诊划价界面)
- 后端API:扩展PrePrePaymentDto支持手术计费标识
- 后端Service:扩展getChargeItems方法支持手术计费过滤
- 门诊手术安排界面:添加【计费】按钮

注意事项:
- 需要手动执行SQL脚本:openhis-server-new/sql/add_source_bill_no_to_adm_charge_item.sql
- 术后一站式结算功能待后续开发
2026-02-05 23:47:02 +08:00