ソースを参照

Merge branch '20230223_pc_vue_new_branch' of http://git.shengws.com/csx/Vue_New into 20230223_pc_vue_new_branch

28169 1 年間 前
コミット
5612faa36e

+ 5 - 5
src/xt_pages/outpatientCharges/invoicePrint.vue ファイルの表示

@@ -10,7 +10,7 @@
10 10
         type="primary"
11 11
       >打印</el-button>
12 12
     </template>
13
-    <div class="app-container" style="padding-top:40px;" v-if="org_id != 10217 && org_id != 0 && org_id != 10485">
13
+    <div class="app-container" style="padding-top:40px;" v-if="org_id != 10217 && org_id != 0 && org_id != 10485 && org_id != 10375"><!---->
14 14
         <div class='dialysisPage'>
15 15
           <div v-if="org_id != 10106 && org_id != 10215 && org_id != 4 && org_id != 10188 && org_id != 10217 && org_id != 0 && org_id != 10387&& org_id != 10210 && org_id != 10387" >
16 16
             <printOne v-if="org_id != 10088 " :paramsObj="invoiceParams"></printOne>
@@ -19,7 +19,7 @@
19 19
           <printTwo v-if="org_id == 10106" :paramsObj="invoiceParams"></printTwo>
20 20
           <printFour v-if="org_id == 10215 || org_id == 4 " :paramsObj="invoiceParams"></printFour>
21 21
           <printFive v-if="org_id == 10188 " :paramsObj="invoiceParams"></printFive>
22
-          <printSix v-if="org_id == 10217  || org_id == 0" :paramsObj="invoiceParams"></printSix>
22
+          <!-- <printSix v-if="org_id == 10217  " :paramsObj="invoiceParams"></printSix> -->
23 23
 <!--          <printEight v-if="org_id == 10387 || org_id == 0" :paramsObj="invoiceParams"></printEight>-->
24 24
           <print-eight v-if="org_id == 10387" :paramsObj="invoiceParams"></print-eight>
25 25
           <PrintNight v-if="org_id == 10210" :paramsObj="invoiceParams"></PrintNight>
@@ -33,12 +33,12 @@
33 33
       </div>
34 34
     </div>
35 35
 
36
-    <div class="app-container" style="" v-if="org_id == 10217">
36
+    <div class="app-container" style="" v-if="org_id == 10217 || org_id == 0">
37 37
       <div class='dialysisPage'>
38
-        <printSix v-if="org_id == 10217  " :paramsObj="invoiceParams"></printSix>
38
+        <printSix :paramsObj="invoiceParams"></printSix>
39 39
       </div>
40 40
     </div>
41
-    <div class="app-container" style="padding-top:40px;" v-if="org_id == 10375 ||org_id == 0">
41
+    <div class="app-container" style="padding-top:40px;" v-if="org_id == 10375 ">
42 42
       <div class='dialysisPage'>
43 43
         <print-ten :paramsObj="invoiceParams"></print-ten>
44 44
       </div>

+ 17 - 9
src/xt_pages/outpatientDoctorStation/template/prinSeven.vue ファイルの表示

@@ -287,7 +287,7 @@
287 287
             <p>
288 288
               金额:{{
289 289
                 getTotalOne(item.id).toFixed(2)
290
-                  ? getTotalOne(item.id).toFixed(2)
290
+                  ? getTotalOne(item.id).toFixed(2) 
291 291
                   : 0
292 292
               }}元
293 293
             </p>
@@ -511,8 +511,10 @@ export default{
511 511
       return name;
512 512
     },
513 513
     getTotalOne(id) {
514
+      console.log('999999999',id);
514 515
       var total = 0;
515 516
       var addtotal = 0;
517
+      var zimuyao = 0;
516 518
       for (let i = 0; i < this.prescriptions.length; i++) {
517 519
         if (id == this.prescriptions[i].id) {
518 520
           if (this.prescriptions[i].project != null) {
@@ -520,7 +522,7 @@ export default{
520 522
               total =
521 523
                 total +
522 524
                 this.prescriptions[i].project[a].price *
523
-                  this.prescriptions[i].project[a].count;
525
+                  this.prescriptions[i].project[a].count ;
524 526
             }
525 527
           }
526 528
 
@@ -533,7 +535,7 @@ export default{
533 535
               addtotal =
534 536
                 addtotal +
535 537
                 this.prescriptions[i].additionalcharge[a].price *
536
-                  this.prescriptions[i].additionalcharge[a].count;
538
+                  this.prescriptions[i].additionalcharge[a].count ;
537 539
             }
538 540
           }
539 541
           addtotal = Math.floor(addtotal * 100) / 100;
@@ -546,11 +548,17 @@ export default{
546 548
             for (let a = 0; a < this.prescriptions[i].advices.length; a++) {
547 549
               total =
548 550
                 total +
549
-                this.prescriptions[i].advices[a].price *
550
-                  this.prescriptions[i].advices[a].prescribing_number;
551
+                (this.prescriptions[i].advices[a].price *
552
+                  this.prescriptions[i].advices[a].prescribing_number) ;
553
+            }
554
+          }
555
+          if(this.prescriptions[i].arr[0] != null){
556
+            for(let b=0;b<this.prescriptions[i].arr[0].length;b++){
557
+              zimuyao = zimuyao +
558
+              this.prescriptions[i].arr[b][0].price *
559
+              this.prescriptions[i].arr[b][0].prescribing_number
551 560
             }
552 561
           }
553
-
554 562
           if (this.prescriptions[i].additionalcharge != null) {
555 563
             for (
556 564
               let a = 0;
@@ -559,15 +567,15 @@ export default{
559 567
             ) {
560 568
               addtotal =
561 569
                 addtotal +
562
-                this.prescriptions[i].additionalcharge[a].price *
563
-                  this.prescriptions[i].additionalcharge[a].count;
570
+                (this.prescriptions[i].additionalcharge[a].price *
571
+                  this.prescriptions[i].additionalcharge[a].count );
564 572
             }
565 573
           }
566 574
           addtotal = Math.floor(addtotal * 100) / 100;
567 575
         }
568 576
       }
569 577
 
570
-      return total + addtotal;
578
+      return total + addtotal + zimuyao ;
571 579
     },
572 580
 
573 581
     getProjectName(id) {

+ 6 - 3
src/xt_pages/outpatientDoctorStation/treatPrint.vue ファイルの表示

@@ -16,8 +16,9 @@
16 16
         <!-- 此下条为本地开发下页面 -->
17 17
         <!-- <printTwo v-if="org_id == 4" v-bind:childResponse="childResponse" :advicePrint="advicePrint" :ids="ids" :patient="patient" :hisPatient="hisPatient" :patient_id="patient_id" :record_date="record_date" :prescription_id="prescription_id"></printTwo> -->
18 18
         <!-- org_id != 10138 && org_id != 10278 && org_id !=4&& org_id !=0 -->
19
-        <printOne v-if="org_id != 10138 && org_id != 10278 && org_id !=4" v-bind:childResponse="childResponse" :advicePrint="advicePrint" :ids="ids" :patient="patient" :hisPatient="hisPatient" :patient_id="patient_id" :record_date="record_date" :prescription_id="prescription_id"></printOne>
20
-        <printTwo v-else v-bind:childResponse="childResponse" :advicePrint="advicePrint" :ids="ids" :patient="patient" :hisPatient="hisPatient" :patient_id="patient_id" :record_date="record_date" :prescription_id="prescription_id" :newHisPatient="newHisPatient"></printTwo>
19
+        <printOne v-if="org_id != 10138 && org_id != 10278 && org_id !=4 && org_id != 10375 " v-bind:childResponse="childResponse" :advicePrint="advicePrint" :ids="ids" :patient="patient" :hisPatient="hisPatient" :patient_id="patient_id" :record_date="record_date" :prescription_id="prescription_id"></printOne>
20
+        <printThree v-if=" org_id == 10375" v-bind:childResponse="childResponse" :advicePrint="advicePrint" :ids="ids" :patient="patient" :hisPatient="hisPatient" :patient_id="patient_id" :record_date="record_date" :prescription_id="prescription_id"></printThree>
21
+        <printTwo v-if="org_id == 10138 || org_id == 10278 || org_id ==4" v-bind:childResponse="childResponse" :advicePrint="advicePrint" :ids="ids" :patient="patient" :hisPatient="hisPatient" :patient_id="patient_id" :record_date="record_date" :prescription_id="prescription_id" :newHisPatient="newHisPatient"></printTwo>
21 22
       </div>
22 23
   </div>
23 24
 </template>
@@ -34,13 +35,15 @@ import BreadCrumb from "@/xt_pages/components/bread-crumb";
34 35
 import print from "print-js";
35 36
 import printOne from "./treatTemplate/printOne"
36 37
 import printTwo from "./treatTemplate/printTwo"
38
+import printThree from "./treatTemplate/printThree.vue"
37 39
 import { getAllDoctorList,getAllHisPatientList,getPrescriptionPrint } from "@/api/project/project"
38 40
 export default {
39 41
   name: "dialysisPrintOrder",
40 42
   components: {
41 43
     BreadCrumb,
42 44
     printOne,
43
-    printTwo
45
+    printTwo,
46
+    printThree
44 47
   },
45 48
   props:{
46 49
     paramsObj:Object,

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

@@ -2,7 +2,7 @@
2 2
     <div id='prescriptionPrint'>
3 3
         <div id='prescription-print' class="prescription-print" v-for="(item,index) in advicePrint" :key="index">
4 4
 
5
-            <div style="display:flex;justify-content: space-between;font-weight:bold;align-items:center;">
5
+            <div style="display:flex;justify-content: space-between;font-weight:bold;align-items:center;" >
6 6
                 <div style="width:200px;display:flex;justify-content: space-between;font-weight:bold;">
7 7
                     <span>费别</span>
8 8
                     <span>自费</span>
@@ -10,7 +10,8 @@
10 10
                     <span>保险</span>
11 11
                     <span>其他</span>
12 12
                 </div>
13
-                <div>就诊日期:{{getTime(item.ctime,'{y}-{m}-{d}')}}</div>
13
+                <div v-if="org_id == 10460">就诊日期:{{getTime(item.pre_time,'{y}-{m}-{d}')}}</div>
14
+                <div v-else>就诊日期:{{getTime(item.ctime,'{y}-{m}-{d}')}}</div>
14 15
             </div>
15 16
 
16 17
             <div class="printTitle">{{orgname}}</div>

+ 531 - 0
src/xt_pages/outpatientDoctorStation/treatTemplate/printThree.vue ファイルの表示

@@ -0,0 +1,531 @@
1
+<template>
2
+  <div id='prescriptionPrint'>
3
+      <div id='prescription-print' class="prescription-print" v-for="(item,index) in advicePrint" :key="index">
4
+
5
+          <div class="printTitle">{{orgname}}</div>
6
+          <div class="printTitle">处方、治疗单</div>
7
+          <div style="display:flex;justify-content: space-between;font-weight:bold;align-items:center;" >
8
+              <div style="width:200px;display:flex;justify-content: space-between;font-weight:bold;">
9
+                  <span>费别</span>
10
+                  <span>自费</span>
11
+                  <span>公费</span>
12
+                  <span>保险</span>
13
+                  <span>其他</span>
14
+              </div>
15
+              <div >就诊日期:{{getTime(item.ctime,'{y}-{m}-{d}')}}</div>
16
+          </div>
17
+<!-- class="infoTitle" -->
18
+          <div style="display: flex; margin-top: 10px; line-height: 24px;padding: 0 10px;">
19
+              <div style="width: 300px;">门诊编号:</div>
20
+              <!-- <div style="width: 300px;">电脑号:</div> -->
21
+          </div>
22
+
23
+          <div class="infoMain">
24
+              <div style="margin-bottom: 10px;width:25%">姓名:{{item.patient.name}}</div>
25
+              <div style="margin-bottom: 10px;width:25%">性别:
26
+                  <span v-if="item.patient.gender == 1">男</span>
27
+                  <span v-if="item.patient.gender == 2">女</span>
28
+              </div>
29
+              <div style="margin-bottom: 10px;width:25%">年龄:
30
+                  <span>{{getAge(item.patient)?getAge(item.patient):""}}岁</span>
31
+              </div>
32
+              <div style="margin-bottom: 10px;width:25%">参保类型:{{hisPatient.social_type?hisPatient.social_type:''}}
33
+              </div>
34
+              <div style="margin-bottom: 10px;width:50%;">联系电话:{{item.patient.phone}}</div>
35
+              <div style="width:50%;">地址:{{ item.patient.home_address }}
36
+                <!-- {{item.patient.unit_address}} -->
37
+              </div>
38
+              <div style="width:100%;">诊断:{{getDiagnosis(item.info.diagnosis)}}</div>
39
+          </div>
40
+
41
+          <div class="prescriptionBox" style="min-height: 425px;">
42
+              <table style="width:100%;text-align:center;line-height:25px;">
43
+                  <tr>
44
+                      <td>序号</td>
45
+                      <td>项目名称</td>
46
+                      <td>数量</td>
47
+                      <td>单位</td>
48
+                      <td>单价</td>
49
+                      <td>部位</td>
50
+                      <td>备注</td>
51
+                      <td>天数</td>
52
+                  </tr>
53
+                  <tr v-for="(it,index) in item.project" :key="index">
54
+                      <td>{{index+1}}</td>
55
+                      <td>{{it.type == 2 ? it.project.project_name : it.good_info.good_name}}</td>
56
+                      <td>{{it.count}}</td>
57
+                      <td>{{getUnit(it.unit)}}</td>
58
+                      <td>{{it.price.toFixed(2)}}</td>
59
+                      <td></td>
60
+                      <td>{{it.remark}}</td>
61
+                      <td>{{it.day}}</td>
62
+
63
+                  </tr>
64
+
65
+                  <tr v-for="(it,index) in item.advices" :key="index">
66
+                      <td>{{index+1}}</td>
67
+                      <td>{{it.advice_name?it.advice_name:''}}</td>
68
+                      <td>{{it.single_dose?it.single_dose:''}}</td>
69
+                      <td>{{it.single_dose_unit?it.single_dose_unit:''}}</td>
70
+                      <td>{{it.price.toFixed(2)}}</td>
71
+                      <td></td>
72
+                      <td>{{it.remark}}</td>
73
+                      <td>{{it.day}}</td>
74
+
75
+                  </tr>
76
+              </table>
77
+          </div>
78
+
79
+          <div style="display: flex; margin-top: 10px; line-height: 24px;padding: 0 10px;">
80
+              <div style="width: 300px;">开单医生:{{item.doctor?item.doctor:''}}</div>
81
+              <div style="width: 300px;">签章:</div>
82
+              <div style="width: 300px;">费用:{{getTotalOne(item.id).toFixed(2)?getTotalOne(item.id).toFixed(2):''}}元</div>
83
+          </div>
84
+
85
+          <table style="width:100%;text-align:center;line-height:25px;border-collapse: collapse;" border="1">
86
+              <tr>
87
+                  <td style="width:16%;">治疗时间</td>
88
+                  <td style="width:16%;"></td>
89
+                  <td style="width:16%;"></td>
90
+                  <td style="width:16%;"></td>
91
+                  <td style="width:16%;"></td>
92
+                  <td style="width:16%;"></td>
93
+              </tr>
94
+              <tr>
95
+                  <td style="width:16%;">医生签字</td>
96
+                  <td style="width:16%;"></td>
97
+                  <td style="width:16%;"></td>
98
+                  <td style="width:16%;"></td>
99
+                  <td style="width:16%;"></td>
100
+                  <td style="width:16%;"></td>
101
+              </tr>
102
+              <!-- <tr>
103
+                  <td style="width:16px;">患者签字</td>
104
+                  <td style="width:16px;"></td>
105
+                  <td style="width:16px;"></td>
106
+                  <td style="width:16px;"></td>
107
+                  <td style="width:16px;"></td>
108
+                  <td style="width:16px;"></td>
109
+              </tr> -->
110
+          </table>
111
+      </div>
112
+
113
+
114
+      <!-- <div id='prescriptionPrint'>
115
+
116
+          <div v-for="(item,index) in advicePrint" :key="index">
117
+              <div id='prescription-print' class="prescription-print" style="page-break-after: always;">
118
+                  <div style="display:flex;justify-content: space-between;font-weight:bold;">
119
+                      <div style="width:200px;display:flex;justify-content: space-between;font-weight:bold;">
120
+                          <span>费别</span>
121
+                          <span>自费</span>
122
+                          <span>公费</span>
123
+                          <span>保险</span>
124
+                          <span>其他</span>
125
+                      </div>
126
+                      <div>就诊日期:{{getTime(item.ctime)}}</div>
127
+                  </div>
128
+
129
+                  <div class="printTitle">血液透析中心</div>
130
+
131
+                  <div class="printTitle">处方、治疗单</div>
132
+
133
+                  <div class="infoTitle">
134
+                      <div>门诊编号:</div>
135
+                      <div>电脑号:</div>
136
+                  </div>
137
+
138
+                  <div class="infoMain">
139
+                      <div style="margin-bottom: 10px;width:25%">姓名:{{item.patient.name}}</div>
140
+                      <div style="margin-bottom: 10px;width:25%">性别:
141
+                          <span v-if="item.patient.gender == 1">男</span>
142
+                          <span v-if="item.patient.gender == 2">女</span>
143
+                      </div>
144
+                      <div style="margin-bottom: 10px;width:25%">年龄:
145
+                          <span>{{item.patient.age}}</span>
146
+                      </div>
147
+                      <div style="margin-bottom: 10px;width:25%">参保类型:</div>
148
+                      <div style="margin-bottom: 10px;width:50%;">联系电话:{{item.patient.phone}}</div>
149
+                      <div style="width:50%;">地址:{{item.patient.unit_address}}</div>
150
+                      <div style="width:100%;">诊断:{{item.patient.diagnose}}</div>
151
+                  </div>
152
+
153
+                  <div class="prescriptionBox">
154
+                      <table style="width:100%;text-align:center;line-height:25px;">
155
+                          <tr>
156
+                              <td>序号</td>
157
+                              <td>项目名称</td>
158
+                              <td>数量</td>
159
+                              <td>单位</td>
160
+                              <td>单价</td>
161
+                              <td>部位</td>
162
+                              <td>备注</td>
163
+                              <td>天数</td>
164
+                          </tr>
165
+                          <tr v-for="(it,index) in item.project" :key="index">
166
+                              <td>{{index+1}}</td>
167
+                              <td>{{getProjectName(it.project_id)}}</td>
168
+                              <td>{{it.single_dose}}</td>
169
+                              <td>{{getUnit(it.unit)}}</td>
170
+                              <td>{{it.price}}</td>
171
+                              <td></td>
172
+                              <td>{{it.remark}}</td>
173
+                              <td>{{it.day}}</td>
174
+
175
+                          </tr>
176
+                      </table>
177
+                  </div>
178
+                  <div class="infoTitle">
179
+                      <div>开单医生:{{getDoctor(item.doctor)?getDoctor(item.doctor):""}}</div>
180
+                      <div>签章:</div>
181
+                  </div>
182
+                  <div class="actionBar">
183
+                      <div>执行医生:{{getDoctor(item.doctor)?getDoctor(item.doctor):""}}</div>
184
+                      <div>费用:</div>
185
+                  </div>
186
+                  <table style="width:100%;text-align:center;line-height:25px;border-collapse: collapse;" border="1">
187
+                      <tr>
188
+                          <td style="width:16%;">治疗时间</td>
189
+                          <td style="width:16%;"></td>
190
+                          <td style="width:16%;"></td>
191
+                          <td style="width:16%;"></td>
192
+                          <td style="width:16%;"></td>
193
+                          <td style="width:16%;"></td>
194
+                      </tr>
195
+                      <tr>
196
+                          <td style="width:16%;">医生签字</td>
197
+                          <td style="width:16%;"></td>
198
+                          <td style="width:16%;"></td>
199
+                          <td style="width:16%;"></td>
200
+                          <td style="width:16%;"></td>
201
+                          <td style="width:16%;"></td>
202
+                      </tr>
203
+                      <tr>
204
+                          <td style="width:16px;">患者签字</td>
205
+                          <td style="width:16px;"></td>
206
+                          <td style="width:16px;"></td>
207
+                          <td style="width:16px;"></td>
208
+                          <td style="width:16px;"></td>
209
+                          <td style="width:16px;"></td>
210
+                      </tr>
211
+                  </table>
212
+              </div>
213
+
214
+          </div>
215
+
216
+      </div> -->
217
+  </div>
218
+</template>
219
+<script>
220
+import { jsGetAge, uParseTime } from '@/utils/tools'
221
+import { getAllDoctorList, getPrescriptionPrint } from '@/api/project/project'
222
+import { getInitData } from '@/api/his/his'
223
+
224
+export default {
225
+  props: {
226
+    patient_id: Number,
227
+    record_date: String,
228
+    prescription_id: Number,
229
+    ids: String
230
+  },
231
+  data() {
232
+    return {
233
+      doctorList: [],
234
+      advicePrint: {},
235
+      patient: {},
236
+      tableData: [],
237
+      prescriptionInfo: [],
238
+      projectList: [],
239
+      prescriptions: [],
240
+      settlement:
241
+        [
242
+          { value: 1, label: '医保' },
243
+          { value: 2, label: '自费' },
244
+          { value: 3, label: '公费' },
245
+          { value: 4, label: '农保' },
246
+          { value: 5, label: '会员' },
247
+          { value: 6, label: '职工' },
248
+          { value: 7, label: '合同' },
249
+          { value: 8, label: '医保自费' }
250
+
251
+        ],
252
+      hisPatient: {},
253
+      diagnoses: []
254
+    }
255
+  },
256
+  methods: {
257
+    getAge(patient){
258
+      var thisLen = patient.id_card_no.length
259
+      var birth = ''
260
+      if (thisLen == 15) {
261
+        birth = '19' + patient.id_card_no.substr(6, 6)
262
+      } else {
263
+        birth = patient.id_card_no.substr(6, 8)
264
+      }
265
+      var births =
266
+        birth.substr(0, 4) +
267
+        '-' +
268
+        birth.substr(4, 2) +
269
+        '-' +
270
+        birth.substr(6, 2)
271
+      return jsGetAge(births, '-')
272
+
273
+    },
274
+    printThisPage() {
275
+      var ptime = Math.round(new Date().getTime() / 1000)
276
+      this.print_time = uParseTime(ptime, '{y}-{m}-{d} {h}:{i}')
277
+
278
+      const style =
279
+        '@media print {.printTitle{font-size: 22px;text-align: center;font-weight: bold;}.infoTitle{display: flex;margin-top:10px;line-height: 1px;padding:0 10px;}.infoTitle p{width: 200px;}.otherInfo{display: flex;margin-top:10px;padding:0 10px;}.otherInfo span{display:inline-block;}.recordTitle{display: flex;margin-top:10px;line-height: 24px;padding:0 10px;border-bottom: 2px solid #000;}.recordTitle p{width: 200px;}}'
280
+      printJS({
281
+        printable: 'prescription-print',
282
+        type: 'html',
283
+        style: style,
284
+        scanStyles: false
285
+      })
286
+    },
287
+    getAllDoctorList() {
288
+      getAllDoctorList().then(response => {
289
+        if (response.data.state == 1) {
290
+          var doctor = response.data.data.doctor
291
+
292
+          this.doctorList = doctor
293
+        }
294
+      })
295
+    },
296
+
297
+    getDoctor(id) {
298
+      var name = ''
299
+      for (let i = 0; i < this.doctorList.length; i++) {
300
+        if (id == this.doctorList[i].admin_user_id) {
301
+          name = this.doctorList[i].user_name
302
+        }
303
+      }
304
+      return name
305
+    },
306
+    getTime(value, temp) {
307
+      if (value != undefined) {
308
+        return uParseTime(value, temp)
309
+      }
310
+      return ''
311
+    },
312
+    getPrescriptionPrint() {
313
+      var params = {
314
+        patient_id: this.patient_id,
315
+        record_date: this.record_date,
316
+        prescription_id: this.prescription_id,
317
+        ids: this.ids,
318
+        p_type:2,
319
+      }
320
+      console.log('999999', params)
321
+      getPrescriptionPrint(params).then(response => {
322
+        if (response.data.state == 1) {
323
+          var advicePrint = response.data.data.advicePrint
324
+          console.log('adviceprint', advicePrint)
325
+          this.advicePrint = advicePrint
326
+          this.prescriptions = advicePrint
327
+          var projectlist = response.data.data.projectlist
328
+          console.log('所有项目列表', projectlist)
329
+          this.projectList = projectlist
330
+          this.hisPatient = response.data.data.hisPatient
331
+          this.advicePrint.map((item) => {
332
+            console.log(item.project.length);
333
+            if (item.project.length > 0) {
334
+              for (var i = item.project.length - 1; i >= 0; i--) {
335
+                if (item.project[i].type == 2) {
336
+                  if (item.project[i].project.cost_classify == 3) {
337
+                    console.log("!1111111")
338
+                    item.project.splice(i, 1);
339
+                  }
340
+                }
341
+              }
342
+            }
343
+          });
344
+
345
+        }
346
+      })
347
+    },
348
+    getProjectName(id) {
349
+      var project_name = ''
350
+      for (let i = 0; i < this.projectList.length; i++) {
351
+        if (id == this.projectList[i].id) {
352
+          project_name = this.projectList[i].project_name
353
+        }
354
+      }
355
+      return project_name
356
+    },
357
+    getUnit(id) {
358
+      var unit = ''
359
+      for (let i = 0; i < this.projectList.length; i++) {
360
+        if (id == this.projectList[i].id) {
361
+          unit = this.projectList[i].unit
362
+        }
363
+      }
364
+      return unit
365
+    },
366
+
367
+    getTotalOne(id) {
368
+
369
+      var total = 0
370
+      var addtotal = 0
371
+      for (let i = 0; i < this.prescriptions.length; i++) {
372
+        if (id == this.prescriptions[i].id) {
373
+          if (this.prescriptions[i].project != null) {
374
+            for (let a = 0; a < this.prescriptions[i].project.length; a++) {
375
+              total = total + this.prescriptions[i].project[a].price * this.prescriptions[i].project[a].count
376
+            }
377
+          }
378
+
379
+          if (this.prescriptions[i].additionalcharge != null) {
380
+            for (let a = 0; a < this.prescriptions[i].additionalcharge.length; a++) {
381
+              addtotal = addtotal + this.prescriptions[i].additionalcharge[a].price * this.prescriptions[i].additionalcharge[a].count
382
+            }
383
+          }
384
+          addtotal = Math.floor(addtotal * 100) / 100
385
+        }
386
+
387
+      }
388
+
389
+      for (let i = 0; i < this.prescriptions.length; i++) {
390
+        if (id == this.prescriptions[i].id) {
391
+          if (this.prescriptions[i].advices != null) {
392
+            for (let a = 0; a < this.prescriptions[i].advices.length; a++) {
393
+              total = total + this.prescriptions[i].advices[a].price * this.prescriptions[i].advices[a].prescribing_number
394
+            }
395
+          }
396
+
397
+          if (this.prescriptions[i].additionalcharge != null) {
398
+            for (let a = 0; a < this.prescriptions[i].additionalcharge.length; a++) {
399
+              addtotal = addtotal + this.prescriptions[i].additionalcharge[a].price * this.prescriptions[i].additionalcharge[a].count
400
+            }
401
+          }
402
+          addtotal = Math.floor(addtotal * 100) / 100
403
+        }
404
+      }
405
+
406
+      return total + addtotal
407
+    },
408
+    getInitData() {
409
+      getInitData().then(response => {
410
+        if (response.data.state == 1) {
411
+          this.diagnoses = response.data.data.diagnose
412
+          console.log('争端', this.diagnoses)
413
+        }
414
+      })
415
+    },
416
+    getDiagnosis(id) {
417
+      let arr = id.split(",");
418
+      var name = "";
419
+      for (let i = 0; i < this.diagnoses.length; i++) {
420
+        if (arr.indexOf(String(this.diagnoses[i].id)) > -1) {
421
+          name += this.diagnoses[i].class_name + " ";
422
+        }
423
+      }
424
+      return name
425
+    }
426
+  },
427
+  created() {
428
+    this.getInitData()
429
+    this.getAllDoctorList()
430
+    this.getPrescriptionPrint()
431
+    var xtuser = this.$store.getters.xt_user
432
+    this.orgname = xtuser.org.org_name
433
+
434
+  },
435
+  watch: {
436
+    patient_id: function(val) {
437
+      console.log('101000010101010', this.patient_id, this.record_date, this.prescription_id)
438
+      //    this.getPrescriptionPrint()
439
+    },
440
+    ids: function(val) {
441
+      this.ids = val
442
+      console.log('this.idsids', this.ids)
443
+      this.getPrescriptionPrint()
444
+    }
445
+  }
446
+}
447
+</script>
448
+
449
+
450
+<style lang="scss" scoped>
451
+  .prescription-print {
452
+      -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 60px rgba(0, 0, 0, 0.06) inset;
453
+      -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset;
454
+      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset;
455
+      margin-bottom: 20px;
456
+      padding: 20px 10px;
457
+  }
458
+
459
+  .prescription-print {
460
+      font-size: 14px;
461
+  }
462
+
463
+  .printTitle {
464
+      font-size: 18px;
465
+      text-align: center;
466
+      font-weight: bold;
467
+      margin-top: 10px;
468
+  }
469
+
470
+  .infoTitle {
471
+      display: flex;
472
+      // border-bottom: 2px solid #000;
473
+      margin-top: 10px;
474
+      line-height: 24px;
475
+      padding: 0 10px;
476
+  }
477
+
478
+  .infoTitle div {
479
+      width: 300px;
480
+  }
481
+
482
+  .infoMain {
483
+      display: flex;
484
+      flex-wrap: wrap;
485
+      border-bottom: 2px solid #000;
486
+      padding: 0 10px;
487
+  }
488
+
489
+  .infoMain div {
490
+      width: 50%;
491
+      line-height: 24px;
492
+  }
493
+
494
+  .prescriptionBox {
495
+      padding: 0 10px;
496
+      
497
+  }
498
+
499
+  .Rp {
500
+      font-size: 22px;
501
+      font-weight: bold;
502
+  }
503
+
504
+  .drugsBox {
505
+      padding-left: 40px;
506
+      margin-bottom: 10px;
507
+  }
508
+
509
+  .drugsBox p {
510
+      line-height: 30px;
511
+  }
512
+
513
+  .drugsOne {
514
+      line-height: 24px;
515
+  }
516
+
517
+  .drugsOne span {
518
+      margin-right: 20px;
519
+  }
520
+
521
+  .actionBar {
522
+      display: flex;
523
+      justify-content: space-between;
524
+      line-height: 24px;
525
+      padding: 0 10px;
526
+  }
527
+
528
+  .actionBar div {
529
+      width: 150px;
530
+  }
531
+</style>