|
@@ -985,6 +985,7 @@ function teller(inpatientNo, admissTimes) {
|
|
|
$("#amountMoneyRefund").text(res.data.total_charge == null ? 0.00 : res.data.total_charge.toFixed(2));
|
|
|
$("#depositRefund").text(res.data.deposit == null ? 0.00 : res.data.deposit.toFixed(2));
|
|
|
$("#ybjzjeRefund").text(res.data.ybjzje == null ? 0.00 : res.data.ybjzje.toFixed(2));
|
|
|
+ $("#acctPayRefund").text(res.data.acct_pay == null ? 0.00 : res.data.acct_pay.toFixed(2));
|
|
|
$("#settleRefund").text(res.data.settle == null ? 0.00 : res.data.settle.toFixed(2));
|
|
|
var refundList = res.refundList;
|
|
|
if (refundList != null && refundList.length > 0) {
|
|
@@ -1014,6 +1015,7 @@ function teller(inpatientNo, admissTimes) {
|
|
|
$("#amountMoneyConfirm").text(res.data.total_charge == null ? 0.00 : res.data.total_charge.toFixed(2));
|
|
|
$("#depositConfirm").text(res.data.deposit == null ? 0.00 : res.data.deposit.toFixed(2));
|
|
|
$("#ybjzjeConfirm").text(res.data.ybjzje == null ? 0.00 : res.data.ybjzje.toFixed(2));
|
|
|
+ $("#acctPayConfirm").text(res.data.acct_pay == null ? 0.00 : res.data.acct_pay.toFixed(2));
|
|
|
$("#settleConfirm").text(res.data.settle == null ? 0.00 : Math.abs(res.data.settle.toFixed(2)));
|
|
|
$("#cash").val(res.data.settle == null ? 0.00 : Math.abs(res.data.settle.toFixed(2)));
|
|
|
}
|
|
@@ -1345,6 +1347,7 @@ function saveTeller(settleType, refundType) {
|
|
|
return;
|
|
|
}
|
|
|
if (res.code == 0 || res.code == -2) {
|
|
|
+ console.log('打印发票')
|
|
|
prn1PrintHand(inpatientNo, admissTimes, null);
|
|
|
successMesage(res);
|
|
|
$("#confirmFeeModal").modal("hide");
|