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 - 术后一站式结算功能待后续开发
This commit is contained in:
@@ -90,4 +90,15 @@ server:
|
||||
port: 18080
|
||||
servlet:
|
||||
# 应用的访问路径
|
||||
context-path: /openhis
|
||||
context-path: /openhis
|
||||
|
||||
# 开发环境日志配置
|
||||
logging:
|
||||
level:
|
||||
com.openhis: debug
|
||||
com.baomidou.mybatisplus: debug
|
||||
com.openhis.mapper: debug
|
||||
com.openhis.domain: debug
|
||||
org.springframework.jdbc.core: debug
|
||||
com.alibaba.druid: debug
|
||||
com.alibaba.druid.sql: debug
|
||||
@@ -32,16 +32,17 @@ server:
|
||||
# 日志配置
|
||||
logging:
|
||||
level:
|
||||
com.openhis: info
|
||||
com.openhis: debug
|
||||
org.springframework: warn
|
||||
# MyBatis和MyBatis-Plus日志
|
||||
com.baomidou.mybatisplus: info
|
||||
com.openhis.web.regdoctorstation.mapper: info
|
||||
com.baomidou.mybatisplus: debug
|
||||
com.openhis.mapper: debug
|
||||
com.openhis.domain: debug
|
||||
# JDBC日志
|
||||
org.springframework.jdbc.core: info
|
||||
org.springframework.jdbc.core: debug
|
||||
# Druid SQL日志
|
||||
com.alibaba.druid: info
|
||||
com.alibaba.druid.sql: info
|
||||
com.alibaba.druid: debug
|
||||
com.alibaba.druid.sql: debug
|
||||
|
||||
# 用户配置
|
||||
user:
|
||||
@@ -91,6 +92,9 @@ mybatis-plus:
|
||||
mapperLocations: classpath*:mapper/**/*Mapper.xml
|
||||
# 加载全局的配置文件
|
||||
configLocation: classpath:mybatis/mybatis-config.xml
|
||||
configuration:
|
||||
# 开启 SQL 日志输出
|
||||
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
||||
global-config:
|
||||
db-config:
|
||||
logic-delete-field: validFlag # 全局逻辑删除的实体字段名
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<!-- 配置默认的执行器.SIMPLE就是普通执行器;REUSE执行器会重用预处理语句(prepared statements);BATCH执行器将重用语句并执行批量更新 -->
|
||||
<setting name="defaultExecutorType" value="SIMPLE"/>
|
||||
<!-- 指定 MyBatis 所用日志的具体实现 -->
|
||||
<setting name="logImpl" value="SLF4J"/>
|
||||
<setting name="logImpl" value="STDOUT"/>
|
||||
<!-- <setting name="logImpl" value="org.apache.ibatis.logging.stdout.StdOutImpl"/>-->
|
||||
<!-- 使用驼峰命名法转换字段 -->
|
||||
<setting name="mapUnderscoreToCamelCase" value="true"/>
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
modulelist=com.baomidou.mybatisplus.extension.p6spy.MybatisPlusLogFactory,com.p6spy.engine.outage.P6OutageFactory
|
||||
logMessageFormat=com.baomidou.mybatisplus.extension.p6spy.P6SpyLogger
|
||||
outagedetection=true
|
||||
outagedetectioninterval=2000
|
||||
appender=com.baomidou.mybatisplus.extension.p6spy.StdoutLogger
|
||||
Reference in New Issue
Block a user