- 数据库:在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 - 术后一站式结算功能待后续开发
19 lines
880 B
XML
19 lines
880 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
xmlns="http://schemas.openxmlformats.org/schemaLibrary/2006/main"
|
|
targetNamespace="http://schemas.openxmlformats.org/schemaLibrary/2006/main"
|
|
attributeFormDefault="qualified" elementFormDefault="qualified">
|
|
<xsd:complexType name="CT_Schema">
|
|
<xsd:attribute name="uri" type="xsd:string" default=""/>
|
|
<xsd:attribute name="manifestLocation" type="xsd:string"/>
|
|
<xsd:attribute name="schemaLocation" type="xsd:string"/>
|
|
<xsd:attribute name="schemaLanguage" type="xsd:token"/>
|
|
</xsd:complexType>
|
|
<xsd:complexType name="CT_SchemaLibrary">
|
|
<xsd:sequence>
|
|
<xsd:element name="schema" type="CT_Schema" minOccurs="0" maxOccurs="unbounded"/>
|
|
</xsd:sequence>
|
|
</xsd:complexType>
|
|
<xsd:element name="schemaLibrary" type="CT_SchemaLibrary"/>
|
|
</xsd:schema>
|