- 数据库:在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 - 术后一站式结算功能待后续开发
26 lines
1.3 KiB
XML
26 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
xmlns="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
|
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
|
elementFormDefault="qualified"
|
|
targetNamespace="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
|
blockDefault="#all">
|
|
<xsd:simpleType name="ST_RelationshipId">
|
|
<xsd:restriction base="xsd:string"/>
|
|
</xsd:simpleType>
|
|
<xsd:attribute name="id" type="ST_RelationshipId"/>
|
|
<xsd:attribute name="embed" type="ST_RelationshipId"/>
|
|
<xsd:attribute name="link" type="ST_RelationshipId"/>
|
|
<xsd:attribute name="dm" type="ST_RelationshipId" default=""/>
|
|
<xsd:attribute name="lo" type="ST_RelationshipId" default=""/>
|
|
<xsd:attribute name="qs" type="ST_RelationshipId" default=""/>
|
|
<xsd:attribute name="cs" type="ST_RelationshipId" default=""/>
|
|
<xsd:attribute name="blip" type="ST_RelationshipId" default=""/>
|
|
<xsd:attribute name="pict" type="ST_RelationshipId"/>
|
|
<xsd:attribute name="href" type="ST_RelationshipId"/>
|
|
<xsd:attribute name="topLeft" type="ST_RelationshipId"/>
|
|
<xsd:attribute name="topRight" type="ST_RelationshipId"/>
|
|
<xsd:attribute name="bottomLeft" type="ST_RelationshipId"/>
|
|
<xsd:attribute name="bottomRight" type="ST_RelationshipId"/>
|
|
</xsd:schema>
|