陈少旭 1 年間 前
コミット
2f5caf65e3
共有2 個のファイルを変更した18 個の追加8 個の削除を含む
  1. 0 4
      src/xt_pages/outpatientDoctorStation/components/deskPrescription.vue
  2. 18 4
      src/xt_pages/outpatientTool/detailPrint.vue

+ 0 - 4
src/xt_pages/outpatientDoctorStation/components/deskPrescription.vue ファイルの表示

@@ -501,12 +501,8 @@
501 501
       <save-template ref='saveTemplate' v-on:save_template="saveTemplate"></save-template>
502 502
       <next-or-last-prescription ref='next_or_last_prescription' v-on:save="setValue"
503 503
                                  v-on:cancel="cancel"></next-or-last-prescription>
504
-
505
-
506 504
       <!--<next-or-last-prescription ref='next_or_last_prescription' v-on:save="setValue" v-on:cancel="cancel"></next-or-last-prescription>-->
507 505
       <call-prescription ref='call_prescription' v-on:call="call" v-on:call-cancel="callCancel"></call-prescription>
508
-
509
-
510 506
   </div>
511 507
 </template>
512 508
 

+ 18 - 4
src/xt_pages/outpatientTool/detailPrint.vue ファイルの表示

@@ -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;