fix(common): 统一异常处理并迁移打印功能到hiprint

- 替换所有System.out.println和printStackTrace为slf4j日志记录
- 在BeanUtils、AuditFieldUtil、DateUtils、ServletUtils等工具类中添加Logger实例
- 在Flowable相关控制器和服务中统一错误日志记录格式
- 在代码生成器中添加日志记录功能
- 将前端打印组件从Lodop迁移到hiprint打印方案
- 更新体温单打印功能使用hiprint预览打印
- 移除调试用的console.log语句
- 修复打印模板中线条元素类型定义
This commit is contained in:
2026-03-06 22:16:44 +08:00
parent 8ef334ba1b
commit b65841c0cc
58 changed files with 678 additions and 888 deletions

View File

@@ -61,7 +61,8 @@
</div>
</template>
<script>
import {getLodop} from '../../../plugins/print/LodopFuncs'
// 迁移到 hiprint
import { simplePrint, PRINT_TEMPLATE } from '@/utils/printUtils.js'
export default {
data() {
@@ -73,23 +74,35 @@ export default {
}
}
},
mounted() {
},
mounted() {},
methods: {
printTest() {
const LODOP = getLodop()
LODOP.PRINT_INIT('')
LODOP.ADD_PRINT_TABLE(100, 40, 750, 900, document.getElementById('div2').innerHTML)
LODOP.SET_PRINT_STYLEA(0, 'Horient', 3)
LODOP.ADD_PRINT_HTM(20, 40, '100%', 100, document.getElementById('div1').innerHTML)
LODOP.SET_PRINT_STYLEA(0, 'ItemType', 1)
LODOP.SET_PRINT_STYLEA(0, 'LinkedItem', 1)
// LODOP.SET_PRINT_PAGESIZE(2, '', '', ''); // 设置横向打印
LODOP.ADD_PRINT_HTM(1080, 500, 300, 100, '总页数:<span><span tdata="pageNO">第##页</span>/ <span tdata="pageCount">共##页</span></span>')
LODOP.SET_PRINT_STYLEA(0, 'ItemType', 1)
LODOP.SET_PRINT_STYLEA(0, 'Horient', 1)
// LODOP.PREVIEW(); // 打印预览
LODOP.PRINT() // 直接打印
/**
* 使用 hiprint 执行打印
*/
async printTest() {
try {
// 构建打印数据
const shiftRecordItems = (this.printData.shiftRecordItems || []).map(item => ({
typeDisplay: item.typeDisplay || '',
bedName: item.bedName || '',
patientName: item.patientName || '',
mainSuit: item.mainSuit || '',
previousHistory: item.previousHistory || '',
diagnosis: item.diagnosis || '',
content: item.content || ''
}))
const printData = {
date: this.printData.date ? this.printData.date.substring(0, 10) : '',
initiatorName: this.printData.initiator ? this.printData.initiator.name : '',
heirName: this.printData.heir ? this.printData.heir.name : '',
shiftRecordItems: shiftRecordItems
}
// 使用 hiprint 打印
await simplePrint(PRINT_TEMPLATE.CHANGE_SHIFT_BILL, printData)
} catch (error) {
console.error('护理交接班打印失败:', error)
}
}
}
}

View File

@@ -86,7 +86,8 @@
</div>
</template>
<script>
import {getLodop} from '../../../plugins/print/LodopFuncs'
// 迁移到 hiprint
import { simplePrint, PRINT_TEMPLATE } from '@/utils/printUtils.js'
import useUserStore from '@/store/modules/user'
export default {
@@ -98,33 +99,47 @@ export default {
printData: {
type: Object,
default() {
return {
}
return {}
}
}
},
data() {
return {
}
},
mounted() {
return {}
},
mounted() {},
methods: {
printTest() {
const LODOP = getLodop()
LODOP.PRINT_INIT('')
LODOP.ADD_PRINT_TABLE(120, 35, 750, 900, document.getElementById('exeSheet' + this.printData.id).innerHTML)
LODOP.SET_PRINT_STYLEA(0, 'Horient', 3)
LODOP.ADD_PRINT_HTM(20, 40, '100%', 100, document.getElementById('exeSheetTitle' + this.printData.id).innerHTML)
LODOP.SET_PRINT_STYLEA(0, 'ItemType', 1)
LODOP.SET_PRINT_STYLEA(0, 'LinkedItem', 1)
// LODOP.SET_PRINT_PAGESIZE(2, '', '', ''); // 设置横向打印
LODOP.ADD_PRINT_HTM(1080, 500, 300, 100, '总页数:<span><span tdata="pageNO">第##页</span>/ <span tdata="pageCount">共##页</span></span>')
LODOP.SET_PRINT_STYLEA(0, 'ItemType', 1)
LODOP.SET_PRINT_STYLEA(0, 'Horient', 1)
LODOP.SET_SHOW_MODE('LANDSCAPE_DEFROTATED', 1)// 横向时的正向显示
LODOP.PREVIEW() // 打印预览
// LODOP.PRINT(); // 直接打印
/**
* 使用 hiprint 执行打印
*/
async printTest() {
try {
// 构建打印数据
const recordData = (this.printData.recordData || []).map(item => ({
moTime: item.moTime || '',
orderName: item.orderName || '',
flag: item.flag || '',
remark: item.remark || '',
doseOnceUnit: item.doseOnce <= 0 ? '' : (item.doseOnce + item.doseUnit),
usageName: item.usageName || '',
frequency: item.frequency || '',
moDocName: item.moDocName || '',
occurrence: item.occurrence || '',
performName: item.performName || ''
}))
const printData = {
hospitalName: this.userStore.hospitalName,
bedName: this.printData.patientInfo ? this.printData.patientInfo.encounterLocationName : '',
patientName: this.printData.patientInfo ? this.printData.patientInfo.name : '',
patientAge: this.printData.patientInfo ? this.printData.patientInfo.patientAge : '',
diag: this.printData.patientInfo ? this.printData.patientInfo.diag : '',
recordData: recordData
}
// 使用 hiprint 打印
await simplePrint(PRINT_TEMPLATE.EXE_ORDER_SHEET, printData)
} catch (error) {
console.error('医嘱执行单打印失败:', error)
}
}
}
}

View File

@@ -46,8 +46,9 @@
</div>
</template>
<script>
// import QRCode from 'qrcodejs2'
import {getLodop} from '../../../plugins/print/LodopFuncs'
// 迁移到 hiprint
import { simplePrint, PRINT_TEMPLATE } from '@/utils/printUtils.js'
import moment from 'moment'
export default {
name: 'VuePrintNb',
@@ -55,8 +56,7 @@ export default {
printData: {
type: Object,
default() {
return {
}
return {}
}
}
},
@@ -66,72 +66,46 @@ export default {
qrCode: ''
}
},
mounted() {
// console.log('mounted方法');
// this.initBarCode();
},
mounted() {},
methods: {
// initBarCode() {
// this.$nextTick(() => {
// if (this.lastId !== this.printData.patient.hisId) {
// new QRCode(this.getId(this.printData.id), {
// text: this.printData.patient.hisId,
// width: 50,
// height: 50,
// colorDark: '#000000',
// colorLight: '#ffffff',
// correctLevel: QRCode.CorrectLevel.H
// });
// }
// this.lastId = this.printData.patient.hisId;
// });
// },
//
// getId(id) {
// return 'qrcode' + id;
// },
print(printerName) {
const LODOP = getLodop()
const printer = this.getPrinter(LODOP, printerName)
if (printer === null) {
this.openMesBox('6', '没有找到打印机【' + printerName + '】')
return
}
/**
* 使用 hiprint 执行打印
* @param {string} printerName 打印机名称
*/
async print(printerName) {
console.log(this.printData, 'printData')
this.qrCode = this.printData.orderDetail[0].comboNo + this.printData.orderDetail[0].executionSeq
LODOP.PRINT_INIT()
LODOP.SET_PRINTER_INDEX(printer)// 指定打印机
this.setPrint(LODOP)
LODOP.SET_PRINT_PAGESIZE(0, 1070, 800, '')
LODOP.PREVIEW() // 打印预览
// LODOP.PRINT(); // 直接打印
},
setPrint(LODOP) {
LODOP.ADD_PRINT_HTM(0, 0, '100%', '100%', document.getElementById(this.printData.id + 'div1').innerHTML)
LODOP.ADD_PRINT_HTM(82, 0, '100%', '100%', document.getElementById(this.printData.id + 'div2').innerHTML)
LODOP.ADD_PRINT_HTM(265, 10, '100%', '100%', document.getElementById(this.printData.id + 'div3').innerHTML)
LODOP.SET_PRINT_STYLEA(0, 'ItemType', 1)
// 设置二维码 qrcode 条码128B等
// LODOP.ADD_PRINT_BARCODE(Top,Left,Width,Height,BarCodeType,BarCodeValue);
LODOP.ADD_PRINT_BARCODE(0, 300, 75, 75, 'qrcode', this.qrCode)// 设置条码位置、宽高、字体、值
LODOP.SET_PRINT_STYLEA(0, 'FontSize', 18)// 设置上面这个条码下方的文字字体大小
// LODOP.SET_PRINT_STYLEA(0,"Color","#FF0000");//设置当前条码以及条码下方字体的颜色
LODOP.SET_PRINT_STYLEA(0, 'Angle', 180)// 设置旋转角度
LODOP.SET_PRINT_STYLEA(0, 'ShowBarText', 0)// 设置是否显示下方的文字
LODOP.SET_PRINT_STYLEA(0, 'AlignJustify', 2)// 设置条码下方的文字相对于条码本身居中
// LODOP.SET_PRINT_STYLEA(0,"AlignJustify",1);//设置条码下方的文字相对于条码本身居左
// LODOP.SET_PRINT_STYLEA(0,"AlignJustify",3);//设置条码下方的文字相对于条码本身居右
// LODOP.SET_PRINT_STYLEA(0,"GroundColor","#0080FF");//设置条码的背景色
},
// 获取打印机
getPrinter(LODOP, name) {
const listCount = LODOP.GET_PRINTER_COUNT() // 当前打印设备数量
for (let i = 0; i < listCount; i++) {
if (LODOP.GET_PRINTER_NAME(i) === name) {
return name
try {
// 构建打印数据
const orderDetail = this.printData.orderDetail || []
const qrCode = orderDetail[0] ? (orderDetail[0].comboNo + orderDetail[0].executionSeq) : ''
// 转换药品明细数据
const formattedOrderDetail = orderDetail.map(item => ({
orderName: item.orderName,
doseOnceUnit: (item.doseOnce || '') + (item.doseUnit || ''),
flag: item.flag || '',
frequency: item.frequency || '',
usageName: item.usageName || ''
}))
const printData = {
hisNo: this.printData.patient ? this.printData.patient.hisNo : '',
name: this.printData.patient ? this.printData.patient.name : '',
sexName: this.printData.patient ? this.printData.patient.sexName : '',
patientAge: this.printData.patient ? this.printData.patient.patientAge : '',
priority: this.printData.priority || '',
qrCode: qrCode,
orderDetail: formattedOrderDetail,
printDate: moment().format('YYYY-MM-DD HH:mm')
}
// 使用 hiprint 打印
await simplePrint(PRINT_TEMPLATE.INJECT_LABEL, printData, printerName)
} catch (error) {
console.error('输液标签打印失败:', error)
if (this.openMesBox) {
this.openMesBox('6', '打印失败: ' + (error.message || '未知错误'))
}
}
return null
}
}
}

View File

@@ -60,7 +60,8 @@
</div>
</template>
<script>
import {getLodop} from '../../../plugins/print/LodopFuncs'
// 迁移到 hiprint
import { simplePrint, PRINT_TEMPLATE } from '@/utils/printUtils.js'
import useUserStore from '@/store/modules/user'
export default {
@@ -76,18 +77,38 @@ export default {
}
}
},
mounted() {
},
mounted() {},
methods: {
printTest() {
const LODOP = getLodop()
LODOP.PRINT_INIT('')
LODOP.ADD_PRINT_TABLE(100, 35, 700, 900, document.getElementById('div2').innerHTML)
LODOP.ADD_PRINT_HTM(20, 40, '100%', 100, document.getElementById('div1').innerHTML)
LODOP.SET_PRINT_PAGESIZE(0, '148mm', '210mm', '') // 设置横向打印
// LODOP.SET_SHOW_MODE('LANDSCAPE_DEFROTATED', 1);// 横向时的正向显示
LODOP.PREVIEW() // 打印预览
// LODOP.PRINT(); // 直接打印
/**
* 使用 hiprint 执行打印
*/
async printTest() {
try {
// 构建打印数据
const recordData = (this.printData.recordData || []).map(item => ({
moTime: item.moTime ? item.moTime.substring(0, 16) : '',
orderName: item.orderName || '',
flag: item.flag || '',
doseOnceUnit: (item.doseOnce || '') + (item.doseUnit || ''),
freqName: item.freqName || '',
usageName: item.usageName || ''
}))
const printData = {
hospitalName: this.userStore.hospitalName,
encounterLocationName: this.printData.patientInfo ? this.printData.patientInfo.encounterLocationName : '',
name: this.printData.patientInfo ? this.printData.patientInfo.name : '',
sexName: this.printData.patientInfo ? this.printData.patientInfo.sexName : '',
patientAge: this.printData.patientInfo ? this.printData.patientInfo.patientAge : '',
hisNo: this.printData.patientInfo ? this.printData.patientInfo.hisNo : '',
deptName: this.printData.patientInfo ? this.printData.patientInfo.deptName : '',
recordData: recordData
}
// 使用 hiprint 打印(复用医嘱执行单模板)
await simplePrint(PRINT_TEMPLATE.EXE_ORDER_SHEET, printData)
} catch (error) {
console.error('输液执行单打印失败:', error)
}
}
}
}

View File

@@ -5,6 +5,8 @@
<script setup>
import Graphics from '../../../views/inpatientNurse/tprChart/index';
import data from '../../../action/nurseStation/temperatureSheet/datas';
// 迁移到 hiprint
import { previewPrint } from '@/utils/printUtils.js';
const printData = ref({});
const resInfo = ref({});
@@ -75,7 +77,9 @@ function setTime(num) {
}
}
function printPage() {
window.print();
// 使用 hiprint 预览打印
const printDom = document.querySelector('.tpr-chart-container') || document.body;
previewPrint(printDom);
}
// 获取每周数据
async function getData(curWeekInfo) {

View File

@@ -117,7 +117,8 @@
</div>
</template>
<script>
import {getLodop} from '../../../plugins/print/LodopFuncs'
// 迁移到 hiprint
import { simplePrint, PRINT_TEMPLATE } from '@/utils/printUtils.js'
export default {
name: 'VuePrintNb',
@@ -143,37 +144,38 @@ export default {
else if (pressure.bloodPressureShrinkOne === null) return ''
return pressure.bloodPressureShrinkOne + '/' + pressure.bloodPressureDiastoleOne
},
printTriage(printerName) {
/**
* 使用 hiprint 执行打印
* @param {string} printerName 打印机名称
*/
async printTriage(printerName) {
console.log(this.printData, 'printData')
const LODOP = getLodop()
const printer = this.getPrinter(LODOP, printerName)
if (printer === null) {
this.openMesBox('6', '没有找到打印机【' + printerName + '】')
return
}
LODOP.PRINT_INIT()
LODOP.SET_PRINTER_INDEX(printer) // 指定打印机
this.setPrint(LODOP)
LODOP.SET_PRINT_PAGESIZE(0, '100mm', '140mm', '')
// LODOP.PREVIEW(); // 打印预览
LODOP.PRINT() // 直接打印
},
setPrint(LODOP) {
LODOP.ADD_PRINT_HTM(0, 0, '100%', '100%', document.getElementById('div1').innerHTML)
LODOP.ADD_PRINT_BARCODE(40, 100, 100, 100, 'qrcode', this.printData.hisId) // 设置条码位置、宽高、字体、值
LODOP.ADD_PRINT_HTM(200, 0, '100%', '100%', document.getElementById('div2').innerHTML)
LODOP.ADD_PRINT_HTM(230, 10, '100%', '100%', document.getElementById('div3').innerHTML)
LODOP.ADD_PRINT_HTM(295, 10, '100%', '100%', document.getElementById('div4').innerHTML)
},
// 获取打印机
getPrinter(LODOP, name) {
const listCount = LODOP.GET_PRINTER_COUNT() // 当前打印设备数量
for (let i = 0; i < listCount; i++) {
if (LODOP.GET_PRINTER_NAME(i) === name) {
return name
try {
// 构建打印数据
const printData = {
hisId: this.printData.hisId,
triageLevel: this.printData.triageLevel,
dept: this.printData.dept,
patientName: this.printData.patientName,
sex: this.printData.sex,
age: this.printData.age,
temperature: this.printData.observation ? this.printData.observation.temperature : '',
sphygmus: this.printData.observation ? this.printData.observation.sphygmus : '',
breath: this.printData.observation ? this.printData.observation.breath : '',
bloodPressure: this.getBloodPressure(this.printData.observation),
bloodOxygen: this.printData.observation ? this.printData.observation.bloodOxygen : '',
triageTime: this.printData.triageTime,
tel: this.printData.tel,
greenText: this.printData.greenText || ''
}
// 使用 hiprint 打印
await simplePrint(PRINT_TEMPLATE.TRIAGE_TICKET, printData, printerName)
} catch (error) {
console.error('分诊条打印失败:', error)
if (this.openMesBox) {
this.openMesBox('6', '打印失败: ' + (error.message || '未知错误'))
}
}
return null
}
}
}

View File

@@ -27,7 +27,8 @@
</template>
<script>
import QRCode from 'qrcodejs2'
import {getLodop} from '../../../plugins/print/LodopFuncs'
// 迁移到 hiprint
import { simplePrint, PRINT_TEMPLATE } from '@/utils/printUtils.js'
export default {
name: 'WristPrint',
@@ -67,33 +68,31 @@ export default {
clear() {
document.getElementById('qrcode').innerHTML = ''
},
execPrint(preview, printerName) {
const LODOP = getLodop()
const printer = this.getPrinter(LODOP, printerName)
if (printer === null) {
this.openMesBox('6', '没有找到打印机【' + printerName + '】')
return
}
LODOP.PRINT_INIT('')
LODOP.ADD_PRINT_HTM(30, 100, '100%', 100, document.getElementById('div1').innerHTML)
LODOP.ADD_PRINT_HTM(30, 20, '100%', 40, document.getElementById('qrcode').innerHTML)
LODOP.SET_PRINT_PAGESIZE(2, '25mm', '270mm', '') // 设置横向打印
if (preview) {
LODOP.PREVIEW() // 打印预览
return
}
// LODOP.PREVIEW(); // 打印预览
LODOP.PRINT() // 直接打印
},
// 获取打印机
getPrinter(LODOP, name) {
const listCount = LODOP.GET_PRINTER_COUNT() // 当前打印设备数量
for (let i = 0; i < listCount; i++) {
if (LODOP.GET_PRINTER_NAME(i) === name) {
return name
/**
* 使用 hiprint 执行打印
* @param {boolean} preview 是否预览hiprint暂不支持预览参数保留兼容性
* @param {string} printerName 打印机名称
*/
async execPrint(preview, printerName) {
try {
// 构建打印数据
const printData = {
patientName: this.printData.patientName,
hisId: this.printData.hisId,
gender: this.printData.gender ? this.printData.gender.display : '',
dept: this.printData.dept,
bedName: this.printData.bedName,
triageLevel: this.printData.triageLevel,
checkInWardTime: this.printData.checkInWardTime
}
// 使用 hiprint 打印
await simplePrint(PRINT_TEMPLATE.WRIST_BAND, printData, printerName)
} catch (error) {
console.error('腕带打印失败:', error)
if (this.openMesBox) {
this.openMesBox('6', '打印失败: ' + (error.message || '未知错误'))
}
}
return null
}
}
}

View File

@@ -9,7 +9,6 @@
@close="cancel"
@opened="
() => {
console.log(123);
traceNoTempRef.focus();
}
"

File diff suppressed because one or more lines are too long

View File

@@ -24,18 +24,18 @@
{"options": {"left": 10, "top": 50, "height": 10, "width": 80, "title": "病人类型:", "fontSize": 9, "field": "personType"}, "printElementType": {"title": "文本", "type": "text"}},
{"options": {"left": 100, "top": 50, "height": 10, "width": 120, "title": "门诊号:", "fontSize": 9, "field": "busNo"}, "printElementType": {"title": "文本", "type": "text"}},
{"options": {"left": 10, "top": 62, "height": 10, "width": 150, "title": "收费时间:", "fontSize": 9, "field": "chargeTime"}, "printElementType": {"title": "文本", "type": "text"}},
{"options": {"left": 0, "top": 76, "height": 2, "width": 226.5, "borderWidth": 1, "borderStyle": "solid", "borderColor": "#000000"}, "printElementType": {"title": "线", "type": "line"}},
{"options": {"left": 0, "top": 76, "height": 2, "width": 226.5, "borderWidth": 1, "borderStyle": "solid", "borderColor": "#000000"}, "printElementType": {"title": "线", "type": "hline"}},
{"options": {"left": 10, "top": 82, "height": 10, "width": 80, "title": "收费项目", "fontSize": 9, "fontWeight": "bold"}, "printElementType": {"title": "文本", "type": "text"}},
{"options": {"left": 100, "top": 82, "height": 10, "width": 40, "title": "数量", "fontSize": 9, "fontWeight": "bold", "textAlign": "center"}, "printElementType": {"title": "文本", "type": "text"}},
{"options": {"left": 145, "top": 82, "height": 10, "width": 80, "title": "金额", "fontSize": 9, "fontWeight": "bold", "textAlign": "right"}, "printElementType": {"title": "文本", "type": "text"}},
{"options": {"left": 0, "top": 94, "height": 40, "width": 226.5, "field": "chargeItem", "textAlign": "center", "fontSize": 8, "columns": [[{"title": "收费项目", "width": 95, "field": "chargeItemName"}, {"title": "数量", "width": 40, "field": "quantityValue"}, {"title": "金额", "width": 50, "field": "totalPrice"}]]}, "printElementType": {"title": "表格", "type": "table"}},
{"options": {"left": 0, "top": 136, "height": 2, "width": 226.5, "borderWidth": 1, "borderStyle": "solid", "borderColor": "#000000"}, "printElementType": {"title": "线", "type": "line"}},
{"options": {"left": 0, "top": 136, "height": 2, "width": 226.5, "borderWidth": 1, "borderStyle": "solid", "borderColor": "#000000"}, "printElementType": {"title": "线", "type": "hline"}},
{"options": {"left": 10, "top": 142, "height": 10, "width": 80, "title": "合计:", "fontSize": 9, "field": "FULAMT_OWNPAY_AMT"}, "printElementType": {"title": "文本", "type": "text"}},
{"options": {"left": 100, "top": 142, "height": 10, "width": 120, "title": "现金:", "fontSize": 9, "textAlign": "right", "field": "SELF_CASH_PAY"}, "printElementType": {"title": "文本", "type": "text"}},
{"options": {"left": 10, "top": 154, "height": 10, "width": 100, "title": "微信:", "fontSize": 9, "field": "SELF_VX_PAY"}, "printElementType": {"title": "文本", "type": "text"}},
{"options": {"left": 120, "top": 154, "height": 10, "width": 100, "title": "支付宝:", "fontSize": 9, "textAlign": "right", "field": "SELF_ALI_PAY"}, "printElementType": {"title": "文本", "type": "text"}},
{"options": {"left": 10, "top": 166, "height": 10, "width": 150, "title": "医保账户:", "fontSize": 9, "field": "SELF_YB_ZH_PAY"}, "printElementType": {"title": "文本", "type": "text"}},
{"options": {"left": 0, "top": 180, "height": 2, "width": 226.5, "borderWidth": 1, "borderStyle": "dashed", "borderColor": "#CCCCCC"}, "printElementType": {"title": "线", "type": "line"}},
{"options": {"left": 0, "top": 180, "height": 2, "width": 226.5, "borderWidth": 1, "borderStyle": "dashed", "borderColor": "#CCCCCC"}, "printElementType": {"title": "线", "type": "hline"}},
{"options": {"left": 0, "top": 186, "height": 12, "width": 226.5, "title": "门诊手术计费流程", "fontWeight": "bold", "textAlign": "center", "fontSize": 10, "color": "#0066CC"}, "printElementType": {"title": "文本", "type": "text"}},
{"options": {"left": 10, "top": 200, "height": 85, "width": 206.5, "field": "surgeryFlowImage", "fit": "contain"}, "printElementType": {"title": "图片", "type": "image"}},
{"options": {"left": 0, "top": 288, "height": 10, "width": 226.5, "title": "请妥善保管,有疑问请咨询服务台", "fontSize": 8, "textAlign": "center", "color": "#666666"}, "printElementType": {"title": "文本", "type": "text"}}

View File

@@ -1,4 +1,4 @@
处方签 Prescription.json
1处方签 Prescription.json
处置单 Disposal.json
门诊日结 DailyOutpatientSettlement.json
门诊挂号 OutpatientRegistration.json