陈少旭 6 maanden geleden
bovenliggende
commit
86cfff1409

+ 10 - 0
src/api/fapiao.js Bestand weergeven

@@ -64,4 +64,14 @@ export function GetQRCode(params){
64 64
 }
65 65
 
66 66
 
67
+export function getFaPiaoData(params){
68
+  return request({
69
+    url:"/api/newfapiao/get",
70
+    methods:"get",
71
+    params:params
72
+  })
73
+}
74
+
75
+
76
+
67 77
 

+ 136 - 0
src/xt_pages/eleFaPiao/newInvoicePrint.vue Bestand weergeven

@@ -0,0 +1,136 @@
1
+<template>
2
+  <div>
3
+    <template>
4
+      <el-button
5
+        style="position:fixed;right:25px;z-index:999"
6
+        size="small"
7
+        @click="printThisPage"
8
+        type="primary"
9
+      >开票</el-button>
10
+    </template>
11
+    <!-- 新发票 -->
12
+    <div class="app-container" style="padding-top:20px;">
13
+      <div class='dialysisPage'>
14
+<!--        <printseventeen :paramsObj="paramsObjtwo"></printseventeen>-->
15
+        <new-print-one :paramsObj="paramsObjtwo"></new-print-one>
16
+      </div>
17
+    </div>
18
+  </div>
19
+</template>
20
+
21
+<script>
22
+import NewPrintOne from './newPrintOne.vue'
23
+
24
+export default {
25
+  name: "invoicePrint",
26
+  components: {
27
+    NewPrintOne,
28
+  },
29
+  props:{
30
+    paramsObj:Object
31
+  },
32
+  data() {
33
+    return {
34
+      childResponse: {},
35
+      org_id:'',
36
+      showclick:false,
37
+      paramsObjtwo:{},
38
+    };
39
+  },
40
+  methods: {
41
+    getAdminUser(id) {
42
+      if (id == 0) {
43
+        return "";
44
+      }
45
+      if (id == undefined) {
46
+        return "";
47
+      }
48
+      for (let i = 0; i < this.adminUser.length; i++) {
49
+        if (this.adminUser[i].id == id) {
50
+          return this.adminUser[i].name;
51
+        }
52
+      }
53
+    },
54
+    getTime(value, temp) {
55
+      if (value == 0) {
56
+        return "";
57
+      }
58
+      if (value != undefined) {
59
+        return uParseTime(value, temp);
60
+      }
61
+      return "";
62
+    },
63
+    printThisPage() {
64
+
65
+
66
+    },
67
+  },
68
+  created() {
69
+    this.org_id = this.$store.getters.xt_user.org_id
70
+  },
71
+  watch:{
72
+    paramsObj:{//深度监听,可监听到对象、数组的变化
73
+      handler(val, oldVal){
74
+        this.paramsObjtwo = val
75
+
76
+      },
77
+      deep:true
78
+    }
79
+  }
80
+};
81
+</script>
82
+
83
+<style lang="scss" scoped>
84
+.printTitle{
85
+  font-size: 22px;
86
+  text-align: center;
87
+  font-weight: bold;
88
+}
89
+.infoMain{
90
+  display: flex;
91
+  flex-wrap: wrap;
92
+  border-bottom: 2px solid #000;
93
+  padding:0 10px;
94
+}
95
+.infoMain .infoP{
96
+  width: 33%;
97
+  line-height: 24px;
98
+}
99
+.prescriptionBox{
100
+  padding:0 10px;
101
+  height:600px;
102
+}
103
+.Rp{
104
+  font-size: 22px;
105
+  font-weight: bold;
106
+}
107
+.drugsBox{
108
+  padding-left: 40px;
109
+  margin-bottom: 10px;
110
+}
111
+.drugsBox p{
112
+  line-height: 30px;
113
+}
114
+.drugsOne{
115
+  line-height: 24px;
116
+}
117
+.drugsOne span{
118
+  margin-right: 20px;
119
+}
120
+.doctorBox{
121
+  display: flex;
122
+  justify-content: space-between;
123
+  padding:0 10px;
124
+  line-height: 24px;
125
+  border-bottom: 2px solid #000;
126
+}
127
+.actionBar{
128
+  display: flex;
129
+  justify-content: space-between;
130
+  line-height: 24px;
131
+  padding:0 10px;
132
+}
133
+.actionBar p{
134
+  width:150px;
135
+}
136
+</style>

+ 263 - 0
src/xt_pages/eleFaPiao/newPrintOne.vue Bestand weergeven

@@ -0,0 +1,263 @@
1
+<template>
2
+  <div id='invoice-print' style="position: relative;">
3
+    <div style="display: flex;text-align: center;">
4
+      <div style="width: 25%;">交款人:{{list.patient.name}}</div>
5
+      <div style="width: 50%;">交款人统一社会信用代码:{{list.patient.id_card_no}}</div>
6
+      <div style="width: 25%;">开票日期:{{now}}</div>
7
+    </div>
8
+    <div style="border: 1px solid black;border-bottom: 0px;padding: 5px 0;">
9
+      <div style="display: flex; text-align: center;border-bottom: 1px solid balck;">
10
+        <div style="flex: 1;">项目名称</div>
11
+        <div style="flex: 1;">金额(元)</div>
12
+        <div style="flex: 1;">备注</div>
13
+        <div style="flex: 1;">项目名称</div>
14
+        <div style="flex: 1;">金额(元)</div>
15
+        <div style="flex: 1;">备注</div>
16
+        <div style="flex: 1;">项目名称</div>
17
+        <div style="flex: 1;">金额(元)</div>
18
+        <div style="flex: 1;">备注</div>
19
+      </div>
20
+
21
+    </div>
22
+    <div style="border: 1px solid black;border-bottom: 0;height: 150px;">
23
+      <div style="display: flex; text-align: center;padding: 5px 0;">
24
+        <div style="flex: 1;">西药费</div>
25
+        <div style="flex: 1;">{{list.westernMedicineCostTotal}}</div>
26
+        <div style="flex: 1;"></div>
27
+        <div style="flex: 1;">中成药</div>
28
+        <div style="flex: 1;">{{list.chineseTraditionalMedicineCostTotal}}</div>
29
+        <div style="flex: 1;"></div>
30
+        <div style="flex: 1;">治疗费</div>
31
+        <div style="flex: 1;">{{list.treatCostTotal}}</div>
32
+        <div style="flex: 1;"></div>
33
+      </div>
34
+      <div style="display: flex; text-align: center;padding: 5px 0;">
35
+        <div style="flex: 1;">检查费</div>
36
+        <div style="flex: 1;">{{list.checkCostTotal}}</div>
37
+        <div style="flex: 1;"></div>
38
+        <div style="flex: 1;">化验费</div>
39
+        <div style="flex: 1;">{{list.laboratoryCostTotal}}</div>
40
+        <div style="flex: 1;"></div>
41
+        <div style="flex: 1;">床位费</div>
42
+        <div style="flex: 1;">{{list.bedCostTotal}}</div>
43
+        <div style="flex: 1;"></div>
44
+      </div>
45
+      <div style="display: flex; text-align: center;padding: 5px 0;">
46
+        <div style="flex: 1;">护理费</div>
47
+        <div style="flex: 1;">{{list.hiliCostTotal}}</div>
48
+        <div style="flex: 1;"></div>
49
+        <div style="flex: 1;">诊察费</div>
50
+        <div style="flex: 1;">{{list.zhenChaCostTotal}}</div>
51
+        <div style="flex: 1;"></div>
52
+        <div style="flex: 1;">材料费</div>
53
+        <div style="flex: 1;">{{list.materialCostTotal}}</div>
54
+        <div style="flex: 1;"></div>
55
+      </div>
56
+    </div>
57
+    <div style="border: 1px solid black;border-bottom: 0;padding: 5px;">
58
+      <div style="display: inline-block;width: 49%;margin-bottom: 15px">
59
+        <!--        金额合计(大写) 肆仟壹佰肆拾肆元捌角叁分-->
60
+            <span  style="position: absolute;left:180px">
61
+                <span v-if="zhongwen.indexOf('万') > -1 && zhongwen.indexOf('拾') > -1 && zhongwen.indexOf('拾') == 1">
62
+                    {{ zhongwen.substring(0,1) }}
63
+                </span>
64
+                <span v-else>零</span>
65
+            </span>
66
+            <span  style="position: absolute;left:220px">
67
+                <span v-if="zhongwen.indexOf('万') > -1">
68
+                    {{ zhongwen.substring(zhongwen.indexOf('万') - 1,zhongwen.indexOf('万')) }}
69
+                </span>
70
+                <span v-else>零</span>
71
+            </span>
72
+            <span  style="position: absolute;left:260px">
73
+                <span v-if="zhongwen.indexOf('仟') > -1">
74
+                    {{ zhongwen.substring(zhongwen.indexOf('仟') - 1,zhongwen.indexOf('仟')) }}
75
+                </span>
76
+                <span v-else>零</span>
77
+            </span>
78
+            <span  style="position: absolute;left:300px">
79
+                <span v-if="zhongwen.indexOf('佰') > -1">
80
+                    {{ zhongwen.substring(zhongwen.indexOf('佰') - 1,zhongwen.indexOf('佰')) }}
81
+                </span>
82
+                <span v-else>零</span>
83
+            </span>
84
+            <span style="position: absolute;left:340px">
85
+                <span v-if="zhongwen.indexOf('拾') > -1">
86
+                    {{zhongwen.substring(zhongwen.indexOf('拾') - 1,zhongwen.indexOf('拾')) == '佰' ||  !zhongwen.substring(zhongwen.indexOf('拾') - 1,zhongwen.indexOf('拾'))? '壹' : zhongwen.substring(zhongwen.indexOf('拾') - 1,zhongwen.indexOf('拾')) }}
87
+                </span>
88
+                <span v-else>零</span>
89
+            </span>
90
+            <span  style="position: absolute;left:380px">
91
+                <span v-if="zhongwen.indexOf('元') > -1 && zhongwen.substring(this.zhongwen.indexOf('元') - 1).substring(0,1)!= '拾'">
92
+                    {{ zhongwen.substring(zhongwen.indexOf('元') - 1,zhongwen.indexOf('元')) }}
93
+                </span>
94
+                <span v-else>零</span>
95
+            </span>
96
+            <span  style="position: absolute;left:420px">
97
+                <span v-if="zhongwen.indexOf('角') > -1">
98
+                    {{ zhongwen.substring(zhongwen.indexOf('角') - 1,zhongwen.indexOf('角')) }}
99
+                </span>
100
+                <span v-else>零</span>
101
+            </span>
102
+            <span  style="position: absolute;left:460px">
103
+                <span v-if="zhongwen.indexOf('分') > -1">
104
+                    {{ zhongwen.substring(zhongwen.indexOf('分') - 1,zhongwen.indexOf('分')) }}
105
+                </span>
106
+                <span v-else>零</span>
107
+            </span>
108
+      </div>
109
+      <div style="display: inline-block;width: 49%;">
110
+        (小写) {{totalPrice}}
111
+      </div>
112
+    </div>
113
+    <div style="border: 1px solid black;">
114
+      <div style="display: flex;">
115
+        <div style="width: 3%;border-right: 1px solid black;padding: 5px;">其他信息</div>
116
+        <div style="width: 96%;padding-left: 5px;">
117
+          <div style="display: flex;padding: 5px 0;">
118
+            <div style="width: 30%;">医疗费总额:{{list.medfee_sumamt}}元</div>
119
+            <div style="width: 30%;">基金支付总额:{{list.fund_pay_sumamt}}元</div>
120
+            <div style="width: 40%;">基本医疗保险统筹基金支出:{{list.hifp_pay}}元</div>
121
+          </div>
122
+          <div style="display: flex;">
123
+            <div style="width: 30%;">医疗救助基金支出:{{list.maf_pay}}元</div>
124
+            <div style="width: 30%;">个人账户支付金额:{{list.acct_pay}}元</div>
125
+            <div style="width: 40%;">个人支付金额:{{list.psn_cash_pay}}元</div>
126
+          </div>
127
+        </div>
128
+      </div>
129
+    </div>
130
+
131
+  </div>
132
+</template>
133
+<script>
134
+import { getFaPiaoData } from '@/api/fapiao'
135
+import { uParseTime } from '@/utils/tools'
136
+export default {
137
+  props:{
138
+    paramsObj:Object
139
+  },
140
+  data(){
141
+    return{
142
+      gender:'',
143
+      list:{},
144
+      printDate:'',
145
+      zhongwen:'',
146
+      totalPrice:0.0,
147
+      org_id:'',
148
+      org_name:'',
149
+      now:""
150
+    }
151
+  },
152
+  created(){
153
+    const currentDate = new Date();
154
+    const year = currentDate.getFullYear();
155
+    const month = currentDate.getMonth() + 1;
156
+    const day = currentDate.getDate();
157
+    this.now =
158
+      year +
159
+      '-' +
160
+      (month < 10 ? '0' + month : month) +
161
+      '-' +
162
+      (day < 10 ? '0' + day : day)
163
+
164
+    console.log('paramsObj=-----',this.paramsObj)
165
+    let params = {
166
+      order_ids: this.paramsObj.order_ids,
167
+      patient_id: this.paramsObj.patient_id,
168
+    }
169
+    this.getInvoice(params)
170
+    this.org_id = this.$store.getters.xt_user.org_id
171
+    this.org_name = this.$store.getters.xt_user.org.org_name
172
+  },
173
+  methods:{
174
+    getInvoice(params){
175
+      getFaPiaoData(params).then((res) => {
176
+        console.log('res',res)
177
+        this.list = res.data.data
178
+        this.totalPrice = this.list.westernMedicineCostTotal + this.list.checkCostTotal + this.list.treatCostTotal + this.list.bedCostTotal + this.list.chineseTraditionalMedicineCostTotal +
179
+          this.list.laboratoryCostTotal + this.list.operationCostTotal + this.list.otherCostTotal + this.list.materialCostTotal + this.list.zhenChaCostTotal + this.list.hiliCostTotal
180
+        if(this.totalPrice == 0){
181
+
182
+          this.totalPrice = this.list.medfee_sumamt
183
+        }
184
+        console.log( "this.totalPrice")
185
+
186
+        this.smalltoBIG(this.totalPrice.toFixed(2))
187
+        var data = new Date(res.data.data.date * 1000);
188
+        var month =data.getMonth() < 9 ? "0" + (data.getMonth() + 1) : data.getMonth() + 1;
189
+        var date = data.getDate() <= 9 ? "0" + data.getDate() : data.getDate();
190
+        this.printDate = data.getFullYear() + "-" + month + "-" + date;
191
+        this.gender = this.list.gender
192
+      })
193
+    },
194
+    smalltoBIG(n) {
195
+      // let fraction = ['角', '分'];
196
+      // let digit = ['零', '壹', '贰', '叁', '肆', '伍', '陆', '柒', '捌', '玖'];
197
+      // let unit = [['元.', '万,', '亿,'], ["元",'拾', '佰', '仟']];
198
+      // let head = price < 0 ? '欠' : '';
199
+      // price = Math.abs(price);
200
+      // let upper = '';
201
+      // for (let i = 0; i < fraction.length; i++) {
202
+      // upper += (digit[Math.floor(price * 10 * Math.pow(10, i)) % 10] + fraction[i]).replace(/零./, '');
203
+      // }
204
+      // upper = upper || '整';
205
+      // price = Math.floor(price);
206
+      // for (let i = 0; i < unit[0].length && price > 0; i++) {
207
+      // let p = '';
208
+      // for (let j = 0; j < unit[1].length && price > 0; j++) {
209
+      //     p = digit[price % 10] + unit[1][j] + p;
210
+      //     price = Math.floor(price / 10);
211
+      // }
212
+      // upper = p.replace(/(零.)*零$/, '').replace(/^$/, '零') + unit[0][i] + upper;
213
+      // }
214
+      // this.zhongwen = head + upper.replace(/(零.)*零圆/, '圆').replace(/(零.)+/g, '零').replace(/^整$/, '零圆整')
215
+      // console.log('6666',head + upper.replace(/(零.)*零圆/, '圆').replace(/(零.)+/g, '零').replace(/^整$/, '零圆整'))
216
+      if (!/^(0|[1-9]\d*)(\.\d+)?$/.test(n)){
217
+        return "数据非法";  //判断数据是否大于0
218
+      }
219
+
220
+      var unit = "仟佰拾亿仟佰拾万仟佰拾元角分", str = "";
221
+      n += "00";
222
+
223
+      var indexpoint = n.indexOf('.');  // 如果是小数,截取小数点前面的位数
224
+
225
+      if (indexpoint >= 0){
226
+
227
+        n = n.substring(0, indexpoint) + n.substr(indexpoint+1, 2);   // 若为小数,截取需要使用的unit单位
228
+      }
229
+
230
+      unit = unit.substr(unit.length - n.length);  // 若为整数,截取需要使用的unit单位
231
+      for (var i=0; i < n.length; i++){
232
+        str += "零壹贰叁肆伍陆柒捌玖".charAt(n.charAt(i)) + unit.charAt(i);  //遍历转化为大写的数字
233
+      }
234
+
235
+      this.zhongwen =  str.replace(/零(仟|佰|拾|角)/g, "零").replace(/(零)+/g, "零").replace(/零(万|亿|元)/g, "$1").replace(/(亿)万|壹(拾)/g, "$1$2").replace(/^元零?|零分/g, "").replace(/元$/g, "元整");
236
+      console.log(this.zhongwen)
237
+    },
238
+    getTime(value, temp) {
239
+      if (value == 0) {
240
+        return ''
241
+      }
242
+      if (value != undefined) {
243
+        return uParseTime(value, temp)
244
+      }
245
+      return ''
246
+    },
247
+  },
248
+  watch:{
249
+    paramsObj:{//深度监听,可监听到对象、数组的变化
250
+      handler(val, oldVal){
251
+        let params = {
252
+          order_ids: val.order_ids,
253
+          patient_id: val.patient_id,
254
+          // number: val.number,
255
+        }
256
+        this.getInvoice(params)
257
+
258
+      },
259
+      deep:true
260
+    }
261
+  }
262
+}
263
+</script>

+ 36 - 1
src/xt_pages/eleFaPiao/newSettleDetail.vue Bestand weergeven

@@ -147,7 +147,7 @@
147 147
         <el-table-column align="center" prop="name" label="操作">
148 148
           <template slot-scope="scope">
149 149
             <el-button v-if="scope.row.result.id == 0" size="mini" type="primary"
150
-                       @click="blue()">
150
+                       @click="blueDailog()">
151 151
               开票
152 152
             </el-button>
153 153
             <el-button v-if="scope.row.result.id > 0 && scope.row.result.is_red_washed == 0" size="mini" type="primary"
@@ -178,11 +178,25 @@
178 178
       </el-pagination>
179 179
     </div>
180 180
 
181
+    <el-dialog
182
+      class="centerDialog"
183
+      width="1200px"
184
+      :visible.sync="settlementVisible">
185
+      <div>
186
+<!--        <new-print-one :paramsObj="paramsObj"></new-print-one>-->
187
+        <new-print-one :paramsObj="paramsObj"></new-print-one>
188
+      </div>
189
+      <span slot="footer" class="dialog-footer">
190
+        <el-button @click="settlementVisible = false">取 消</el-button>
191
+        <el-button type="primary" @click="blue">开票</el-button>
192
+      </span>
193
+    </el-dialog>
181 194
 
182 195
   </div>
183 196
 </template>
184 197
 
185 198
 
199
+
186 200
 <script>
187 201
 import BreadCrumb from '@/xt_pages/components/bread-crumb'
188 202
 import { getDoctorList, getExportConsumeDetailList, getHisOrderList, Refund } from '@/api/his/his'
@@ -201,11 +215,13 @@ import {
201 215
 import { getDialysisRecordInitData } from '@/api/dialysis_record'
202 216
 import { number } from 'echarts/lib/export'
203 217
 import QRCode from 'qrcodejs2'
218
+import NewPrintOne from './newPrintOne.vue'
204 219
 
205 220
 const moment = require('moment')
206 221
 export default {
207 222
   name: 'newSettleDetail',
208 223
   components: {
224
+    NewPrintOne,
209 225
     BreadCrumb,
210 226
   },
211 227
   props: {
@@ -213,6 +229,7 @@ export default {
213 229
   },
214 230
   data() {
215 231
     return {
232
+      dialogVisible:false,
216 233
       staff:"",
217 234
       admins:[],
218 235
       orderObj: {},
@@ -267,6 +284,7 @@ export default {
267 284
       settlementVisible: false,
268 285
       settlementObj: {},
269 286
       accounts_click_vi:false,
287
+      cur_ids:"",
270 288
     }
271 289
   },
272 290
 
@@ -307,6 +325,23 @@ export default {
307 325
         }
308 326
       }).catch(function(error) {
309 327
       })
328
+    },blueDailog(){
329
+      var order_ids = ""
330
+      for(let i = 0; i < this.selecting_schs.length;i++){
331
+        if(order_ids.length == 0){
332
+          order_ids = this.selecting_schs[i].id
333
+        }else{
334
+          order_ids =order_ids + ","+this.selecting_schs[i].id
335
+        }
336
+      }
337
+      this.cur_ids =order_ids
338
+      this.patient_id = this.patient_id
339
+      let paramsObj = {
340
+        order_ids: order_ids,
341
+        patient_id: this.patient_id,
342
+      }
343
+      this.settlementVisible = true
344
+      this.paramsObj = paramsObj
310 345
     },
311 346
     blue(){
312 347
       var order_ids = ""

+ 40 - 7
src/xt_pages/eleFaPiao/settleDetail.vue Bestand weergeven

@@ -228,6 +228,20 @@
228 228
         <el-button type="primary" @click="qr_dialogVisible = false">确 定</el-button>
229 229
       </span>
230 230
     </el-dialog>
231
+
232
+    <el-dialog
233
+      class="centerDialog"
234
+      width="1200px"
235
+      :visible.sync="settlementVisible">
236
+      <div>
237
+        <new-print-one :paramsObj="paramsObj"></new-print-one>
238
+      </div>
239
+      <span slot="footer" class="dialog-footer">
240
+        <el-button @click="settlementVisible = false">取 消</el-button>
241
+        <el-button type="primary" @click="blueRequest">开票</el-button>
242
+      </span>
243
+    </el-dialog>
244
+
231 245
   </div>
232 246
 </template>
233 247
 
@@ -253,10 +267,14 @@ import {
253 267
 
254 268
 import { getDialysisRecordInitData } from '@/api/dialysis_record'
255 269
 import QRCode from 'qrcodejs2'
270
+import NewInvoicePrint from './newInvoicePrint.vue'
271
+import NewPrintOne from './newPrintOne.vue'
256 272
 const moment = require('moment')
257 273
 export default {
258 274
   name: 'OutpatientChargesSummary',
259 275
   components: {
276
+    NewPrintOne,
277
+    NewInvoicePrint,
260 278
     BreadCrumb,
261 279
   },
262 280
   data() {
@@ -266,6 +284,7 @@ export default {
266 284
       orderObj: {},
267 285
       batchOrderObj: {},
268 286
       fapiao_number:"",
287
+      invoiceVisible: false,
269 288
       med_options: [
270 289
         { id: 0, text: '全部' },
271 290
         { id: 11, text: '普通门诊' },
@@ -309,13 +328,13 @@ export default {
309 328
       listVisible: false,
310 329
       allListVisible: false,
311 330
       adminUserOptions: [],
312
-      invoiceVisible: false,
313 331
       paramsObj: {},
314 332
       invoiceParams: {},
315 333
       settlementVisible: false,
316 334
       settlementObj: {},
317 335
       accounts_click_vi:false,
318
-
336
+      cur_ids:0,
337
+      patient_id:0,
319 338
       login_dialogVisible:false,
320 339
       qr_dialogVisible:false,
321 340
       formLabelAlign: {
@@ -606,11 +625,9 @@ export default {
606 625
     },download(){
607 626
 
608 627
 
609
-    },
610
-    blue(row){
611
-     var  ids = row.id
628
+    },blueRequest(){
612 629
       let params = {
613
-        "order_ids":ids,
630
+        "order_ids": this.cur_ids,
614 631
         "admin_user_id":this.$store.getters.xt_user.user.id,
615 632
       }
616 633
 
@@ -636,6 +653,22 @@ export default {
636 653
         }
637 654
       }).catch(function(error) {
638 655
       })
656
+    },
657
+    blue(row){
658
+      var  ids = row.id
659
+      this.cur_ids =ids
660
+      this.patient_id = row.patient_id
661
+      console.log(row)
662
+      let paramsObj = {
663
+        order_ids: ids,
664
+        patient_id: row.patient_id,
665
+      }
666
+      this.settlementVisible = true
667
+      this.paramsObj = paramsObj
668
+      console.log(this.paramsObj)
669
+
670
+      // this.invoiceVisible = true
671
+
639 672
       // OpenBlueFapiao(params).then((response) => {
640 673
       //   if (response.data.state == 0) {
641 674
       //     this.$message.error(response.data.msg)
@@ -871,7 +904,7 @@ export default {
871 904
       this.invoiceVisible = true
872 905
       var obj = this.targeObj
873 906
       let paramsObj = {
874
-        order_id: obj.id,
907
+        order_ids: obj.id,
875 908
         patient_id: obj.patient_id,
876 909
         number: obj.mdtrt_id,
877 910
         name: obj.patient.name,

+ 1 - 1
src/xt_pages/outpatientCharges/outpatientChargesManagement.vue Bestand weergeven

@@ -3366,7 +3366,7 @@ export default {
3366 3366
         }
3367 3367
 
3368 3368
         if (this.hisPatientInfo.id_card_type == 1) {
3369
-          if (this.hisPatientInfo.balance_accounts_type != 2 && this.$store.getters.xt_user.org_id != 10510 && this.$store.getters.xt_user.org_id != 10088 && this.$store.getters.xt_user.org_id != 10106 && this.$store.getters.xt_user.org_id != 10188 && this.$store.getters.xt_user.org_id != 10217 && this.$store.getters.xt_user.org_id != 10191 && this.$store.getters.xt_user.org_id !=  10318 && this.$store.getters.xt_user.org_id !=  10210 && this.$store.getters.xt_user.org_id !=  10375 &&  this.$store.getters.xt_user.org_id !=  10480  &&  this.$store.getters.xt_user.org_id !=  10598) {
3369
+          if (this.hisPatientInfo.balance_accounts_type != 2 && this.$store.getters.xt_user.org_id != 10510 && this.$store.getters.xt_user.org_id != 10088 && this.$store.getters.xt_user.org_id != 10106 && this.$store.getters.xt_user.org_id != 10188 && this.$store.getters.xt_user.org_id != 10217 && this.$store.getters.xt_user.org_id != 10191 && this.$store.getters.xt_user.org_id !=  10318 && this.$store.getters.xt_user.org_id !=  10210 && this.$store.getters.xt_user.org_id !=  10375 &&  this.$store.getters.xt_user.org_id !=  10480 &&  this.$store.getters.xt_user.org_id !=  10387  &&  this.$store.getters.xt_user.org_id !=  10598) {
3370 3370
             this.pwdFormVisible = true
3371 3371
             this.pwd = ''
3372 3372
           } else {