完成99需求

This commit is contained in:
chenjinyang
2026-02-06 17:12:29 +08:00
parent 8d45cfe9db
commit d34a314f02
7 changed files with 170 additions and 29 deletions

View File

@@ -757,6 +757,11 @@ function handleSaveSign(row, index) {
row.dbOpType = row.requestId ? '2' : '1';
row.minUnitQuantity = row.quantity * row.partPercent;
row.categoryEnum = row.adviceType
// 如果是手术计费,设置生成来源和来源业务单据号
if (props.patientInfo.sourceBillNo) {
row.generateSourceEnum = 6; // 手术计费
row.sourceBillNo = props.patientInfo.sourceBillNo;
}
console.log('row', row)
savePrescription({ adviceSaveList: [row] }).then((res) => {
if (res.code === 200) {