yq1 1 年間 前
コミット
e2c1b834b8
共有2 個のファイルを変更した14 個の追加15 個の削除を含む
  1. 12 12
      src/xt_pages/outpatientCharges/invoiceTemplate/printFive.vue
  2. 2 3
      src/xt_pages/outpatientDoctorStation/components/deskPrescription.vue

+ 12 - 12
src/xt_pages/outpatientCharges/invoiceTemplate/printFive.vue ファイルの表示

@@ -2,6 +2,7 @@
2 2
     <div id='invoice-print'>
3 3
         <div v-for='(i,index) in pageArr.length' :key="index">
4 4
             <div :style="{position: 'absolute',top:(10 + (index * 400))  + 'px',left:70+ 'px',}">{{ list.order_number }}</div>
5
+            <div :style="{position: 'absolute',top:(10 + (index * 400))  + 'px',left:400+ 'px',}">{{list.order.fa_piao_number}}</div>
5 6
             <div style="display:flex;justify-content: space-between;">
6 7
                 <div :style="{position: 'absolute',top:(40 + (index * 400))  + 'px',left:80+ 'px',}"> {{ paramsObj.name }}</div>
7 8
             </div>
@@ -44,23 +45,22 @@
44 45
             <div :style="{position: 'absolute',top:(315 + (index * 400))  + 'px',left:460+ 'px'}">{{ list.medfee_sumamt }}</div>
45 46
             <div v-if="index == pageArr.length - 1" :style="{position: 'absolute',top:(330 + (index * 400))  + 'px',left:110+ 'px',width:100 + '%'}">
46 47
                 <div style="display:flex;">
47
-                  <div style="width:150px">医疗总费用:{{ list.order.medfee_sumamt }}</div>
48
-                  <div style="width:150px">基金支付总额:{{ list.order.fund_pay_sumamt }}</div>
49
-                  <div style="width:150px">统筹支出:{{ list.order.hifp_pay }}</div>
50
-                  <div style="width:150px">大病支出:{{list.order.hifmi_pay}}</div>
48
+                  <div style="width:170px">医疗总费用:{{ list.order.medfee_sumamt }}</div>
49
+                  <div style="width:170px">基金支付总额:{{ list.order.fund_pay_sumamt }}</div>
50
+                  <div style="width:170px">统筹支出:{{ list.order.hifp_pay }}</div>
51
+                  <div style="width:170px">大病支出:{{list.order.hifmi_pay}}</div>
51 52
 
52 53
                 </div>
53 54
                 <div style="display:flex;">
54
-                  <div style="width:150px">个人账户支付:{{ list.order.acct_pay }}</div>
55
-                  <div style="width:150px">现金支出:{{ list.order.psn_cash_pay }}</div>
56
-                  <div style="width:150px">本次账户:0</div>
57
-                  <div style="width:150px">上次账户:0</div>
55
+                  <div style="width:170px">个人账户支付:{{ list.order.acct_pay }}</div>
56
+                  <div style="width:170px">现金支出:{{ list.order.psn_cash_pay }}</div>
57
+                  <div style="width:170px">本次账户:0</div>
58
+                  <div style="width:170px">上次账户:0</div>
58 59
                 </div>
59 60
               <div style="display:flex;">
60
-                <div style="width:150px">账户余额:{{ list.order.balc }}</div>
61
-                <div style="width:150px">其他支出:{{ list.order.oth_pay }}</div>
62
-                <div style="width:150px">大病补充保险支出:0</div>
63
-                <div style="width:150px">民政支出:0</div>
61
+                <div style="width:170px">账户余额:{{ list.order.balc }}</div>
62
+                <div style="width:170px">其他支出:{{ list.order.oth_pay }}</div>
63
+                <div style="width:170px">民政支出:0</div>
64 64
               </div>
65 65
               <div style="display:flex;">
66 66
                 <div style="width:220px">医疗救助基金支出:{{ list.order.maf_pay }}</div>

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

@@ -1631,10 +1631,9 @@ export default {
1631 1631
       } else {
1632 1632
         let arr = []
1633 1633
         for (let i = 0; i < this.allProject.length; i++) {
1634
-
1635 1634
             // console.log('4444',this.tabProject[i].first_letter.indexOf(this.search_project_keyword) != -1)
1636
-
1637
-            if (this.allProject[i].project_name.indexOf(this.search_project_keyword) != -1) {
1635
+            if (this.allProject[i].project_name.indexOf(this.search_project_keyword) != -1 ||
1636
+            this.allProject[i].first_letter.indexOf(this.search_project_keyword) !=-1) {
1638 1637
               arr = arr.concat(this.allProject[i])
1639 1638
             }
1640 1639