|
@@ -39,11 +39,17 @@
|
39
|
39
|
</tr>
|
40
|
40
|
<tr>
|
41
|
41
|
<td>总费用:{{ getAllPice() }}</td>
|
42
|
|
- <td>个人支付:
|
43
|
|
- {{getActPay()}}
|
|
42
|
+ <td>个人支付金额:
|
|
43
|
+ {{getPsnCashPay()}}
|
44
|
44
|
<!-- <span v-if="his_record_patient.balance_accounts_type == 2">{{ getAllPice() }}</span>
|
45
|
45
|
<span v-if="his_record_patient.balance_accounts_type != 2">{{ getActPay() }}</span> -->
|
46
|
46
|
</td>
|
|
47
|
+
|
|
48
|
+ <td>个人账户支付金额:
|
|
49
|
+ {{getActPay()}}
|
|
50
|
+ <!-- <span v-if="his_record_patient.balance_accounts_type == 2">{{ getAllPice() }}</span>
|
|
51
|
+ <span v-if="his_record_patient.balance_accounts_type != 2">{{ getActPay() }}</span> -->
|
|
52
|
+ </td>
|
47
|
53
|
<td>基金支付记账:{{ getFundPaySumamt() }}</td>
|
48
|
54
|
<td>补充医疗支付记账:{{ getHifesPay() }}</td>
|
49
|
55
|
</tr>
|
|
@@ -414,7 +420,7 @@ export default {
|
414
|
420
|
}
|
415
|
421
|
return total_price;
|
416
|
422
|
},
|
417
|
|
- getActPay() {
|
|
423
|
+ getPsnCashPay() {
|
418
|
424
|
var act_pay = 0;
|
419
|
425
|
for (let i = 0; i < this.list.length; i++) {
|
420
|
426
|
for (let j = 0; j < this.list[i].orders.length; j++) {
|
|
@@ -428,6 +434,14 @@ export default {
|
428
|
434
|
}
|
429
|
435
|
|
430
|
436
|
return act_pay.toFixed(2);
|
|
437
|
+ },getActPay() {
|
|
438
|
+ var act_pay = 0;
|
|
439
|
+ for (let i = 0; i < this.list.length; i++) {
|
|
440
|
+ for (let j = 0; j < this.list[i].orders.length; j++) {
|
|
441
|
+ act_pay = act_pay + this.list[i].orders[j].acct_pay
|
|
442
|
+ }
|
|
443
|
+ }
|
|
444
|
+ return act_pay.toFixed(2);
|
431
|
445
|
},
|
432
|
446
|
getFundPaySumamt() {
|
433
|
447
|
var fund_pay_sumamt = 0;
|
|
@@ -436,7 +450,7 @@ export default {
|
436
|
450
|
fund_pay_sumamt += this.list[i].orders[j].fund_pay_sumamt;
|
437
|
451
|
}
|
438
|
452
|
}
|
439
|
|
- return fund_pay_sumamt;
|
|
453
|
+ return fund_pay_sumamt.toFixed(2);
|
440
|
454
|
},
|
441
|
455
|
getHifesPay() {
|
442
|
456
|
var hifes_pay = 0;
|