Browse Source

新功能

test_user 2 years ago
parent
commit
19574ad6d8

+ 1 - 0
src/xt_pages/outpatientCharges/batchStatementPrint.vue View File

@@ -338,6 +338,7 @@ export default {
338 338
 
339 339
           }
340 340
           this.info = orders
341
+          console.log( this.info )
341 342
 
342 343
 
343 344
           // var that = this;

+ 10 - 8
src/xt_pages/outpatientCharges/statementTemplate/batchPrint.vue View File

@@ -32,7 +32,7 @@
32 32
               </div>
33 33
               <div>费别:<span style="display:inline-block;min-width:80px;">医保</span>
34 34
               </div>
35
-              <div>收费日期:<span style="display:inline-block;">{{infos.order.setl_time ? infos.order.setl_time.split(' ') : ''}}</span>
35
+              <div>收费日期:<span style="display:inline-block;">{{infos.order.setl_time ? infos.order.setl_time.split(' ')[0] : ''}}</span>
36 36
               </div>
37 37
             </div>
38 38
             <div style="float:right">金额单位:元</div>
@@ -121,22 +121,24 @@
121 121
                     </div>
122 122
                   </div>
123 123
                 </td>
124
-                <td>合计: {{infos.order.medfee_sumamt}}元</td>
124
+                <td>合计: {{infos.medfee_sumamt}}元</td>
125 125
               </tr>
126 126
               <tr>
127 127
                 <td colspan="7">
128 128
                   <div style="display:flex;flez-wrap:wrap;margin-bottom:10px;font-size:16px;">
129
-                    <div style="width:33%;">医疗费总额:{{infos.order.medfee_sumamt}}元</div>
130
-                    <div style="width:33%;">基金支付金额:{{infos.order.hifp_pay}}元</div>
131
-                    <div style="width:33%;">个人账户支付金额:{{infos.order.acct_pay}}元</div>
129
+                    <div style="width:33%;">医疗费总额:{{infos.order.medfee_sumamt?infos.order.medfee_sumamt:""}}元</div>
130
+                    <div style="width:33%;">基金支付金额:{{infos.order.fund_pay_sumamt?infos.order.fund_pay_sumamt:""}}元</div>
131
+                    <div style="width:33%;">个人账户支付金额:{{infos.order.acct_pay?infos.order.acct_pay:""}}元</div>
132 132
 
133 133
                   </div>
134 134
                   <div style="display:flex;flez-wrap:wrap;font-size:16px;">
135
-                    <div style="width:33%;">医疗救助基金金额:{{infos.order.maf_pay}}元</div>
136
-
137
-                    <div style="width:33%;">个人支付金额:{{ infos.order.psn_pay }}元</div>
135
+                    <div style="width:33%;">医疗救助基金金额:{{infos.order.maf_pay?infos.order.maf_pay:""}}元</div>
136
+                    <div style="width:33%;">个人支付金额:{{ infos.order.psn_cash_pay}}元</div>
138 137
                     <div style="width:33%;">个人账户金额:{{infos.order.balc}}元</div>
139 138
                   </div>
139
+                  <div style="display:flex;flez-wrap:wrap;font-size:16px;margin-top: 10px">
140
+                    <div style="width:33%;">基金统筹支付金额:{{infos.order.hifp_pay?infos.order.hifp_pay:""}}元</div>
141
+                  </div>
140 142
                 </td>
141 143
                 <td style="font-size:16px;">合计:{{infos.order.medfee_sumamt}}元</td>
142 144
               </tr>

+ 6 - 4
src/xt_pages/outpatientCharges/statementTemplate/printThree.vue View File

@@ -123,16 +123,18 @@
123 123
                         <td colspan="7">
124 124
                             <div style="display:flex;flez-wrap:wrap;margin-bottom:10px;font-size:16px;">
125 125
                                 <div style="width:33%;">医疗费总额:{{info.medfee_sumamt?info.medfee_sumamt:info.new_order.medfee_sumamt}}元</div>
126
-                                <div style="width:33%;">基金支付金额:{{info.hifp_pay?info.hifp_pay:info.new_order.hifp_pay}}元</div>
126
+                                <div style="width:33%;">基金支付金额:{{info.fund_pay_sumamt?info.fund_pay_sumamt:info.new_order.fund_pay_sumamt}}元</div>
127 127
                                 <div style="width:33%;">个人账户支付金额:{{info.acct_pay?info.acct_pay:info.new_order.acct_pay}}元</div>
128 128
 
129 129
                             </div>
130 130
                             <div style="display:flex;flez-wrap:wrap;font-size:16px;">
131
-                              <div style="width:33%;">医疗救助基金金额:{{info.maf_pay?info.maf_pay:info.new_order.maf_pay}}元</div>
132
-
133
-                              <div style="width:33%;">个人支付金额:{{ info.new_order.psn_cash_pay}}元</div>
131
+                                <div style="width:33%;">医疗救助基金金额:{{info.maf_pay?info.maf_pay:info.new_order.maf_pay}}元</div>
132
+                                <div style="width:33%;">个人支付金额:{{ info.new_order.psn_cash_pay}}元</div>
134 133
                                 <div style="width:33%;">个人账户金额:{{info.new_order.balc}}元</div>
135 134
                             </div>
135
+                          <div style="display:flex;flez-wrap:wrap;font-size:16px;margin-top: 10px">
136
+                            <div style="width:33%;">基金统筹支付金额:{{info.hifp_pay?info.hifp_pay:info.new_order.hifp_pay}}元</div>
137
+                          </div>
136 138
                         </td>
137 139
                         <td style="font-size:16px;">合计:{{info.new_order.medfee_sumamt}}元</td>
138 140
                     </tr>

+ 1 - 1
src/xt_pages/outpatientCharges/summary.vue View File

@@ -107,7 +107,7 @@
107 107
                       <el-button slot="reference" style="margin:0 10px;" type="primary" size="small">打印</el-button>
108 108
 
109 109
                     </el-popover> -->
110
-          <el-button  v-if="$store.getters.xt_user.org_id == 10138 || $store.getters.xt_user.org_id == 10278" size="small" type="primary" @click="batch_print_settlte">批量打印结算单
110
+          <el-button  v-if="$store.getters.xt_user.org_id == 10138 || $store.getters.xt_user.org_id == 10278 || $store.getters.xt_user.org_id == 0" size="small" type="primary" @click="batch_print_settlte">批量打印结算单
111 111
           </el-button>
112 112
           <el-button size="small" type="primary" @click="export_detail"
113 113
           >报表下载