陈少旭 преди 1 година
родител
ревизия
1d4933e12b
променени са 2 файла, в които са добавени 13 реда и са изтрити 7 реда
  1. 6 6
      src/xt_pages/outpatientCharges/invoiceTemplate/printfifteen.vue
  2. 7 1
      src/xt_pages/outpatientDoctorStation/doctorDesk.vue

+ 6 - 6
src/xt_pages/outpatientCharges/invoiceTemplate/printfifteen.vue Целия файл

@@ -30,12 +30,12 @@
30 30
             <div style="position: absolute;top:160px;left:80px">中成药 {{ list.chineseTraditionalMedicineCostTotal }}</div>
31 31
             <!-- <div style="position: absolute;top:170px;left:80px"></div> -->
32 32
             <div style="position: absolute;top:160px;left:220px">材料费 {{ list.materialCostTotal }}</div>
33
-           
34
-            <div style="position: absolute;top:200px;left:80px">医疗费总金额: </div>
35
-            <div style="position: absolute;top:200px;left:250px">个人现金支付: </div>
36
-            <div style="position: absolute;top:220px;left:80px">全自费金额: </div>
37
-            <div style="position: absolute;top:220px;left:250px">基金支付总额: </div>
38
-            <div style="position: absolute;top:240px;left:80px">个人账户支付: </div>
33
+
34
+            <div style="position: absolute;top:200px;left:80px">医疗费总金额: {{list.order.medfee_sumamt?list.order.medfee_sumamt:""}}</div>
35
+            <div style="position: absolute;top:200px;left:250px">个人现金支付:{{list.order.psn_cash_pay?list.order.psn_cash_pay:""}}</div>
36
+            <div style="position: absolute;top:220px;left:80px">全自费金额: {{list.order.fulamt_ownpay_amt?list.order.fulamt_ownpay_amt:""}}</div>
37
+            <div style="position: absolute;top:220px;left:250px">基金支付总额: {{list.order.fund_pay_sumamt?list.order.fund_pay_sumamt:""}}</div>
38
+            <div style="position: absolute;top:240px;left:80px">个人账户支付: {{list.order.acct_pay?list.order.acct_pay:""}}</div>
39 39
       <!-- <div style="position: absolute;top:300px;left:80px">医疗费总金额 {{ list.order.medfee_sumamt }}</div>
40 40
         <div style="position: absolute;top:300px;left:300px">个人自费 {{ list.psn_cash_money }}</div> -->
41 41
         <div>

+ 7 - 1
src/xt_pages/outpatientDoctorStation/doctorDesk.vue Целия файл

@@ -4301,7 +4301,7 @@ export default {
4301 4301
                     if (this.org_id != 10206) {
4302 4302
                       obj.med_type = 14
4303 4303
                     }else{
4304
-                      obj.med_type = 1
4304
+                      obj.med_type = "1"
4305 4305
                     }
4306 4306
 
4307 4307
                     this.prescriptions.push(obj)
@@ -4947,6 +4947,12 @@ export default {
4947 4947
                         if (obj.med_type == 0 || obj.med_type == '') {
4948 4948
                           obj.med_type = 14
4949 4949
 
4950
+                        }
4951
+                      }else{
4952
+                        obj.med_type = parseInt(prescription.med_type)
4953
+                        if (obj.med_type == 0 || obj.med_type == '') {
4954
+                          obj.med_type = "1"
4955
+
4950 4956
                         }
4951 4957
                       }
4952 4958
                       this.prescriptions.push(obj)