|
|
@ -1483,12 +1483,14 @@ export default { |
|
|
|
|
|
|
|
|
// 新增保存时,提示是否打条码 |
|
|
// 新增保存时,提示是否打条码 |
|
|
if (!body.id) { |
|
|
if (!body.id) { |
|
|
this.$confirm("是否打印 检验 与 Pacs 条码?", "提示", { |
|
|
|
|
|
|
|
|
this.$confirm("是否打印 指引单、检验条码及 Pacs 条码?", "提示", { |
|
|
confirmButtonText: "是", |
|
|
confirmButtonText: "是", |
|
|
cancelButtonText: "否", |
|
|
cancelButtonText: "否", |
|
|
type: "warning", |
|
|
type: "warning", |
|
|
}) |
|
|
}) |
|
|
.then(() => { |
|
|
.then(() => { |
|
|
|
|
|
this.guidePrint('0001', false) |
|
|
|
|
|
|
|
|
this.labelPrint(false) |
|
|
this.labelPrint(false) |
|
|
}) |
|
|
}) |
|
|
.catch((err) => { |
|
|
.catch((err) => { |
|
|
@ -1930,10 +1932,10 @@ export default { |
|
|
let chargeMoney = Number(0) |
|
|
let chargeMoney = Number(0) |
|
|
//支付方式,比如是0自费、2免费、1单位支付 |
|
|
//支付方式,比如是0自费、2免费、1单位支付 |
|
|
this.dataTransOpts.tableM.register_check_asbitem.forEach(e => { |
|
|
this.dataTransOpts.tableM.register_check_asbitem.forEach(e => { |
|
|
if (e.payTypeFlag == '0' && e.isCharge == 'N') chargeMoney += Number(e.total) |
|
|
|
|
|
|
|
|
if (e.payTypeFlag == '0') chargeMoney += Number(e.total) |
|
|
}); |
|
|
}); |
|
|
if (chargeMoney == 0) { |
|
|
if (chargeMoney == 0) { |
|
|
this.$message.warning({ showClose: true, message: '没有可收费的记录!' }) |
|
|
|
|
|
|
|
|
this.$message.warning({ showClose: true, message: '没有可收费或退费的记录!' }) |
|
|
return |
|
|
return |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
@ -1964,10 +1966,10 @@ export default { |
|
|
let chargeMoney = Number(0) |
|
|
let chargeMoney = Number(0) |
|
|
//支付方式,比如是0自费、2免费、1单位支付 |
|
|
//支付方式,比如是0自费、2免费、1单位支付 |
|
|
this.dataTransOpts.tableM.register_check_asbitem.forEach(e => { |
|
|
this.dataTransOpts.tableM.register_check_asbitem.forEach(e => { |
|
|
if (e.payTypeFlag == '0' && e.isCharge == 'N') chargeMoney += Number(e.total) |
|
|
|
|
|
|
|
|
if (e.payTypeFlag == '0') chargeMoney += Number(e.total) |
|
|
}); |
|
|
}); |
|
|
if (chargeMoney == 0) { |
|
|
if (chargeMoney == 0) { |
|
|
this.$message.warning({ showClose: true, message: '没有可收费的记录!' }) |
|
|
|
|
|
|
|
|
this.$message.warning({ showClose: true, message: '没有可收费或退费的记录!' }) |
|
|
return |
|
|
return |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|