Browse Source

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

csx 3 years ago
parent
commit
0cd059739b
33 changed files with 3644 additions and 1722 deletions
  1. 11 0
      src/api/his/his.js
  2. 14 9
      src/xt_pages/hospitalStation/allListPrint.vue
  3. 1 1
      src/xt_pages/hospitalStation/components/ChargePrescriptionTable.vue
  4. 50 32
      src/xt_pages/hospitalStation/components/callPrescription.vue
  5. 167 34
      src/xt_pages/hospitalStation/components/deskPrescription.vue
  6. 20 1
      src/xt_pages/hospitalStation/components/inquiriesDetail.vue
  7. 1 1
      src/xt_pages/hospitalStation/components/newPrescriptionTable.vue
  8. 41 23
      src/xt_pages/hospitalStation/components/nextOrLastPrescription.vue
  9. 13 12
      src/xt_pages/hospitalStation/components/prescriptionTable.vue
  10. 107 11
      src/xt_pages/hospitalStation/doctorDesk.vue
  11. 26 16
      src/xt_pages/hospitalStation/listPrint.vue
  12. 7 1
      src/xt_pages/hospitalStation/newStatementPrint.vue
  13. 54 13
      src/xt_pages/hospitalStation/outpatientChargesManagement.vue
  14. 7 2
      src/xt_pages/hospitalStation/summary.vue
  15. 294 284
      src/xt_pages/hospitalStation/summaryDetail.vue
  16. 7 2
      src/xt_pages/outpatientCharges/allListPrint.vue
  17. 1 1
      src/xt_pages/outpatientCharges/components/chargeMonthPrescriptionTable.vue
  18. 1 1
      src/xt_pages/outpatientCharges/components/prescriptionTable.vue
  19. 10 5
      src/xt_pages/outpatientCharges/listPrint.vue
  20. 10 10
      src/xt_pages/outpatientCharges/listTemplate/printTwo.vue
  21. 61 12
      src/xt_pages/outpatientCharges/outpatientChargesManagement.vue
  22. 7 0
      src/xt_pages/outpatientCharges/statementPrint.vue
  23. 13 3
      src/xt_pages/outpatientCharges/summaryDetail.vue
  24. 23 3
      src/xt_pages/outpatientDoctorStation/components/callPrescription.vue
  25. 1098 1028
      src/xt_pages/outpatientDoctorStation/components/deskPrescription.vue
  26. 15 3
      src/xt_pages/outpatientDoctorStation/components/inquiriesDetail.vue
  27. 1 1
      src/xt_pages/outpatientDoctorStation/components/newPrescriptionTable.vue
  28. 20 6
      src/xt_pages/outpatientDoctorStation/components/nextOrLastPrescription.vue
  29. 250 67
      src/xt_pages/outpatientDoctorStation/components/saveTemplate.vue
  30. 1297 123
      src/xt_pages/outpatientDoctorStation/doctorDesk.vue
  31. 14 14
      src/xt_pages/outpatientDoctorStation/template/printOne.vue
  32. 2 2
      src/xt_pages/outpatientDoctorStation/treatTemplate/printOne.vue
  33. 1 1
      src/xt_pages/qcd/dialysisTotal.vue

+ 11 - 0
src/api/his/his.js View File

462
     params:params,
462
     params:params,
463
   });
463
   });
464
 }
464
 }
465
+
466
+export function createdTemplate(params,data) {
467
+  return request({
468
+    url: "/api/hisprescriptiontemplate/create",
469
+    method: "post",
470
+    data:data,
471
+    params:params,
472
+  });
473
+}
474
+
475
+

+ 14 - 9
src/xt_pages/hospitalStation/allListPrint.vue View File

168
 
168
 
169
         if (new_drug_ids.length == 0 && new_project_ids.length > 0) {
169
         if (new_drug_ids.length == 0 && new_project_ids.length > 0) {
170
           for (let i = 0; i < new_project_ids.length; i++) {
170
           for (let i = 0; i < new_project_ids.length; i++) {
171
-            let obj = {};
172
-            let count = 0;
171
+            let obj = {}
172
+            let count = 0
173
             for (let a = 0; a < details.length; a++) {
173
             for (let a = 0; a < details.length; a++) {
174
               if (new_project_ids[i].id == details[a].project.project_id && new_project_ids[i].price == details[a].project.price) {
174
               if (new_project_ids[i].id == details[a].project.project_id && new_project_ids[i].price == details[a].project.price) {
175
-                obj['name'] = details[a].project.project.project_name;
176
-                obj['spec'] = '1';
177
-                obj['unit'] = details[a].project.project.unit;
178
-                obj['med_chrgitm_type'] = this.getType(details[a].med_chrgitm_type);
179
-                obj['price'] = parseFloat(details[a].pric);
180
-                obj['is_total'] = 2;
175
+                if( details[a].project.type == 2){
176
+                  obj['name'] = details[a].project.project.project_name
177
+                }else if(details[a].project.type == 3){
178
+                  obj['name'] = details[a].project.good_info.good_name
179
+                }
180
+                obj['unit'] = details[a].project.unit
181
+
182
+                obj['spec'] = '1'
183
+                obj['med_chrgitm_type'] = this.getType(details[a].med_chrgitm_type)
184
+                obj['price'] = parseFloat(details[a].pric)
185
+                obj['is_total'] = 2
181
 
186
 
182
                 count = count + details[a].cnt
187
                 count = count + details[a].cnt
183
               }
188
               }
184
             }
189
             }
185
-            obj['count'] = count;
190
+            obj['count'] = count
186
             list.push(obj)
191
             list.push(obj)
187
           }
192
           }
188
         }
193
         }

+ 1 - 1
src/xt_pages/hospitalStation/components/ChargePrescriptionTable.vue View File

61
         <template slot-scope="scope">{{ scope.row.project_name }}</template>
61
         <template slot-scope="scope">{{ scope.row.project_name }}</template>
62
       </el-table-column>
62
       </el-table-column>
63
       <el-table-column align="center" prop="statistical_classification" width="100" label="组">
63
       <el-table-column align="center" prop="statistical_classification" width="100" label="组">
64
-        <template slot-scope="scope">{{getGroup(scope.row.statistical_classification)}}</template>
64
+        <template slot-scope="scope">{{scope.row.type == 2 ?getGroup(scope.row.statistical_classification):'耗材'}}</template>
65
       </el-table-column>
65
       </el-table-column>
66
       <el-table-column align="center" prop="single_dose" width="80" label="单次用量">
66
       <el-table-column align="center" prop="single_dose" width="80" label="单次用量">
67
         <template slot-scope="scope">{{scope.row.single_dose}}{{scope.row.unit}}</template>
67
         <template slot-scope="scope">{{scope.row.single_dose}}{{scope.row.unit}}</template>

+ 50 - 32
src/xt_pages/hospitalStation/components/callPrescription.vue View File

1
 <template>
1
 <template>
2
   <el-dialog
2
   <el-dialog
3
-    :title="name"
4
-    :visible.sync="isLastOrNextVisible"
5
-    @close="hide"
6
-    width="1010px"
7
-    class="callPrescription"
8
-    :modal-append-to-body="false"
3
+          :title="name"
4
+          :visible.sync="isLastOrNextVisible"
5
+          @close="hide"
6
+          width="1010px"
7
+          class="callPrescription"
8
+          :modal-append-to-body="false"
9
   >
9
   >
10
     <el-date-picker
10
     <el-date-picker
11
-      v-model="start_time"
12
-      prefix-icon="el-icon-date"
13
-      @change="changeTime"
14
-      :editable="false"
15
-      style="width: 150px;"
16
-      type="date"
17
-      placeholder="选择日期时间"
18
-      align="right"
19
-      format="yyyy-MM-dd"
20
-      value-format="yyyy-MM-dd"
11
+            v-model="start_time"
12
+            prefix-icon="el-icon-date"
13
+            @change="changeTime"
14
+            :editable="false"
15
+            style="width: 150px;"
16
+            type="date"
17
+            placeholder="选择日期时间"
18
+            align="right"
19
+            format="yyyy-MM-dd"
20
+            value-format="yyyy-MM-dd"
21
     ></el-date-picker>
21
     ></el-date-picker>
22
     <span class>-</span>
22
     <span class>-</span>
23
     <el-date-picker
23
     <el-date-picker
24
-      v-model="end_time"
25
-      prefix-icon="el-icon-date"
26
-      @change="changeEndTime"
27
-      :editable="false"
28
-      style="width: 150px;"
29
-      type="date"
30
-      placeholder="选择日期时间"
31
-      align="right"
32
-      format="yyyy-MM-dd"
33
-      value-format="yyyy-MM-dd"
24
+            v-model="end_time"
25
+            prefix-icon="el-icon-date"
26
+            @change="changeEndTime"
27
+            :editable="false"
28
+            style="width: 150px;"
29
+            type="date"
30
+            placeholder="选择日期时间"
31
+            align="right"
32
+            format="yyyy-MM-dd"
33
+            value-format="yyyy-MM-dd"
34
     ></el-date-picker>
34
     ></el-date-picker>
35
 
35
 
36
 
36
 
93
             <el-table-column align="center" type="index" width="60" label="序号"></el-table-column>
93
             <el-table-column align="center" type="index" width="60" label="序号"></el-table-column>
94
             <el-table-column align="center" prop="project_name" width="160" label="名称">
94
             <el-table-column align="center" prop="project_name" width="160" label="名称">
95
               <template slot-scope="scope">
95
               <template slot-scope="scope">
96
-                <span>{{ scope.row.project.project_name }}</span>
96
+                <span>{{ scope.row.type == 2?scope.row.project.project_name:scope.row.good_info.good_name}}</span>
97
               </template>
97
               </template>
98
             </el-table-column>
98
             </el-table-column>
99
             <el-table-column align="center" prop="statistical_classification" width="100" label="组">
99
             <el-table-column align="center" prop="statistical_classification" width="100" label="组">
100
-              <template slot-scope="scope">{{getGroup(scope.row.statistical_classification)}}</template>
100
+              <template slot-scope="scope">{{scope.row.type == 2 ?getGroup(scope.row.statistical_classification):"耗材"}}</template>
101
             </el-table-column>
101
             </el-table-column>
102
             <el-table-column align="center" prop="single_dose" width="90" label="单次用量">
102
             <el-table-column align="center" prop="single_dose" width="90" label="单次用量">
103
               <template slot-scope="scope">
103
               <template slot-scope="scope">
190
           start_time: this.start_time,
190
           start_time: this.start_time,
191
           end_time:this.end_time,
191
           end_time:this.end_time,
192
           p_type:1,
192
           p_type:1,
193
-
194
         };
193
         };
195
         this.GetCallHisPrescription(params)
194
         this.GetCallHisPrescription(params)
196
       },changeEndTime(){
195
       },changeEndTime(){
268
             }
267
             }
269
 
268
 
270
 
269
 
270
+
271
             for (let b = 0; b < prescription.project.length; b++) {
271
             for (let b = 0; b < prescription.project.length; b++) {
272
               let obj = {
272
               let obj = {
273
                 id: 0,
273
                 id: 0,
281
                 total:prescription.project[b].count,
281
                 total:prescription.project[b].count,
282
                 price:prescription.project[b].price,
282
                 price:prescription.project[b].price,
283
                 remark:prescription.project[b].remark,
283
                 remark:prescription.project[b].remark,
284
-                medical_code:prescription.project[b].project.medical_code,
284
+                unit: prescription.project[b].unit,
285
+                type: prescription.project[b].type,
286
+
287
+
288
+                // medical_code:prescription.project[b].project.medical_code,
285
               };
289
               };
290
+              console.log(prescription.project[b].type)
291
+              if(prescription.project[b].type == 2){
292
+
293
+                obj['statistical_classification'] =  prescription.project[b].project.statistical_classification
294
+                obj['medical_code'] =  prescription.project[b].project.medical_code
295
+                obj['project_name'] =  prescription.project[b].project.project_name
296
+
297
+              }else if(prescription.project[b].type == 3){
298
+
299
+                obj['statistical_classification'] = ""
300
+                obj['medical_code'] =  prescription.project[b].good_info.medical_insurance_number
301
+                obj['project_name'] =  prescription.project[b].good_info.good_name
302
+              }
303
+
286
               tempProject.push(obj)
304
               tempProject.push(obj)
287
             }
305
             }
288
             let obj = {
306
             let obj = {
347
 </script>
365
 </script>
348
 
366
 
349
 <style lang="scss">
367
 <style lang="scss">
350
-.callPrescription{
368
+  .callPrescription{
351
   .el-dialog__body{
369
   .el-dialog__body{
352
     padding:0px 20px 30px;
370
     padding:0px 20px 30px;
353
   }
371
   }
355
     margin-top: 10px;
373
     margin-top: 10px;
356
     font-size: 14px;
374
     font-size: 14px;
357
   }
375
   }
358
-}
376
+  }
359
 </style>
377
 </style>

+ 167 - 34
src/xt_pages/hospitalStation/components/deskPrescription.vue View File

577
       }
577
       }
578
     },
578
     },
579
     methods: {
579
     methods: {
580
-
581
       changeClass(id) {
580
       changeClass(id) {
582
         this.tabProject = [];
581
         this.tabProject = [];
583
         if (id == 0) {
582
         if (id == 0) {
591
         }
590
         }
592
       },
591
       },
593
       setMonthPrescription(month_prescriptions) {
592
       setMonthPrescription(month_prescriptions) {
593
+
594
+
595
+
594
         this.month_prescriptions = [];
596
         this.month_prescriptions = [];
595
 
597
 
596
         let drug_month_prescriptions = {
598
         let drug_month_prescriptions = {
663
           return cur
665
           return cur
664
         }, []); // 设置cur默认类型为数组,并且初始值为空的数组
666
         }, []); // 设置cur默认类型为数组,并且初始值为空的数组
665
 
667
 
666
-        console.log(drug_ids);
667
-        console.log(project_ids);
668
-        console.log(additions_ids);
669
-
670
-        console.log(additions_ids);
671
-
672
         let drugs = [];
668
         let drugs = [];
673
         let projects = [];
669
         let projects = [];
674
         let additions = [];
670
         let additions = [];
702
           let count = 0;
698
           let count = 0;
703
           for (let a = 0; a < project_month_prescriptions.project.length; a++) {
699
           for (let a = 0; a < project_month_prescriptions.project.length; a++) {
704
             if (project_ids[i].price == project_month_prescriptions.project[a].price) {
700
             if (project_ids[i].price == project_month_prescriptions.project[a].price) {
705
-              obj['project_name'] = project_month_prescriptions.project[a].project.project_name;
706
-              obj['statistical_classification'] = project_month_prescriptions.project[a].project.statistical_classification;
701
+              // obj['project_name'] = project_month_prescriptions.project[a].project.project_name;
702
+              // obj['statistical_classification'] = project_month_prescriptions.project[a].project.statistical_classification;
707
               obj['single_dose'] = project_month_prescriptions.project[a].single_dose;
703
               obj['single_dose'] = project_month_prescriptions.project[a].single_dose;
708
               obj['delivery_way'] = project_month_prescriptions.project[a].delivery_way;
704
               obj['delivery_way'] = project_month_prescriptions.project[a].delivery_way;
709
               obj['execution_frequency'] = project_month_prescriptions.project[a].execution_frequency;
705
               obj['execution_frequency'] = project_month_prescriptions.project[a].execution_frequency;
710
               obj['number_days'] = project_month_prescriptions.project[a].day;
706
               obj['number_days'] = project_month_prescriptions.project[a].day;
711
-              obj['medical_code'] = project_month_prescriptions.project[a].project.medical_code;
707
+              // obj['medical_code'] = project_month_prescriptions.project[a].project.medical_code;
712
               obj['unit'] = project_month_prescriptions.project[a].unit;
708
               obj['unit'] = project_month_prescriptions.project[a].unit;
713
               obj['project_id'] = project_month_prescriptions.project[a].project_id;
709
               obj['project_id'] = project_month_prescriptions.project[a].project_id;
714
               count = count + project_month_prescriptions.project[a].count;
710
               count = count + project_month_prescriptions.project[a].count;
715
               // price = price + project_month_prescriptions.project[a].price
711
               // price = price + project_month_prescriptions.project[a].price
716
               obj['price'] = parseFloat(project_month_prescriptions.project[a].price)
712
               obj['price'] = parseFloat(project_month_prescriptions.project[a].price)
717
 
713
 
714
+
715
+              if (project_month_prescriptions.project[a].type == 2) {
716
+                console.log("~~~~~~~????????")
717
+
718
+                obj['statistical_classification'] = project_month_prescriptions.project[a].project.statistical_classification
719
+                obj['medical_code'] = project_month_prescriptions.project[a].project.medical_code
720
+                obj['project_name'] = project_month_prescriptions.project[a].project.project_name
721
+
722
+              } else if (project_month_prescriptions.project[a].type == 3) {
723
+                console.log("~~~~~~~????????2222222")
724
+
725
+                obj['statistical_classification'] = ''
726
+                obj['medical_code'] = project_month_prescriptions.project[a].good_info.medical_insurance_number
727
+                obj['project_name'] = project_month_prescriptions.project[a].good_info.good_name
728
+              }
729
+
718
             }
730
             }
719
           }
731
           }
720
           obj['total'] = count;
732
           obj['total'] = count;
767
 
779
 
768
         this.curMonthPrescriptions = this.month_prescriptions[0]
780
         this.curMonthPrescriptions = this.month_prescriptions[0]
769
 
781
 
782
+        console.log("~~~~~~~~~")
783
+
784
+        console.log(this.curMonthPrescriptions)
785
+        console.log("~~~~~~~~~")
786
+
787
+
770
       },
788
       },
771
 
789
 
772
       // setMonthPrescription(month_prescriptions) {
790
       // setMonthPrescription(month_prescriptions) {
1019
                       price: prescription.project[b].price,
1037
                       price: prescription.project[b].price,
1020
                       remark: prescription.project[b].remark,
1038
                       remark: prescription.project[b].remark,
1021
                       medical_code: prescription.project[b].project.medical_code,
1039
                       medical_code: prescription.project[b].project.medical_code,
1022
-                      unit: prescription.project[b].project.unit
1040
+                      unit: prescription.project[b].unit
1023
                     };
1041
                     };
1042
+                    if (prescription.project[b].type == 2) {
1043
+                      obj['statistical_classification'] = prescription.project[b].project.statistical_classification
1044
+                      obj['medical_code'] = prescription.project[b].project.medical_code
1045
+                      obj['project_name'] = prescription.project[b].project.project_name
1046
+
1047
+                    } else if (prescription.project[b].type == 3) {
1048
+                      obj['statistical_classification'] = ''
1049
+                      obj['medical_code'] = prescription.project[b].good_info.medical_insurance_number
1050
+                      obj['project_name'] = prescription.project[b].good_info.good_name
1051
+                    }
1024
                     tempProject.push(obj)
1052
                     tempProject.push(obj)
1025
                   }
1053
                   }
1026
 
1054
 
1124
                       price: prescription.project[b].price,
1152
                       price: prescription.project[b].price,
1125
                       remark: prescription.project[b].remark,
1153
                       remark: prescription.project[b].remark,
1126
                       medical_code: prescription.project[b].project.medical_code,
1154
                       medical_code: prescription.project[b].project.medical_code,
1127
-                      unit: prescription.project[b].project.unit
1155
+                      unit: prescription.project[b].unit
1128
                     };
1156
                     };
1157
+                    if (prescription.project[b].type == 2) {
1158
+                      obj['statistical_classification'] = prescription.project[b].project.statistical_classification
1159
+                      obj['medical_code'] = prescription.project[b].project.medical_code
1160
+                      obj['project_name'] = prescription.project[b].project.project_name
1161
+
1162
+                    } else if (prescription.project[b].type == 3) {
1163
+                      obj['statistical_classification'] = ''
1164
+                      obj['medical_code'] = prescription.project[b].good_info.medical_insurance_number
1165
+                      obj['project_name'] = prescription.project[b].good_info.good_name
1166
+                    }
1129
                     tempProject.push(obj)
1167
                     tempProject.push(obj)
1130
                   }
1168
                   }
1131
 
1169
 
2389
               this.curStatus = 1
2427
               this.curStatus = 1
2390
             }
2428
             }
2391
 
2429
 
2392
-           if(this.activeName == 2){
2393
-
2394
-              for(let i = 0; i<temp2.length;i++){
2395
-               for(let j=0;j<this.hisList.length;j++){
2396
-                   if(temp2[i].id == this.hisList[j].project_id){
2397
-                      temp2[i].total =  this.hisList[j].number
2398
-                   }
2399
-               }
2400
-              }
2401
-            }
2430
+           // if(this.activeName == 2){
2431
+           //
2432
+           //  //   for(let i = 0; i<temp2.length;i++){
2433
+           //  //    for(let j=0;j<this.hisList.length;j++){
2434
+           //  //        if(temp2[i].id == this.hisList[j].project_id){
2435
+           //  //           temp2[i].total =  this.hisList[j].number
2436
+           //  //        }
2437
+           //  //    }
2438
+           //  //   }
2439
+           //  // }
2402
 
2440
 
2403
 
2441
 
2404
             if (temp2.length > 0) {
2442
             if (temp2.length > 0) {
2405
-              console.log("temp2222222222",temp2);
2406
               for (let b = 0; b < temp2.length; b++) {
2443
               for (let b = 0; b < temp2.length; b++) {
2407
                 let obj = {
2444
                 let obj = {
2408
                   id: 0,
2445
                   id: 0,
2417
                   price: temp2[b].price,
2454
                   price: temp2[b].price,
2418
                   remark: '',
2455
                   remark: '',
2419
                   medical_code: temp2[b].medical_code,
2456
                   medical_code: temp2[b].medical_code,
2420
-                  unit: temp2[b].unit
2421
-                };
2457
+                  unit: temp2[b].unit,
2458
+                  type: temp2[b].type
2459
+                }
2422
                 if (obj.total == 0) {
2460
                 if (obj.total == 0) {
2423
                   obj.total = 1
2461
                   obj.total = 1
2424
                 }
2462
                 }
2463
+                if (obj.type == 3) {
2464
+                  obj.single_dose = 1
2465
+                }
2425
                 this.prescriptions[i].project.push(obj)
2466
                 this.prescriptions[i].project.push(obj)
2426
               }
2467
               }
2427
               this.curStatus = 2
2468
               this.curStatus = 2
2428
             }
2469
             }
2429
 
2470
 
2430
             this.curPrescriptions = this.prescriptions[i];
2471
             this.curPrescriptions = this.prescriptions[i];
2431
-            console.log("~~~~~~~~~");
2432
-            console.log("~~~~~~~~~");
2433
 
2472
 
2434
             this.$refs.multipleTable.clearSelection();
2473
             this.$refs.multipleTable.clearSelection();
2435
             this.$refs.tables.clearSelection()
2474
             this.$refs.tables.clearSelection()
2449
       getlist() {
2488
       getlist() {
2450
         getHisProject().then(response => {
2489
         getHisProject().then(response => {
2451
           if (response.data.state == 1) {
2490
           if (response.data.state == 1) {
2452
-            var project = response.data.data.project;
2453
-            this.tabProject = project;
2454
-            this.allProject = project
2491
+            var project = response.data.data.project
2492
+            for (let i = 0; i < project.length; i++) {
2493
+              let obj = {
2494
+                id: project[i].id,
2495
+                project_name: project[i].project_name,
2496
+                statistical_classification: project[i].statistical_classification,
2497
+                single_dose: project[i].single_dose,
2498
+                delivery_way: project[i].delivery_way,
2499
+                execution_frequency: project[i].execution_frequency,
2500
+                number_days: project[i].number_days,
2501
+                price: project[i].price,
2502
+                medical_code: project[i].medical_code,
2503
+                unit: project[i].unit,
2504
+                type: 2
2505
+              }
2506
+
2507
+              this.tabProject.push(obj)
2508
+            }
2509
+
2510
+            var good_info = response.data.data.good_info
2511
+
2512
+            for (let i = 0; i < good_info.length; i++) {
2513
+              let obj = {
2514
+                id: good_info[i].id,
2515
+                project_name: good_info[i].good_name,
2516
+                statistical_classification: 0,
2517
+                single_dose: 1,
2518
+                delivery_way: '',
2519
+                execution_frequency: '',
2520
+                number_days: 1,
2521
+                price: good_info[i].retail_price,
2522
+                medical_code: good_info[i].medical_insurance_number,
2523
+                unit: this.getGoodUnit(good_info[i].good_unit),
2524
+                type: 3
2525
+              }
2526
+              this.tabProject.push(obj)
2527
+            }
2528
+
2529
+            this.allProject = this.tabProject
2455
 
2530
 
2456
           }
2531
           }
2457
         })
2532
         })
2533
+
2458
       }, deepClone(source) {
2534
       }, deepClone(source) {
2459
         if (!source && typeof source !== 'object') {
2535
         if (!source && typeof source !== 'object') {
2460
           throw new Error('error arguments', 'shallowClone')
2536
           throw new Error('error arguments', 'shallowClone')
2477
             this.tabPrjectTeam = team
2553
             this.tabPrjectTeam = team
2478
           }
2554
           }
2479
         })
2555
         })
2556
+      }, getGoodUnit(id) {
2557
+        var goodUnit = this.$store.getters.good_unit
2558
+        for (let i = 0; i < goodUnit.length; i++) {
2559
+          if (goodUnit[i].id == id) {
2560
+            return goodUnit[i].name
2561
+          }
2562
+        }
2480
       },
2563
       },
2481
       selectTeam(row) {
2564
       selectTeam(row) {
2482
         console.log("row",row);
2565
         console.log("row",row);
2483
         var arr = [];
2566
         var arr = [];
2484
         for (let i = 0; i < row.length; i++) {
2567
         for (let i = 0; i < row.length; i++) {
2485
-          arr.push(row[i].project_id)
2568
+          arr.push(row[i].item_id)
2486
         }
2569
         }
2487
         var ids = arr.join(',');
2570
         var ids = arr.join(',');
2488
         var strArr = ids.split(',');
2571
         var strArr = ids.split(',');
2507
         };
2590
         };
2508
         getPojectListById(params).then(response => {
2591
         getPojectListById(params).then(response => {
2509
           if (response.data.state == 1) {
2592
           if (response.data.state == 1) {
2510
-            var project = response.data.data.project;
2511
-            this.teamList = [];
2512
-            this.teamList = project
2593
+            this.teamList = []
2594
+            var project = response.data.data.project
2595
+            for (let i = 0; i < project.length; i++) {
2596
+              if (project[i].type == 2) {
2597
+
2598
+                let obj = {
2599
+                  id: project[i].project_id,
2600
+                  project_name: project[i].project.project_name,
2601
+                  statistical_classification: project[i].project.statistical_classification,
2602
+                  single_dose: project[i].project.single_dose,
2603
+                  delivery_way: project[i].project.delivery_way,
2604
+                  execution_frequency: project[i].project.execution_frequency,
2605
+                  number_days: project[i].project.number_days,
2606
+                  total: project[i].number,
2607
+                  price: project[i].project.price,
2608
+                  remark: '',
2609
+                  medical_code: project[i].project.medical_code,
2610
+                  unit: project[i].project.unit,
2611
+                  type: project[i].type
2612
+                }
2613
+                if (obj.total == 0) {
2614
+                  obj.total = 1
2615
+                }
2616
+
2617
+                this.teamList.push(obj)
2618
+              } else if (project[i].type == 3) {
2619
+                let obj = {
2620
+                  id: project[i].project_id,
2621
+                  project_name: project[i].good_info.good_name,
2622
+                  statistical_classification: "",
2623
+                  single_dose: "",
2624
+                  delivery_way: "",
2625
+                  execution_frequency:"",
2626
+                  number_days:"",
2627
+                  total: project[i].number,
2628
+                  price: project[i].good_info.retail_price,
2629
+                  remark: '',
2630
+                  medical_code: project[i].good_info.medical_insurance_number,
2631
+                  unit: project[i].good_info.unit,
2632
+                  type: project[i].type
2633
+                }
2634
+                if (obj.total == 0) {
2635
+                  obj.total = 1
2636
+                }
2637
+                this.teamList.push(obj)
2638
+
2639
+                console.log( this.teamList)
2640
+
2641
+              }
2642
+            }
2643
+
2644
+
2513
           }
2645
           }
2514
         })
2646
         })
2647
+
2515
       }, changeDoctor(val) {
2648
       }, changeDoctor(val) {
2516
         for (let i = 0; i < this.doctors.length; i++) {
2649
         for (let i = 0; i < this.doctors.length; i++) {
2517
           if (this.doctors[i].admin_user_id == this.doctorValue) {
2650
           if (this.doctors[i].admin_user_id == this.doctorValue) {

+ 20 - 1
src/xt_pages/hospitalStation/components/inquiriesDetail.vue View File

295
                   medical_code: prescription.project[b].project.medical_code,
295
                   medical_code: prescription.project[b].project.medical_code,
296
                   unit:prescription.project[b].project.unit,
296
                   unit:prescription.project[b].project.unit,
297
                 };
297
                 };
298
+                if(prescription.project[b].type == 2){
299
+                  obj['statistical_classification'] =  prescription.project[b].project.statistical_classification
300
+                  obj['medical_code'] =  prescription.project[b].project.medical_code
301
+                  obj['project_name'] =  prescription.project[b].project.project_name
302
+                  obj['type'] =  2
303
+
304
+
305
+
306
+                }else if(prescription.project[b].type == 3){
307
+                  obj['statistical_classification'] = ""
308
+                  obj['medical_code'] =  prescription.project[b].good_info.medical_insurance_number
309
+                  obj['project_name'] =  prescription.project[b].good_info.good_name
310
+                  obj['type'] =  3
311
+
312
+                }
298
                 tempProject.push(obj)
313
                 tempProject.push(obj)
299
               }
314
               }
315
+
316
+              console.log(tempProject)
300
               let index = i + 1;
317
               let index = i + 1;
301
               let obj = {
318
               let obj = {
302
                 id: prescription.id,
319
                 id: prescription.id,
306
                 type: response.data.data.prescription[i].type
323
                 type: response.data.data.prescription[i].type
307
               };
324
               };
308
               this.prescriptions.push(obj);
325
               this.prescriptions.push(obj);
309
-              console.log(this.prescriptions);
310
 
326
 
311
               this.curPrescriptions = this.prescriptions[0]
327
               this.curPrescriptions = this.prescriptions[0]
328
+
329
+
330
+
312
             }
331
             }
313
           }
332
           }
314
         });
333
         });

+ 1 - 1
src/xt_pages/hospitalStation/components/newPrescriptionTable.vue View File

63
       </el-table-column>
63
       </el-table-column>
64
       <el-table-column align="center" prop="statistical_classification" width="100" label="组">
64
       <el-table-column align="center" prop="statistical_classification" width="100" label="组">
65
         <template slot-scope="scope">
65
         <template slot-scope="scope">
66
-          <div>{{getGroup(scope.row.statistical_classification)}}</div>
66
+          <div>{{scope.row.type == 2?getGroup(scope.row.statistical_classification):"耗材"}}</div>
67
         </template>
67
         </template>
68
       </el-table-column>
68
       </el-table-column>
69
       <el-table-column align="center" prop="single_dose" width="100" label="单次用量">
69
       <el-table-column align="center" prop="single_dose" width="100" label="单次用量">

+ 41 - 23
src/xt_pages/hospitalStation/components/nextOrLastPrescription.vue View File

1
 <template>
1
 <template>
2
   <el-dialog
2
   <el-dialog
3
-    :title="name"
4
-    :visible.sync="isLastOrNextVisible"
5
-    @close="hide"
6
-    width="1010px"
7
-    :modal-append-to-body="false"
8
-    class="isLastOrNext"
3
+          :title="name"
4
+          :visible.sync="isLastOrNextVisible"
5
+          @close="hide"
6
+          width="1010px"
7
+          :modal-append-to-body="false"
8
+          class="isLastOrNext"
9
   >
9
   >
10
     <div class="txsj" style="text-align:center;">
10
     <div class="txsj" style="text-align:center;">
11
       <el-button
11
       <el-button
12
-        round
12
+              round
13
 
13
 
14
-        @click="openLast(3)"
14
+              @click="openLast(3)"
15
       >上一方
15
       >上一方
16
       </el-button>
16
       </el-button>
17
 
17
 
18
       <el-button
18
       <el-button
19
-        round
20
-        @click="openNext(4)"
19
+              round
20
+              @click="openNext(4)"
21
       >下一方
21
       >下一方
22
       </el-button>
22
       </el-button>
23
     </div>
23
     </div>
39
 
39
 
40
             <el-table-column align="center" prop="single_dose" width="90" label="单次用量">
40
             <el-table-column align="center" prop="single_dose" width="90" label="单次用量">
41
               <template slot-scope="scope">
41
               <template slot-scope="scope">
42
-                  <div>{{scope.row.single_dose}}{{scope.row.single_dose_unit}}</div>
42
+                <div>{{scope.row.single_dose}}{{scope.row.single_dose_unit}}</div>
43
               </template>
43
               </template>
44
             </el-table-column>
44
             </el-table-column>
45
             <el-table-column align="center" prop="delivery_way" width="100" label="用法">
45
             <el-table-column align="center" prop="delivery_way" width="100" label="用法">
81
             <el-table-column align="center" type="index" width="60" label="序号"></el-table-column>
81
             <el-table-column align="center" type="index" width="60" label="序号"></el-table-column>
82
             <el-table-column align="center" prop="project_name" width="160" label="名称">
82
             <el-table-column align="center" prop="project_name" width="160" label="名称">
83
               <template slot-scope="scope">
83
               <template slot-scope="scope">
84
-                <span>{{ scope.row.project.project_name }}</span>
84
+                <span>{{ scope.row.type == 2 ?scope.row.project.project_name:scope.row.good_info.good_name}}</span>
85
               </template>
85
               </template>
86
             </el-table-column>
86
             </el-table-column>
87
             <el-table-column align="center" prop="statistical_classification" width="100" label="组">
87
             <el-table-column align="center" prop="statistical_classification" width="100" label="组">
88
-              <template slot-scope="scope">{{getGroup(scope.row.statistical_classification)}}</template>
88
+              <template slot-scope="scope">{{ scope.row.type == 2 ?getGroup(scope.row.statistical_classification):"耗材"}}</template>
89
             </el-table-column>
89
             </el-table-column>
90
             <el-table-column align="center" prop="single_dose" width="90" label="单次用量">
90
             <el-table-column align="center" prop="single_dose" width="90" label="单次用量">
91
               <template slot-scope="scope">
91
               <template slot-scope="scope">
117
             </el-table-column>
117
             </el-table-column>
118
             <el-table-column align="center" prop="total" width="70" label="总量">
118
             <el-table-column align="center" prop="total" width="70" label="总量">
119
               <template slot-scope="scope">
119
               <template slot-scope="scope">
120
-                  <div>{{ scope.row.total }}{{scope.row.unit}}</div>
120
+                <div>{{ scope.row.total }}{{scope.row.unit}}</div>
121
               </template>
121
               </template>
122
             </el-table-column>
122
             </el-table-column>
123
             <el-table-column align="center" prop="name" width="60" label="单价">
123
             <el-table-column align="center" prop="name" width="60" label="单价">
165
         name:"",
165
         name:"",
166
         request_record_date:'',
166
         request_record_date:'',
167
         patient_id:0,
167
         patient_id:0,
168
-         allPrescription: [
168
+        allPrescription: [
169
           {
169
           {
170
             check_group: [],
170
             check_group: [],
171
             prescriptions: [
171
             prescriptions: [
235
       }
235
       }
236
     }, methods: {
236
     }, methods: {
237
       openLast(val) {
237
       openLast(val) {
238
-       if (val == 3) {
238
+        if (val == 3) {
239
           let params = {
239
           let params = {
240
             patient_id: this.patient_id,
240
             patient_id: this.patient_id,
241
             record_time: this.request_record_date,
241
             record_time: this.request_record_date,
242
-            type: 1
242
+            type: 1,
243
+            p_type:1,
243
           };
244
           };
244
 
245
 
245
           this.GetNextOrLastHisPrescription(params)
246
           this.GetNextOrLastHisPrescription(params)
251
           let params = {
252
           let params = {
252
             patient_id: this.patient_id,
253
             patient_id: this.patient_id,
253
             record_time: this.request_record_date,
254
             record_time: this.request_record_date,
254
-            type: 2
255
+            type: 2,
256
+            p_type:1,
257
+
255
           };
258
           };
256
           this.GetNextOrLastHisPrescription(params)
259
           this.GetNextOrLastHisPrescription(params)
257
         }
260
         }
325
               let obj = {
328
               let obj = {
326
                 id: 0,
329
                 id: 0,
327
                 project_id: prescription.project[b].project_id,
330
                 project_id: prescription.project[b].project_id,
328
-                project_name: prescription.project[b].project.project_name,
329
-                statistical_classification: prescription.project[b].project.statistical_classification,
331
+                // project_name: prescription.project[b].project.project_name,
332
+                // statistical_classification: prescription.project[b].project.statistical_classification,
330
                 single_dose: prescription.project[b].single_dose,
333
                 single_dose: prescription.project[b].single_dose,
331
                 delivery_way: prescription.project[b].delivery_way,
334
                 delivery_way: prescription.project[b].delivery_way,
332
                 execution_frequency: prescription.project[b].execution_frequency,
335
                 execution_frequency: prescription.project[b].execution_frequency,
334
                 total:prescription.project[b].count.toString(),
337
                 total:prescription.project[b].count.toString(),
335
                 price:prescription.project[b].price,
338
                 price:prescription.project[b].price,
336
                 remark:prescription.project[b].remark,
339
                 remark:prescription.project[b].remark,
337
-                medical_code:prescription.project[b].project.medical_code,
340
+                unit: prescription.project[b].unit,
341
+                type: prescription.project[b].type,
342
+
343
+                // medical_code:prescription.project[b].project.medical_code,
338
               };
344
               };
345
+
346
+              if(prescription.project[b].type == 2){
347
+                obj['statistical_classification'] =  prescription.project[b].project.statistical_classification
348
+                obj['medical_code'] =  prescription.project[b].project.medical_code
349
+                obj['project_name'] =  prescription.project[b].project.project_name
350
+
351
+              }else if(prescription.project[b].type == 3){
352
+                obj['statistical_classification'] = ""
353
+                obj['medical_code'] =  prescription.project[b].good_info.medical_insurance_number
354
+                obj['project_name'] =  prescription.project[b].good_info.good_name
355
+              }
356
+
339
               tempProject.push(obj)
357
               tempProject.push(obj)
340
             }
358
             }
341
             let obj = {
359
             let obj = {
405
 </script>
423
 </script>
406
 
424
 
407
 <style lang="scss">
425
 <style lang="scss">
408
-.isLastOrNext{
426
+  .isLastOrNext{
409
   .el-dialog__body{
427
   .el-dialog__body{
410
     padding:0px 20px 30px;
428
     padding:0px 20px 30px;
411
   }
429
   }
413
     margin-top: 10px;
431
     margin-top: 10px;
414
     font-size: 14px;
432
     font-size: 14px;
415
   }
433
   }
416
-}
434
+  }
417
 </style>
435
 </style>

+ 13 - 12
src/xt_pages/hospitalStation/components/prescriptionTable.vue View File

75
         </template>
75
         </template>
76
       </el-table-column>
76
       </el-table-column>
77
     </el-table>
77
     </el-table>
78
-
79
     <el-table v-if="activeType == 2" :data="prescription.project" border style="width: 99%;" :row-style="{ color: '#303133' }"
78
     <el-table v-if="activeType == 2" :data="prescription.project" border style="width: 99%;" :row-style="{ color: '#303133' }"
80
               :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}" highlight-current-row>
79
               :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}" highlight-current-row>
81
-       <el-table-column align="center" type="index" width="40" label="序号"></el-table-column>
80
+      <el-table-column align="center" type="index" width="40" label="序号"></el-table-column>
82
       <el-table-column align="center" prop="project_name" label="名称">
81
       <el-table-column align="center" prop="project_name" label="名称">
83
         <template slot-scope="scope"><span :title="scope.row.project_name">{{ scope.row.project_name }}</span></template>
82
         <template slot-scope="scope"><span :title="scope.row.project_name">{{ scope.row.project_name }}</span></template>
84
       </el-table-column>
83
       </el-table-column>
85
       <el-table-column align="center" prop="statistical_classification" width="100" label="组">
84
       <el-table-column align="center" prop="statistical_classification" width="100" label="组">
86
-        <template slot-scope="scope">{{getGroup(scope.row.statistical_classification)}}</template>
85
+        <template slot-scope="scope">{{scope.row.type == 2?getGroup(scope.row.statistical_classification):"耗材"}}</template>
87
       </el-table-column>
86
       </el-table-column>
88
       <el-table-column align="center" prop="single_dose" width="80" label="单次用量">
87
       <el-table-column align="center" prop="single_dose" width="80" label="单次用量">
89
         <template slot-scope="scope">
88
         <template slot-scope="scope">
95
       <el-table-column align="center" prop="delivery_way" width="80" label="用法">
94
       <el-table-column align="center" prop="delivery_way" width="80" label="用法">
96
         <template slot-scope="scope">
95
         <template slot-scope="scope">
97
           <el-autocomplete
96
           <el-autocomplete
98
-            style="width:100%;"
99
-            class="inline-input"
100
-            v-model="scope.row.delivery_way"
101
-            :fetch-suggestions="querySearch2"
102
-            placeholder="请输入内容"
97
+                  style="width:100%;"
98
+                  class="inline-input"
99
+                  v-model="scope.row.delivery_way"
100
+                  :fetch-suggestions="querySearch2"
101
+                  placeholder="请输入内容"
103
           ></el-autocomplete>
102
           ></el-autocomplete>
104
         </template>
103
         </template>
105
       </el-table-column>
104
       </el-table-column>
108
           <el-input v-model="scope.row.execution_frequency" placeholder=""></el-input>
107
           <el-input v-model="scope.row.execution_frequency" placeholder=""></el-input>
109
         </template>
108
         </template>
110
       </el-table-column>
109
       </el-table-column>
111
-      <el-table-column align="center" prop="number_days" width="50" label="天数">
110
+      <el-table-column align="center" prop="number_days" width="70" label="天数">
112
         <template slot-scope="scope">
111
         <template slot-scope="scope">
113
-          <el-input v-model="scope.row.number_days" @input="getProjectDay(scope)" placeholder=""></el-input>
114
-          <div>{{'天'}}</div>
112
+          <div style="display:flex;align-items:center;">
113
+            <el-input v-model="scope.row.number_days" @input="getProjectDay(scope)" placeholder=""></el-input>
114
+            <div>{{'天'}}</div>
115
+          </div>
115
         </template>
116
         </template>
116
       </el-table-column>
117
       </el-table-column>
117
       <el-table-column align="center" prop="total" width="70" label="总量">
118
       <el-table-column align="center" prop="total" width="70" label="总量">
132
       </el-table-column>
133
       </el-table-column>
133
       <el-table-column align="center" prop="name" width="50" label="备注">
134
       <el-table-column align="center" prop="name" width="50" label="备注">
134
         <template slot-scope="scope">
135
         <template slot-scope="scope">
135
-           <el-input v-model="scope.row.remark" :title="scope.row.remark"></el-input>
136
+          <el-input v-model="scope.row.remark" :title="scope.row.remark"></el-input>
136
         </template>
137
         </template>
137
       </el-table-column>
138
       </el-table-column>
138
       <el-table-column align="center" width="40" prop="name" label="操作">
139
       <el-table-column align="center" width="40" prop="name" label="操作">

+ 107 - 11
src/xt_pages/hospitalStation/doctorDesk.vue View File

476
           let count = 0;
476
           let count = 0;
477
           for (let a = 0; a < project_month_prescriptions.project.length; a++) {
477
           for (let a = 0; a < project_month_prescriptions.project.length; a++) {
478
             if (project_ids[i].price == project_month_prescriptions.project[a].price) {
478
             if (project_ids[i].price == project_month_prescriptions.project[a].price) {
479
+
480
+              if(project_month_prescriptions.project[a].type == 2){
481
+                obj['statistical_classification'] =  project_month_prescriptions.project[a].project.statistical_classification
482
+                obj['medical_code'] =  project_month_prescriptions.project[a].project.medical_code
483
+                obj['project_name'] =  project_month_prescriptions.project[a].project.project_name
484
+
485
+
486
+              }else if(project_month_prescriptions.project[a].type == 3){
487
+                obj['statistical_classification'] = ""
488
+                obj['medical_code'] =  project_month_prescriptions.project[a].good_info.medical_insurance_number
489
+                obj['project_name'] =  project_month_prescriptions.project[a].good_info.good_name
490
+
491
+              }
492
+              obj['type'] = project_month_prescriptions.project[a].type
493
+
479
               obj['project_name'] = project_month_prescriptions.project[a].project.project_name;
494
               obj['project_name'] = project_month_prescriptions.project[a].project.project_name;
480
               obj['statistical_classification'] = project_month_prescriptions.project[a].project.statistical_classification;
495
               obj['statistical_classification'] = project_month_prescriptions.project[a].project.statistical_classification;
481
               obj['single_dose'] = project_month_prescriptions.project[a].single_dose;
496
               obj['single_dose'] = project_month_prescriptions.project[a].single_dose;
776
             this.patientInfo = response.data.data.xt_info;
791
             this.patientInfo = response.data.data.xt_info;
777
             this.hisPatientInfo = response.data.data.his_info;
792
             this.hisPatientInfo = response.data.data.his_info;
778
             this.case_history = response.data.data.case_history;
793
             this.case_history = response.data.data.case_history;
779
-            console.log("病历222222",this.case_history);
780
             this.info = response.data.data.info;
794
             this.info = response.data.data.info;
781
             this.doctors = response.data.data.doctors;
795
             this.doctors = response.data.data.doctors;
782
             this.department = response.data.data.department;
796
             this.department = response.data.data.department;
833
             //处方相关
847
             //处方相关
834
             this.prescriptionList = response.data.data.prescription;
848
             this.prescriptionList = response.data.data.prescription;
835
 
849
 
850
+
851
+
852
+
836
             if (response.data.data.prescription.length > 0) {
853
             if (response.data.data.prescription.length > 0) {
837
               for (let i = 0; i < response.data.data.prescription.length; i++) {
854
               for (let i = 0; i < response.data.data.prescription.length; i++) {
838
                 var prescription = response.data.data.prescription[i];
855
                 var prescription = response.data.data.prescription[i];
878
                     remark: prescription.project[b].remark,
895
                     remark: prescription.project[b].remark,
879
                     medical_code: prescription.project[b].project.medical_code,
896
                     medical_code: prescription.project[b].project.medical_code,
880
                     unit: prescription.project[b].project.unit,
897
                     unit: prescription.project[b].project.unit,
898
+                    type: prescription.project[b].type
881
                   };
899
                   };
900
+
901
+                  if(prescription.project[b].type == 2){
902
+                    obj['statistical_classification'] =  prescription.project[b].project.statistical_classification
903
+                    obj['medical_code'] =  prescription.project[b].project.medical_code
904
+                    obj['project_name'] =  prescription.project[b].project.project_name
905
+
906
+                  }else if(prescription.project[b].type == 3){
907
+                    obj['statistical_classification'] = ""
908
+                    obj['medical_code'] =  prescription.project[b].good_info.medical_insurance_number
909
+                    obj['project_name'] =  prescription.project[b].good_info.good_name
910
+                  }
882
                   tempProject.push(obj)
911
                   tempProject.push(obj)
883
                 }
912
                 }
884
 
913
 
916
                 this.prescriptions.push(obj)
945
                 this.prescriptions.push(obj)
917
               }
946
               }
918
             } else {
947
             } else {
948
+
949
+
950
+
919
               let obj = {
951
               let obj = {
920
                 id: 0,
952
                 id: 0,
921
                 name: '处方' + 1,
953
                 name: '处方' + 1,
922
                 advices: [],
954
                 advices: [],
923
                 project: [],
955
                 project: [],
924
                 addition: [],
956
                 addition: [],
925
-                orderStatus: 0,
957
+                order_status: 0,
926
                 pre_time: nowTime,
958
                 pre_time: nowTime,
927
 
959
 
928
               };
960
               };
1064
                           price: prescription.project[b].price,
1096
                           price: prescription.project[b].price,
1065
                           remark: prescription.project[b].remark,
1097
                           remark: prescription.project[b].remark,
1066
                           medical_code: prescription.project[b].project.medical_code,
1098
                           medical_code: prescription.project[b].project.medical_code,
1067
-                          unit: prescription.project[b].unit
1099
+                          unit: prescription.project[b].unit,
1100
+                          type: prescription.project[b].type,
1068
                         };
1101
                         };
1102
+                        if(prescription.project[b].type == 2){
1103
+                          obj['statistical_classification'] =  prescription.project[b].project.statistical_classification
1104
+                          obj['medical_code'] =  prescription.project[b].project.medical_code
1105
+                          obj['project_name'] =  prescription.project[b].project.project_name
1106
+
1107
+                        }else if(prescription.project[b].type == 3){
1108
+                          obj['statistical_classification'] = ""
1109
+                          obj['medical_code'] =  prescription.project[b].good_info.medical_insurance_number
1110
+                          obj['project_name'] =  prescription.project[b].good_info.good_name
1111
+                        }
1069
                         tempProject.push(obj)
1112
                         tempProject.push(obj)
1070
                       }
1113
                       }
1071
                       for (let b = 0; b < prescription.addition.length; b++) {
1114
                       for (let b = 0; b < prescription.addition.length; b++) {
1106
                       advices: [],
1149
                       advices: [],
1107
                       project: [],
1150
                       project: [],
1108
                       addition: [],
1151
                       addition: [],
1109
-                      orderStatus: 0,
1152
+                      order_status: 0,
1110
                       pre_time: nowTime,
1153
                       pre_time: nowTime,
1111
                     };
1154
                     };
1112
                     this.prescriptions.push(obj)
1155
                     this.prescriptions.push(obj)
1233
                           price: prescription.project[b].price,
1276
                           price: prescription.project[b].price,
1234
                           remark: prescription.project[b].remark,
1277
                           remark: prescription.project[b].remark,
1235
                           medical_code: prescription.project[b].project.medical_code,
1278
                           medical_code: prescription.project[b].project.medical_code,
1236
-                          unit: prescription.project[b].unit
1279
+                          unit: prescription.project[b].unit,
1280
+                          type:prescription.project[b].type,
1281
+
1237
                         };
1282
                         };
1283
+                        if(prescription.project[b].type == 2){
1284
+                          obj['statistical_classification'] =  prescription.project[b].project.statistical_classification
1285
+                          obj['medical_code'] =  prescription.project[b].project.medical_code
1286
+                          obj['project_name'] =  prescription.project[b].project.project_name
1287
+
1288
+                        }else if(prescription.project[b].type == 3){
1289
+                          obj['statistical_classification'] = ""
1290
+                          obj['medical_code'] =  prescription.project[b].good_info.medical_insurance_number
1291
+                          obj['project_name'] =  prescription.project[b].good_info.good_name
1292
+                        }
1293
+
1294
+
1238
                         tempProject.push(obj)
1295
                         tempProject.push(obj)
1239
                       }
1296
                       }
1240
                       for (let b = 0; b < prescription.addition.length; b++) {
1297
                       for (let b = 0; b < prescription.addition.length; b++) {
1275
                       advices: [],
1332
                       advices: [],
1276
                       project: [],
1333
                       project: [],
1277
                       addition: [],
1334
                       addition: [],
1278
-                      orderStatus: 0,
1335
+                      order_status: 0,
1279
                       pre_time: nowTime,
1336
                       pre_time: nowTime,
1280
                     };
1337
                     };
1281
                     this.prescriptions.push(obj)
1338
                     this.prescriptions.push(obj)
1403
                           price: prescription.project[b].price,
1460
                           price: prescription.project[b].price,
1404
                           remark: prescription.project[b].remark,
1461
                           remark: prescription.project[b].remark,
1405
                           medical_code: prescription.project[b].project.medical_code,
1462
                           medical_code: prescription.project[b].project.medical_code,
1406
-                          unit: prescription.project[b].unit
1463
+                          unit: prescription.project[b].unit,
1464
+                          type:prescription.project[b].type,
1465
+
1407
                         };
1466
                         };
1467
+                        if(prescription.project[b].type == 2){
1468
+                          obj['statistical_classification'] =  prescription.project[b].project.statistical_classification
1469
+                          obj['medical_code'] =  prescription.project[b].project.medical_code
1470
+                          obj['project_name'] =  prescription.project[b].project.project_name
1471
+
1472
+                        }else if(prescription.project[b].type == 3){
1473
+                          obj['statistical_classification'] = ""
1474
+                          obj['medical_code'] =  prescription.project[b].good_info.medical_insurance_number
1475
+                          obj['project_name'] =  prescription.project[b].good_info.good_name
1476
+                        }
1477
+
1408
                         tempProject.push(obj)
1478
                         tempProject.push(obj)
1409
                       }
1479
                       }
1410
                       for (let b = 0; b < prescription.addition.length; b++) {
1480
                       for (let b = 0; b < prescription.addition.length; b++) {
1445
                       advices: [],
1515
                       advices: [],
1446
                       project: [],
1516
                       project: [],
1447
                       addition: [],
1517
                       addition: [],
1448
-                      orderStatus: 0,
1518
+                      order_status: 0,
1449
                       pre_time: nowTime,
1519
                       pre_time: nowTime,
1450
                     };
1520
                     };
1451
                     this.prescriptions.push(obj)
1521
                     this.prescriptions.push(obj)
1625
                         price: prescription.project[b].price,
1695
                         price: prescription.project[b].price,
1626
                         remark: prescription.project[b].remark,
1696
                         remark: prescription.project[b].remark,
1627
                         medical_code: prescription.project[b].project.medical_code,
1697
                         medical_code: prescription.project[b].project.medical_code,
1628
-                        unit: prescription.project[b].unit
1698
+                        unit: prescription.project[b].unit,
1699
+                        type:prescription.project[b].type,
1700
+
1629
                       };
1701
                       };
1702
+                      if(prescription.project[b].type == 2){
1703
+                        obj['statistical_classification'] =  prescription.project[b].project.statistical_classification
1704
+                        obj['medical_code'] =  prescription.project[b].project.medical_code
1705
+                        obj['project_name'] =  prescription.project[b].project.project_name
1706
+
1707
+                      }else if(prescription.project[b].type == 3){
1708
+                        obj['statistical_classification'] = ""
1709
+                        obj['medical_code'] =  prescription.project[b].good_info.medical_insurance_number
1710
+                        obj['project_name'] =  prescription.project[b].good_info.good_name
1711
+                      }
1712
+
1630
                       tempProject.push(obj)
1713
                       tempProject.push(obj)
1631
                     }
1714
                     }
1632
                     for (let b = 0; b < prescription.addition.length; b++) {
1715
                     for (let b = 0; b < prescription.addition.length; b++) {
1669
                     advices: [],
1752
                     advices: [],
1670
                     project: [],
1753
                     project: [],
1671
                     addition: [],
1754
                     addition: [],
1672
-                    orderStatus: 0,
1755
+                    order_status: 0,
1673
                     pre_time: nowTime
1756
                     pre_time: nowTime
1674
 
1757
 
1675
                   };
1758
                   };
1800
                       price: prescription.project[b].price,
1883
                       price: prescription.project[b].price,
1801
                       remark: prescription.project[b].remark,
1884
                       remark: prescription.project[b].remark,
1802
                       medical_code: prescription.project[b].project.medical_code,
1885
                       medical_code: prescription.project[b].project.medical_code,
1886
+                      type:prescription.project[b].type,
1887
+
1803
                       unit: prescription.project[b].unit
1888
                       unit: prescription.project[b].unit
1804
                     };
1889
                     };
1890
+                    if(prescription.project[b].type == 2){
1891
+                      obj['statistical_classification'] =  prescription.project[b].project.statistical_classification
1892
+                      obj['medical_code'] =  prescription.project[b].project.medical_code
1893
+                      obj['project_name'] =  prescription.project[b].project.project_name
1894
+
1895
+                    }else if(prescription.project[b].type == 3){
1896
+                      obj['statistical_classification'] = ""
1897
+                      obj['medical_code'] =  prescription.project[b].good_info.medical_insurance_number
1898
+                      obj['project_name'] =  prescription.project[b].good_info.good_name
1899
+                    }
1900
+
1805
                     tempProject.push(obj)
1901
                     tempProject.push(obj)
1806
                   }
1902
                   }
1807
                   for (let b = 0; b < prescription.addition.length; b++) {
1903
                   for (let b = 0; b < prescription.addition.length; b++) {
1842
                   advices: [],
1938
                   advices: [],
1843
                   project: [],
1939
                   project: [],
1844
                   addition: [],
1940
                   addition: [],
1845
-                  orderStatus: 0,
1941
+                  order_status: 0,
1846
                   pre_time: nowTime,
1942
                   pre_time: nowTime,
1847
                 };
1943
                 };
1848
                 this.prescriptions.push(obj)
1944
                 this.prescriptions.push(obj)

+ 26 - 16
src/xt_pages/hospitalStation/listPrint.vue View File

51
       getInfo(order_id) {
51
       getInfo(order_id) {
52
         let params = {
52
         let params = {
53
           id: order_id
53
           id: order_id
54
-        };
54
+        }
55
         getHisOrderDetail(params).then(response => {
55
         getHisOrderDetail(params).then(response => {
56
           if (response.data.state == 0) {
56
           if (response.data.state == 0) {
57
-            this.$message.error(response.data.msg);
57
+            this.$message.error(response.data.msg)
58
             return false
58
             return false
59
           } else {
59
           } else {
60
-            this.order = response.data.data.order;
61
-            this.patient = response.data.data.patient;
62
-            console.log(this.patient);
63
-            this.admin = response.data.data.admin_info;
60
+            this.order = response.data.data.order
61
+            this.patient = response.data.data.patient
62
+            console.log(this.patient)
63
+            this.admin = response.data.data.admin_info
64
 
64
 
65
 
65
 
66
             for (let i = 0; i < response.data.data.order_info.length; i++) {
66
             for (let i = 0; i < response.data.data.order_info.length; i++) {
67
-              var infos = response.data.data.order_info[i];
67
+              var infos = response.data.data.order_info[i]
68
               let obj = {
68
               let obj = {
69
                 med_chrgitm_type: this.getType(infos.med_chrgitm_type),
69
                 med_chrgitm_type: this.getType(infos.med_chrgitm_type),
70
                 price: infos.pric,
70
                 price: infos.pric,
71
                 count: infos.cnt
71
                 count: infos.cnt
72
-              };
72
+              }
73
+              console.log(infos)
73
               if (infos.advice && infos.advice.id == 0 && infos.project && infos.project.id > 0) {
74
               if (infos.advice && infos.advice.id == 0 && infos.project && infos.project.id > 0) {
74
-                obj['p_time'] = this.getTimes(infos.project.prescription.ctime);
75
-                obj['name'] = infos.project.project.project_name;
76
-                obj['spec'] = 1;
77
-                obj['unit'] = infos.project.project.unit
75
+                obj['p_time'] = this.getTimes(infos.project.prescription.ctime)
76
+                if(infos.project.type == 2){
77
+                  obj['name'] = infos.project.project.project_name
78
+
79
+
80
+                }else if (infos.project.type == 3){
81
+
82
+                  obj['name'] = infos.project.good_info.good_name
83
+
84
+                }
85
+                obj['spec'] = 1
86
+                obj['unit'] = infos.project.unit
78
 
87
 
79
               }
88
               }
80
 
89
 
81
               if (infos.advice && infos.advice.id > 0 && infos.project && infos.project.id == 0) {
90
               if (infos.advice && infos.advice.id > 0 && infos.project && infos.project.id == 0) {
82
-                obj['p_time'] = this.getTimes(infos.advice.prescription.ctime);
83
-                obj['name'] = infos.advice.advice_name;
84
-                obj['spec'] = infos.advice.drug.drug_spec;
91
+                obj['p_time'] = this.getTimes(infos.advice.prescription.ctime)
92
+                obj['name'] = infos.advice.advice_name
93
+                obj['spec'] = infos.advice.drug.drug_spec
85
                 obj['unit'] = infos.advice.drug.max_unit
94
                 obj['unit'] = infos.advice.drug.max_unit
86
 
95
 
87
               }
96
               }
88
-              this.list.push(obj);
97
+              this.list.push(obj)
89
               this.list.sort(function(a, b) {
98
               this.list.sort(function(a, b) {
90
                 return b.p_time < a.p_time ? 1 : -1
99
                 return b.p_time < a.p_time ? 1 : -1
91
               })
100
               })
94
           }
103
           }
95
         })
104
         })
96
       },
105
       },
106
+
97
       getType(med_chrgitm_type) {
107
       getType(med_chrgitm_type) {
98
         switch (med_chrgitm_type) {
108
         switch (med_chrgitm_type) {
99
           case '01':
109
           case '01':

+ 7 - 1
src/xt_pages/hospitalStation/newStatementPrint.vue View File

147
         //       console.log("doctorporject",doctorPorject)
147
         //       console.log("doctorporject",doctorPorject)
148
         //     }
148
         //     }
149
         // })
149
         // })
150
+      },  getTimes(time) {
151
+        return uParseTime(time, '{y}-{m}-{d}')
150
       },
152
       },
151
       searchAction(){
153
       searchAction(){
152
 
154
 
221
                 that.info['treat_cost_total'] = response.data.data.treatCostTotal;
223
                 that.info['treat_cost_total'] = response.data.data.treatCostTotal;
222
                 that.info['treat_cost_self_total'] = response.data.data.treatCostSelfTotal;
224
                 that.info['treat_cost_self_total'] = response.data.data.treatCostSelfTotal;
223
                 that.info['treat_cost_part_self_total'] = response.data.data.treatCostPartSelfTotal;
225
                 that.info['treat_cost_part_self_total'] = response.data.data.treatCostPartSelfTotal;
224
-                console.log(this.info)
226
+
227
+                if(that.paramsObj.settle_type != 1){
228
+                  that.info.begndate = that.getTimes(that.paramsObj.start_time)
229
+                  that.info.enddate = that.getTimes(that.paramsObj.end_time)
230
+                }
225
               }
231
               }
226
             })
232
             })
227
             .catch(function (error) {
233
             .catch(function (error) {

+ 54 - 13
src/xt_pages/hospitalStation/outpatientChargesManagement.vue View File

1028
               }
1028
               }
1029
 
1029
 
1030
               for (let b = 0; b < prescription.project.length; b++) {
1030
               for (let b = 0; b < prescription.project.length; b++) {
1031
-                console.log(prescription.project[b].project.project_name);
1032
                 let obj = {
1031
                 let obj = {
1033
                   id: prescription.project[b].id,
1032
                   id: prescription.project[b].id,
1034
                   project_id: prescription.project[b].project.id,
1033
                   project_id: prescription.project[b].project.id,
1035
-                  project_name: prescription.project[b].project.project_name,
1036
-                  statistical_classification: prescription.project[b].project.statistical_classification,
1037
                   single_dose: prescription.project[b].single_dose,
1034
                   single_dose: prescription.project[b].single_dose,
1038
                   delivery_way: prescription.project[b].delivery_way,
1035
                   delivery_way: prescription.project[b].delivery_way,
1039
                   execution_frequency: prescription.project[b].execution_frequency,
1036
                   execution_frequency: prescription.project[b].execution_frequency,
1041
                   total: prescription.project[b].count.toString(),
1038
                   total: prescription.project[b].count.toString(),
1042
                   price: prescription.project[b].price,
1039
                   price: prescription.project[b].price,
1043
                   remark: prescription.project[b].remark,
1040
                   remark: prescription.project[b].remark,
1044
-                  medical_code: prescription.project[b].project.medical_code,
1045
-                  unit: prescription.project[b].unit
1041
+                  // medical_code: prescription.project[b].project.medical_code,
1042
+                  unit: prescription.project[b].unit,
1043
+                  type:prescription.project[b].type,
1044
+
1046
                 };
1045
                 };
1046
+                if(prescription.project[b].type == 2){
1047
+                  obj['statistical_classification'] =  prescription.project[b].project.statistical_classification
1048
+                  obj['medical_code'] =  prescription.project[b].project.medical_code
1049
+                  obj['project_name'] =  prescription.project[b].project.project_name
1050
+
1051
+                }else if(prescription.project[b].type == 3){
1052
+                  obj['statistical_classification'] = ""
1053
+                  obj['medical_code'] =  prescription.project[b].good_info.medical_insurance_number
1054
+                  obj['project_name'] =  prescription.project[b].good_info.good_name
1055
+                }
1056
+
1047
 
1057
 
1048
                 tempProject.push(obj)
1058
                 tempProject.push(obj)
1049
               }
1059
               }
2606
           let count = 0;
2616
           let count = 0;
2607
           for (let a = 0; a < project_month_prescriptions.project.length; a++) {
2617
           for (let a = 0; a < project_month_prescriptions.project.length; a++) {
2608
             if (project_ids[i].price == project_month_prescriptions.project[a].price && project_ids[i].id == project_month_prescriptions.project[a].project_id) {
2618
             if (project_ids[i].price == project_month_prescriptions.project[a].price && project_ids[i].id == project_month_prescriptions.project[a].project_id) {
2609
-              obj['project_name'] = project_month_prescriptions.project[a].project.project_name;
2610
-              obj['statistical_classification'] = project_month_prescriptions.project[a].project.statistical_classification;
2619
+
2620
+              if(project_month_prescriptions.project[a].type == 2){
2621
+                obj['statistical_classification'] =  project_month_prescriptions.project[a].project.statistical_classification
2622
+                obj['medical_code'] =  project_month_prescriptions.project[a].project.medical_code
2623
+                obj['project_name'] =  project_month_prescriptions.project[a].project.project_name
2624
+                obj['type'] = 2
2625
+
2626
+              }else if(project_month_prescriptions.project[a].type == 3){
2627
+                obj['statistical_classification'] = ""
2628
+                obj['medical_code'] =  project_month_prescriptions.project[a].good_info.medical_insurance_number
2629
+                obj['project_name'] =  project_month_prescriptions.project[a].good_info.good_name
2630
+                obj['type'] = 3
2631
+
2632
+              }
2633
+
2634
+
2635
+              // obj['project_name'] = project_month_prescriptions.project[a].project.project_name;
2636
+              // obj['statistical_classification'] = project_month_prescriptions.project[a].project.statistical_classification;
2611
               obj['single_dose'] = project_month_prescriptions.project[a].single_dose;
2637
               obj['single_dose'] = project_month_prescriptions.project[a].single_dose;
2612
               obj['delivery_way'] = project_month_prescriptions.project[a].delivery_way;
2638
               obj['delivery_way'] = project_month_prescriptions.project[a].delivery_way;
2613
               obj['execution_frequency'] = project_month_prescriptions.project[a].execution_frequency;
2639
               obj['execution_frequency'] = project_month_prescriptions.project[a].execution_frequency;
2614
               obj['number_days'] = project_month_prescriptions.project[a].day;
2640
               obj['number_days'] = project_month_prescriptions.project[a].day;
2615
-              obj['medical_code'] = project_month_prescriptions.project[a].project.medical_code;
2641
+              // obj['medical_code'] = project_month_prescriptions.project[a].project.medical_code;
2616
               obj['unit'] = project_month_prescriptions.project[a].unit;
2642
               obj['unit'] = project_month_prescriptions.project[a].unit;
2617
               obj['project_id'] = project_month_prescriptions.project[a].project_id;
2643
               obj['project_id'] = project_month_prescriptions.project[a].project_id;
2618
               count = count + project_month_prescriptions.project[a].count;
2644
               count = count + project_month_prescriptions.project[a].count;
2800
               }
2826
               }
2801
 
2827
 
2802
               for (let b = 0; b < prescription.project.length; b++) {
2828
               for (let b = 0; b < prescription.project.length; b++) {
2803
-                console.log(prescription.project[b].project.project_name);
2804
                 let obj = {
2829
                 let obj = {
2805
                   id: prescription.project[b].id,
2830
                   id: prescription.project[b].id,
2806
                   project_id: prescription.project[b].project.id,
2831
                   project_id: prescription.project[b].project.id,
2807
-                  project_name: prescription.project[b].project.project_name,
2808
-                  statistical_classification: prescription.project[b].project.statistical_classification,
2832
+                  // project_name: prescription.project[b].project.project_name,
2833
+                  // statistical_classification: prescription.project[b].project.statistical_classification,
2809
                   single_dose: prescription.project[b].single_dose,
2834
                   single_dose: prescription.project[b].single_dose,
2810
                   delivery_way: prescription.project[b].delivery_way,
2835
                   delivery_way: prescription.project[b].delivery_way,
2811
                   execution_frequency: prescription.project[b].execution_frequency,
2836
                   execution_frequency: prescription.project[b].execution_frequency,
2813
                   total: prescription.project[b].count.toString(),
2838
                   total: prescription.project[b].count.toString(),
2814
                   price: prescription.project[b].price,
2839
                   price: prescription.project[b].price,
2815
                   remark: prescription.project[b].remark,
2840
                   remark: prescription.project[b].remark,
2816
-                  medical_code: prescription.project[b].project.medical_code,
2817
-                  unit: prescription.project[b].project.unit
2841
+                  // medical_code: prescription.project[b].project.medical_code,
2842
+                  unit: prescription.project[b].project.unit,
2843
+                  type:prescription.project[b].type,
2844
+
2818
                 };
2845
                 };
2846
+
2847
+                if(prescription.project[b].type == 2){
2848
+                  obj['statistical_classification'] =  prescription.project[b].project.statistical_classification
2849
+                  obj['medical_code'] =  prescription.project[b].project.medical_code
2850
+                  obj['project_name'] =  prescription.project[b].project.project_name
2851
+
2852
+                }else if(prescription.project[b].type == 3){
2853
+                  obj['statistical_classification'] = ""
2854
+                  obj['medical_code'] =  prescription.project[b].good_info.medical_insurance_number
2855
+                  obj['project_name'] =  prescription.project[b].good_info.good_name
2856
+                }
2857
+
2858
+
2859
+
2819
                 tempProject.push(obj)
2860
                 tempProject.push(obj)
2820
               }
2861
               }
2821
 
2862
 

+ 7 - 2
src/xt_pages/hospitalStation/summary.vue View File

505
             order_id: row.id,
505
             order_id: row.id,
506
             patient_id: row.patient_id,
506
             patient_id: row.patient_id,
507
             record_time: this.getTimes(row.settle_accounts_date),
507
             record_time: this.getTimes(row.settle_accounts_date),
508
-            admin_user_id: this.$store.getters.xt_user.user.id
508
+            admin_user_id: this.$store.getters.xt_user.user.id,
509
+
510
+
509
           };
511
           };
510
           this.orderObj9504 = obj
512
           this.orderObj9504 = obj
511
         } else {
513
         } else {
512
           this.statementVisible = true;
514
           this.statementVisible = true;
513
           let obj = {
515
           let obj = {
514
-            order_id: row.id
516
+            order_id: row.id,
517
+            settle_type:row.settle_type,
518
+            start_time:row.settle_start_time,
519
+            end_time:row.settle_end_time,
515
           };
520
           };
516
           this.orderObj = obj
521
           this.orderObj = obj
517
         }
522
         }

+ 294 - 284
src/xt_pages/hospitalStation/summaryDetail.vue View File

3
         <div class="position">
3
         <div class="position">
4
             <bread-crumb :crumbs='crumbs'></bread-crumb>
4
             <bread-crumb :crumbs='crumbs'></bread-crumb>
5
         </div>
5
         </div>
6
-      <el-popover
7
-        placement="bottom"
8
-        width="210"
9
-        trigger="click">
10
-        <el-button size="small" ref="button_two" @click="open(1)">打印清单</el-button>
11
-        <el-button size="small" ref="button_six" @click="open(2)">打印汇总</el-button>
12
-        <el-button  slot="reference" style="margin:10px 10px;float: right" type="primary" size="small" >打印</el-button>
13
-
14
-      </el-popover>
6
+        <el-popover
7
+                placement="bottom"
8
+                width="210"
9
+                trigger="click">
10
+            <el-button size="small" ref="button_two" @click="open(1)">打印清单</el-button>
11
+            <el-button size="small" ref="button_six" @click="open(2)">打印汇总</el-button>
12
+            <el-button  slot="reference" style="margin:10px 10px;float: right" type="primary" size="small" >打印</el-button>
13
+
14
+        </el-popover>
15
         <div class="app-container" style="display:flex;flex: 1;padding: 20px 20px 0px 20px;">
15
         <div class="app-container" style="display:flex;flex: 1;padding: 20px 20px 0px 20px;">
16
             <div class="mainCenter">
16
             <div class="mainCenter">
17
                 <div class="centerLeft">
17
                 <div class="centerLeft">
18
                     <div class="tabsBox">
18
                     <div class="tabsBox">
19
-                      <el-table  :data="tableData" border style="width: 100%;"
20
-                                :row-style="{ color: '#303133' }"
21
-                                :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}" highlight-current-row>
22
-
23
-                        <el-table-column align="center" prop="project_name" label="名称">
24
-                          <template slot-scope="scope">{{ scope.row.name }}</template>
25
-                        </el-table-column>
26
-
27
-                        <el-table-column align="center" prop="project_name" label="分类" width="100">
28
-                          <template slot-scope="scope">{{ scope.row.type == 1?'药品':'项目' }}</template>
29
-                        </el-table-column>
30
-
31
-
32
-                        <el-table-column align="center" prop="single_dose" width="80" label="单次用量">
33
-                          <template slot-scope="scope">{{scope.row.single_dose}}&nbsp;&nbsp;{{scope.row.single_dose_unit}}</template>
34
-
35
-                        </el-table-column>
36
-                        <el-table-column align="center" prop="delivery_way" width="90" label="用法">
37
-                          <template slot-scope="scope">
38
-                            <!--<el-input v-model="scope.row.delivery_way" placeholder="" readonly></el-input>-->
39
-                            {{scope.row.delivery_way}}
40
-
41
-                          </template>
42
-                        </el-table-column>
43
-                        <el-table-column align="center" prop="execution_frequency" width="90" label="频率">
44
-                          <template slot-scope="scope">{{scope.row.execution_frequency}}</template>
45
-                        </el-table-column>
46
-                        <el-table-column align="center" prop="number_days" width="60" label="天数">
47
-                          <template slot-scope="scope">
48
-                            <!--<el-input v-model="scope.row.number_days" placeholder="" readonly></el-input>-->
49
-                            {{scope.row.day}}天
50
-
51
-                          </template>
52
-                        </el-table-column>
53
-                        <el-table-column align="center" prop="total" width="60" label="总量">
54
-                          <template slot-scope="scope">{{scope.row.count}}&nbsp;&nbsp;{{scope.row.prescribing_number_unit}}</template>
55
-                        </el-table-column>
56
-                        <el-table-column align="center" prop="name" width="60" label="单价">
57
-                          <template slot-scope="scope">
58
-                            <!--<el-input v-model="scope.row.price" placeholder="" readonly></el-input>-->
59
-                            {{scope.row.price}}元
60
-
61
-                          </template>
62
-                        </el-table-column>
63
-
64
-                          <el-table-column align="center" prop="name" width="60" label="总价">
65
-                              <template slot-scope="scope">
66
-                                  <!--<el-input v-model="scope.row.price" placeholder="" readonly></el-input>-->
67
-                                  {{scope.row.price}}元
68
-
69
-                              </template>
70
-                          </el-table-column>
71
-
72
-
73
-                        <el-table-column align="center" prop="name" width="80" label="备注">
74
-                          <template slot-scope="scope">
75
-                            <!--<el-input v-model="scope.row.remark" readonly></el-input>-->
76
-                            {{scope.row.remark}}
77
-
78
-                          </template>
79
-                        </el-table-column>
80
-                      </el-table>
81
-
82
-                      <div class="additionalBox">
83
-                        <div class="additionalOne" v-for="(item,index) in additions" :key="index">
84
-                          <span :title="item.item_name">{{item.item_name}}</span>
85
-                          <el-input v-model="item.price" placeholder="" style="width:50px;" readonly></el-input>
86
-                          共
87
-                          <el-input v-model="item.count" placeholder="" style="width:50px;" readonly></el-input>
88
-                          次
89
-                          <!--<i class="el-icon-delete deleteIcon" @click="delAddition(index,item)"></i>-->
19
+                        <el-table  :data="tableData" border style="width: 100%;"
20
+                                   :row-style="{ color: '#303133' }"
21
+                                   :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}" highlight-current-row>
22
+
23
+                            <el-table-column align="center" prop="project_name" label="名称">
24
+                                <template slot-scope="scope">{{ scope.row.name }}</template>
25
+                            </el-table-column>
26
+
27
+                            <el-table-column align="center" prop="project_name" label="分类" width="100">
28
+                                <template slot-scope="scope">{{ scope.row.type == 1?'药品': scope.row.project_type == 2? '项目':'耗材'}}</template>
29
+                            </el-table-column>
30
+
31
+
32
+                            <el-table-column align="center" prop="single_dose" width="80" label="单次用量">
33
+                                <template slot-scope="scope">{{scope.row.single_dose}}&nbsp;&nbsp;{{scope.row.single_dose_unit}}</template>
34
+
35
+                            </el-table-column>
36
+                            <el-table-column align="center" prop="delivery_way" width="90" label="用法">
37
+                                <template slot-scope="scope">
38
+                                    <!--<el-input v-model="scope.row.delivery_way" placeholder="" readonly></el-input>-->
39
+                                    {{scope.row.delivery_way}}
40
+
41
+                                </template>
42
+                            </el-table-column>
43
+                            <el-table-column align="center" prop="execution_frequency" width="90" label="频率">
44
+                                <template slot-scope="scope">{{scope.row.execution_frequency}}</template>
45
+                            </el-table-column>
46
+                            <el-table-column align="center" prop="number_days" width="60" label="天数">
47
+                                <template slot-scope="scope">
48
+                                    <!--<el-input v-model="scope.row.number_days" placeholder="" readonly></el-input>-->
49
+                                    {{scope.row.day}}天
50
+
51
+                                </template>
52
+                            </el-table-column>
53
+                            <el-table-column align="center" prop="total" width="60" label="总量">
54
+                                <template slot-scope="scope">{{scope.row.count}}&nbsp;&nbsp;{{scope.row.prescribing_number_unit}}</template>
55
+                            </el-table-column>
56
+                            <el-table-column align="center" prop="name" width="60" label="单价">
57
+                                <template slot-scope="scope">
58
+                                    <!--<el-input v-model="scope.row.price" placeholder="" readonly></el-input>-->
59
+                                    {{scope.row.price}}元
60
+
61
+                                </template>
62
+                            </el-table-column>
63
+
64
+                            <el-table-column align="center" prop="name" width="60" label="总价">
65
+                                <template slot-scope="scope">
66
+                                    <!--<el-input v-model="scope.row.price" placeholder="" readonly></el-input>-->
67
+                                    {{scope.row.price}}元
68
+
69
+                                </template>
70
+                            </el-table-column>
71
+
72
+
73
+                            <el-table-column align="center" prop="name" width="80" label="备注">
74
+                                <template slot-scope="scope">
75
+                                    <!--<el-input v-model="scope.row.remark" readonly></el-input>-->
76
+                                    {{scope.row.remark}}
77
+
78
+                                </template>
79
+                            </el-table-column>
80
+                        </el-table>
81
+
82
+                        <div class="additionalBox">
83
+                            <div class="additionalOne" v-for="(item,index) in additions" :key="index">
84
+                                <span :title="item.item_name">{{item.item_name}}</span>
85
+                                <el-input v-model="item.price" placeholder="" style="width:50px;" readonly></el-input>
86
+                                共
87
+                                <el-input v-model="item.count" placeholder="" style="width:50px;" readonly></el-input>
88
+                                次
89
+                                <!--<i class="el-icon-delete deleteIcon" @click="delAddition(index,item)"></i>-->
90
+                            </div>
90
                         </div>
91
                         </div>
91
-                      </div>
92
 
92
 
93
                     </div>
93
                     </div>
94
                     <div class="costBox">
94
                     <div class="costBox">
95
-                      <span>当前处方总费用:<span style="color:red;">{{ order.medfee_sumamt}}元</span></span>
96
-                      <span v-if="order.order_status == 1">待结算</span>
97
-                      <span v-if="order.order_status == 2">已结算</span>
98
-                      <span v-if="order.order_status == 3">已退费</span>
95
+                        <span>当前处方总费用:<span style="color:red;">{{ order.medfee_sumamt}}元</span></span>
96
+                        <span v-if="order.order_status == 1">待结算</span>
97
+                        <span v-if="order.order_status == 2">已结算</span>
98
+                        <span v-if="order.order_status == 3">已退费</span>
99
 
99
 
100
 
100
 
101
                     </div>
101
                     </div>
121
                     </ul>
121
                     </ul>
122
                     <!--<p class="centerRightTitle">发票费用</p>-->
122
                     <!--<p class="centerRightTitle">发票费用</p>-->
123
                     <!--<ul class="basicUl">-->
123
                     <!--<ul class="basicUl">-->
124
-                        <!--<li style="width:100%;">西药费:0.00元</li>-->
124
+                    <!--<li style="width:100%;">西药费:0.00元</li>-->
125
                     <!--</ul>-->
125
                     <!--</ul>-->
126
                 </div>
126
                 </div>
127
             </div>
127
             </div>
128
         </div>
128
         </div>
129
 
129
 
130
-      <div v-if="listVisible">
131
-      <el-dialog
132
-        class="centerDialog"
133
-        width="900px"
134
-        title="打印"
135
-        :visible.sync="listVisible">
136
-        <list-print  :paramsObj='paramsObj'></list-print>
137
-      </el-dialog>
138
-      </div>
139
-
140
-      <div v-if="allListVisible">
141
-      <el-dialog
142
-        class="centerDialog"
143
-        width="900px"
144
-        title="打印"
145
-        :visible.sync="allListVisible">
146
-        <all-list-print :paramsObj='paramsObj'></all-list-print>
147
-      </el-dialog>
148
-      </div>
130
+        <div v-if="listVisible">
131
+            <el-dialog
132
+                    class="centerDialog"
133
+                    width="900px"
134
+                    title="打印"
135
+                    :visible.sync="listVisible">
136
+                <list-print  :paramsObj='paramsObj'></list-print>
137
+            </el-dialog>
138
+        </div>
139
+
140
+        <div v-if="allListVisible">
141
+            <el-dialog
142
+                    class="centerDialog"
143
+                    width="900px"
144
+                    title="打印"
145
+                    :visible.sync="allListVisible">
146
+                <all-list-print :paramsObj='paramsObj'></all-list-print>
147
+            </el-dialog>
148
+        </div>
149
 
149
 
150
 
150
 
151
     </div>
151
     </div>
152
 </template>
152
 </template>
153
 
153
 
154
-
155
 <script>
154
 <script>
156
 import BreadCrumb from '@/xt_pages/components/bread-crumb'
155
 import BreadCrumb from '@/xt_pages/components/bread-crumb'
157
 import { getHisOrder } from '@/api/his/his'
156
 import { getHisOrder } from '@/api/his/his'
161
 import AllListPrint from './allListPrint'
160
 import AllListPrint from './allListPrint'
162
 
161
 
163
 export default {
162
 export default {
164
-    components:{
165
-      AllListPrint,
166
-      ListPrint,
167
-        BreadCrumb,
168
-      prescriptionTable,
169
-
170
-    },
171
-    data(){
172
-        return{
173
-          listVisible:false,
174
-          allListVisible:false,
175
-          paramsObj:{
176
-            id:this.$route.query.id
177
-          },
178
-            crumbs: [
179
-                { path: false, name: '门诊收费' },
180
-                { path: false, name: '项目消费明细汇总详情' }
181
-            ],
182
-          info: {},
183
-          curPrescriptions: {},
184
-          prescriptions: [],
185
-          record_date: '',
186
-          tableData: [],
187
-          additions:[],
188
-          editableTabsValue: '1',
189
-          loadingone: false,
190
-          editableTabs: [{
191
-            title: '处方1',
192
-            name: '1'
193
-          }],
194
-          tabIndex: 1,
195
-          hisPatientInfo: {},
196
-          loadingtwo: false,
197
-          patientTableData: [{
198
-            name: '杨美英',
199
-            mdtrt_id: '1709946'
200
-          }],
201
-          patientInfo: { id: 0 },
202
-          doctor: {},
203
-          total: 0,
204
-          state: '未收费',
205
-          radio: 1,
206
-          radioStatus: 1,
207
-          search_input: '',
208
-          order:{},
209
-        }
210
-    },created(){
211
-      this.GetOrderDetail()
212
-  },methods:{
213
-      open(val){
214
-        if(val == 1){
215
-          this.paramsObj.id == this.$route.query.id;
216
-          this.listVisible = true
217
-
218
-        }else if(val == 2){
219
-          this.paramsObj.id == this.$route.query.id;
220
-          this.allListVisible = true
221
-        }
163
+  components:{
164
+    AllListPrint,
165
+    ListPrint,
166
+    BreadCrumb,
167
+    prescriptionTable,
168
+
169
+  },
170
+  data(){
171
+    return{
172
+      listVisible:false,
173
+      allListVisible:false,
174
+      paramsObj:{
175
+        id:this.$route.query.id
222
       },
176
       },
177
+      crumbs: [
178
+        { path: false, name: '门诊收费' },
179
+        { path: false, name: '项目消费明细汇总详情' }
180
+      ],
181
+      info: {},
182
+      curPrescriptions: {},
183
+      prescriptions: [],
184
+      record_date: '',
185
+      tableData: [],
186
+      additions:[],
187
+      editableTabsValue: '1',
188
+      loadingone: false,
189
+      editableTabs: [{
190
+        title: '处方1',
191
+        name: '1'
192
+      }],
193
+      tabIndex: 1,
194
+      hisPatientInfo: {},
195
+      loadingtwo: false,
196
+      patientTableData: [{
197
+        name: '杨美英',
198
+        mdtrt_id: '1709946'
199
+      }],
200
+      patientInfo: { id: 0 },
201
+      doctor: {},
202
+      total: 0,
203
+      state: '未收费',
204
+      radio: 1,
205
+      radioStatus: 1,
206
+      search_input: '',
207
+      order:{},
208
+    }
209
+  },created(){
210
+    this.GetOrderDetail()
211
+  },methods:{
212
+    open(val){
213
+      if(val == 1){
214
+        this.paramsObj.id == this.$route.query.id
215
+        this.listVisible = true
216
+
217
+      }else if(val == 2){
218
+        this.paramsObj.id == this.$route.query.id
219
+        this.allListVisible = true
220
+      }
221
+    },
223
     // getTotal() {
222
     // getTotal() {
224
     //   var total = 0
223
     //   var total = 0
225
     //   for (let i = 0; i < this.prescriptions.length; i++) {
224
     //   for (let i = 0; i < this.prescriptions.length; i++) {
253
     tabclickEvent(val) {
252
     tabclickEvent(val) {
254
       for (let i = 0; i < this.prescriptions.length; i++) {
253
       for (let i = 0; i < this.prescriptions.length; i++) {
255
         if (this.prescriptions[i].name == val.name) {
254
         if (this.prescriptions[i].name == val.name) {
256
-          this.curPrescriptions = {};
257
-          var temp = this.deepClone(this.prescriptions[i]);
255
+          this.curPrescriptions = {}
256
+          var temp = this.deepClone(this.prescriptions[i])
258
           this.curPrescriptions = temp
257
           this.curPrescriptions = temp
259
         }
258
         }
260
       }
259
       }
263
       if (!source && typeof source !== 'object') {
262
       if (!source && typeof source !== 'object') {
264
         throw new Error('error arguments', 'shallowClone')
263
         throw new Error('error arguments', 'shallowClone')
265
       }
264
       }
266
-      const targetObj = source.constructor === Array ? [] : {};
265
+      const targetObj = source.constructor === Array ? [] : {}
267
       Object.keys(source).forEach((keys) => {
266
       Object.keys(source).forEach((keys) => {
268
         if (source[keys] && typeof source[keys] === 'object') {
267
         if (source[keys] && typeof source[keys] === 'object') {
269
           targetObj[keys] = this.deepClone(source[keys])
268
           targetObj[keys] = this.deepClone(source[keys])
270
         } else {
269
         } else {
271
           targetObj[keys] = source[keys]
270
           targetObj[keys] = source[keys]
272
         }
271
         }
273
-      });
272
+      })
274
       return targetObj
273
       return targetObj
275
     },  getGroup(id){
274
     },  getGroup(id){
276
-      var name = "";
277
-      var statistics_category =  getDictionaryDataConfig('system','statistics_category');
275
+      var name = ""
276
+      var statistics_category =  getDictionaryDataConfig('system','statistics_category')
278
       for(let i=0;i<statistics_category.length;i++){
277
       for(let i=0;i<statistics_category.length;i++){
279
         if(id == statistics_category[i].id){
278
         if(id == statistics_category[i].id){
280
           name = statistics_category[i].name
279
           name = statistics_category[i].name
283
       return name
282
       return name
284
     },
283
     },
285
     getTotal() {
284
     getTotal() {
286
-      var total = 0;
285
+      var total = 0
287
       for (let i = 0; i < this.prescriptions.length; i++) {
286
       for (let i = 0; i < this.prescriptions.length; i++) {
288
         if (this.prescriptions[i].advices != null) {
287
         if (this.prescriptions[i].advices != null) {
289
           for (let a = 0; a < this.prescriptions[i].advices.length; a++) {
288
           for (let a = 0; a < this.prescriptions[i].advices.length; a++) {
304
       }
303
       }
305
     },  unique(array) {
304
     },  unique(array) {
306
       // res用来存储结果
305
       // res用来存储结果
307
-      var res = [];
306
+      var res = []
308
       for (var i = 0, arrayLen = array.length; i < arrayLen; i++) {
307
       for (var i = 0, arrayLen = array.length; i < arrayLen; i++) {
309
         for (var j = 0, resLen = res.length; j < resLen; j++) {
308
         for (var j = 0, resLen = res.length; j < resLen; j++) {
310
           if (array[i].id === res[j].id && array[i].price === res[j].price) {
309
           if (array[i].id === res[j].id && array[i].price === res[j].price) {
319
       return res
318
       return res
320
     },
319
     },
321
     setMonthPrescription(month_prescriptions) {
320
     setMonthPrescription(month_prescriptions) {
322
-      console.log(month_prescriptions);
321
+      console.log(month_prescriptions)
323
       let drug_month_prescriptions = {
322
       let drug_month_prescriptions = {
324
         advices: []
323
         advices: []
325
-      };
326
-      let drug_ids = [];
324
+      }
325
+      let drug_ids = []
327
       let project_month_prescriptions = {
326
       let project_month_prescriptions = {
328
         project: []
327
         project: []
329
 
328
 
330
-      };
331
-      let project_ids = [];
329
+      }
330
+      let project_ids = []
332
 
331
 
333
       let addition_month_prescriptions = {
332
       let addition_month_prescriptions = {
334
         addition: []
333
         addition: []
335
 
334
 
336
-      };
337
-      let additions_ids = [];
335
+      }
336
+      let additions_ids = []
338
 
337
 
339
       for (let i = 0; i < month_prescriptions.length; i++) {
338
       for (let i = 0; i < month_prescriptions.length; i++) {
340
         if (month_prescriptions[i].type == 1) { //药品
339
         if (month_prescriptions[i].type == 1) { //药品
343
               id: month_prescriptions[i].advices[a].drug_id,
342
               id: month_prescriptions[i].advices[a].drug_id,
344
               price: month_prescriptions[i].advices[a].price
343
               price: month_prescriptions[i].advices[a].price
345
 
344
 
346
-            };
347
-            drug_ids.push(obj);
345
+            }
346
+            drug_ids.push(obj)
348
             drug_month_prescriptions.advices.push(month_prescriptions[i].advices[a])
347
             drug_month_prescriptions.advices.push(month_prescriptions[i].advices[a])
349
           }
348
           }
350
 
349
 
354
               id: month_prescriptions[i].project[a].project_id,
353
               id: month_prescriptions[i].project[a].project_id,
355
               price: month_prescriptions[i].project[a].price
354
               price: month_prescriptions[i].project[a].price
356
 
355
 
357
-            };
358
-            project_ids.push(obj);
356
+            }
357
+            project_ids.push(obj)
359
             project_month_prescriptions.project.push(month_prescriptions[i].project[a])
358
             project_month_prescriptions.project.push(month_prescriptions[i].project[a])
360
           }
359
           }
361
         }
360
         }
365
             id: month_prescriptions[i].addition[a].item_id,
364
             id: month_prescriptions[i].addition[a].item_id,
366
             price: month_prescriptions[i].addition[a].price
365
             price: month_prescriptions[i].addition[a].price
367
 
366
 
368
-          };
369
-          additions_ids.push(obj);
367
+          }
368
+          additions_ids.push(obj)
370
           addition_month_prescriptions.addition.push(month_prescriptions[i].addition[a])
369
           addition_month_prescriptions.addition.push(month_prescriptions[i].addition[a])
371
 
370
 
372
         }
371
         }
373
 
372
 
374
       }
373
       }
375
 
374
 
376
-      drug_ids = this.unique(drug_ids);
377
-      project_ids= this.unique(project_ids);
378
-      additions_ids= this.unique(additions_ids);
375
+      drug_ids = this.unique(drug_ids)
376
+      project_ids= this.unique(project_ids)
377
+      additions_ids= this.unique(additions_ids)
379
 
378
 
380
 
379
 
381
 
380
 
382
 
381
 
383
 
382
 
384
       for (let i = 0; i < drug_ids.length; i++) {
383
       for (let i = 0; i < drug_ids.length; i++) {
385
-        let obj = {};
386
-        let count = 0;
384
+        let obj = {}
385
+        let count = 0
387
         for (let a = 0; a < drug_month_prescriptions.advices.length; a++) {
386
         for (let a = 0; a < drug_month_prescriptions.advices.length; a++) {
388
           if (drug_ids[i].price == drug_month_prescriptions.advices[a].price && drug_ids[i].id ==  drug_month_prescriptions.advices[a].drug_id) {
387
           if (drug_ids[i].price == drug_month_prescriptions.advices[a].price && drug_ids[i].id ==  drug_month_prescriptions.advices[a].drug_id) {
389
-            obj['name'] = drug_month_prescriptions.advices[a].advice_name;
390
-            obj['statistical_classification'] = '';
391
-            obj['type'] = 1;
392
-            obj['single_dose'] = drug_month_prescriptions.advices[a].single_dose;
393
-            obj['delivery_way'] = drug_month_prescriptions.advices[a].delivery_way;
394
-            obj['execution_frequency'] = drug_month_prescriptions.advices[a].execution_frequency;
395
-            obj['day'] = drug_month_prescriptions.advices[a].day;
396
-            obj['prescribing_number_unit'] = drug_month_prescriptions.advices[a].prescribing_number_unit;
397
-            obj['remark'] = drug_month_prescriptions.advices[a].remark;
398
-            obj['price'] = parseFloat(drug_month_prescriptions.advices[a].price);
388
+            obj['name'] = drug_month_prescriptions.advices[a].advice_name
389
+            obj['statistical_classification'] = ''
390
+            obj['type'] = 1
391
+            obj['single_dose'] = drug_month_prescriptions.advices[a].single_dose
392
+            obj['delivery_way'] = drug_month_prescriptions.advices[a].delivery_way
393
+            obj['execution_frequency'] = drug_month_prescriptions.advices[a].execution_frequency
394
+            obj['day'] = drug_month_prescriptions.advices[a].day
395
+            obj['prescribing_number_unit'] = drug_month_prescriptions.advices[a].prescribing_number_unit
396
+            obj['remark'] = drug_month_prescriptions.advices[a].remark
397
+            obj['price'] = parseFloat(drug_month_prescriptions.advices[a].price)
399
             count = count + drug_month_prescriptions.advices[a].prescribing_number
398
             count = count + drug_month_prescriptions.advices[a].prescribing_number
400
 
399
 
401
           }
400
           }
402
         }
401
         }
403
-        obj['count'] = count;
402
+        obj['count'] = count
404
         this.tableData.push(obj)
403
         this.tableData.push(obj)
405
       }
404
       }
406
 
405
 
407
       for (let i = 0; i < project_ids.length; i++) {
406
       for (let i = 0; i < project_ids.length; i++) {
408
-        let obj = {};
409
-        let count = 0;
407
+        let obj = {}
408
+        let count = 0
410
         for (let a = 0; a < project_month_prescriptions.project.length; a++) {
409
         for (let a = 0; a < project_month_prescriptions.project.length; a++) {
411
           if (project_ids[i].price == project_month_prescriptions.project[a].price &&project_ids[i].id == project_month_prescriptions.project[a].project_id ) {
410
           if (project_ids[i].price == project_month_prescriptions.project[a].price &&project_ids[i].id == project_month_prescriptions.project[a].project_id ) {
412
-            obj['name'] = project_month_prescriptions.project[a].project.project_name;
413
-            obj['statistical_classification'] = '';
414
-            obj['single_dose'] = project_month_prescriptions.project[a].single_dose;
415
-            obj['delivery_way'] = project_month_prescriptions.project[a].delivery_way;
416
-            obj['execution_frequency'] = project_month_prescriptions.project[a].execution_frequency;
417
-            obj['day'] = project_month_prescriptions.project[a].day;
418
-            obj['single_dose_unit'] = project_month_prescriptions.project[a].unit;
419
-            obj['prescribing_number_unit'] = project_month_prescriptions.project[a].unit;
420
-            count = count + project_month_prescriptions.project[a].count;
421
-            obj['price'] = parseFloat(project_month_prescriptions.project[a].price);
422
-            obj['remark'] = project_month_prescriptions.project[a].remark;
411
+
412
+            if(project_month_prescriptions.project[a].type == 2){
413
+              obj['name'] = project_month_prescriptions.project[a].project.project_name
414
+              obj['statistical_classification'] = ''
415
+              obj['project_type'] = 2
416
+
417
+
418
+            }else if (project_month_prescriptions.project[a].type == 3){
419
+              obj['name'] = project_month_prescriptions.project[a].good_info.good_name
420
+              obj['statistical_classification'] = ''
421
+              obj['project_type'] = 3
422
+            }
423
+            obj['single_dose'] = project_month_prescriptions.project[a].single_dose
424
+            obj['delivery_way'] = project_month_prescriptions.project[a].delivery_way
425
+            obj['execution_frequency'] = project_month_prescriptions.project[a].execution_frequency
426
+            obj['day'] = project_month_prescriptions.project[a].day
427
+            obj['single_dose_unit'] = project_month_prescriptions.project[a].unit
428
+            obj['prescribing_number_unit'] = project_month_prescriptions.project[a].unit
429
+            count = count + project_month_prescriptions.project[a].count
430
+            obj['price'] = parseFloat(project_month_prescriptions.project[a].price)
431
+            obj['remark'] = project_month_prescriptions.project[a].remark
423
             obj['type'] = 2
432
             obj['type'] = 2
424
 
433
 
425
 
434
 
426
           }
435
           }
427
         }
436
         }
428
-        obj['count'] = count;
437
+        obj['count'] = count
429
         this.tableData.push(obj)
438
         this.tableData.push(obj)
430
 
439
 
431
       }
440
       }
432
 
441
 
433
       for (let i = 0; i < additions_ids.length; i++) {
442
       for (let i = 0; i < additions_ids.length; i++) {
434
-        let obj = {};
435
-        let count = 0;
436
-        console.log(addition_month_prescriptions.addition);
443
+        let obj = {}
444
+        let count = 0
445
+        console.log(addition_month_prescriptions.addition)
437
         if (addition_month_prescriptions.addition) {
446
         if (addition_month_prescriptions.addition) {
438
           for (let a = 0; a < addition_month_prescriptions.addition.length; a++) {
447
           for (let a = 0; a < addition_month_prescriptions.addition.length; a++) {
439
             if (additions_ids[i].price == addition_month_prescriptions.addition[a].price &&additions_ids[i].id == addition_month_prescriptions.addition[a].item_id) {
448
             if (additions_ids[i].price == addition_month_prescriptions.addition[a].price &&additions_ids[i].id == addition_month_prescriptions.addition[a].item_id) {
440
-              obj['item_name'] = addition_month_prescriptions.addition[a].item_name;
441
-              count = count + addition_month_prescriptions.addition[a].count;
449
+              obj['item_name'] = addition_month_prescriptions.addition[a].item_name
450
+              count = count + addition_month_prescriptions.addition[a].count
442
               obj['price'] = parseFloat(addition_month_prescriptions.addition[a].price)
451
               obj['price'] = parseFloat(addition_month_prescriptions.addition[a].price)
443
             }
452
             }
444
           }
453
           }
445
-          obj['count'] = count;
454
+          obj['count'] = count
446
           this.additions.push(obj)
455
           this.additions.push(obj)
447
 
456
 
448
         }
457
         }
454
       let params={
463
       let params={
455
         number:this.$route.query.number,
464
         number:this.$route.query.number,
456
         patient_id:this.$route.query.patient_id,
465
         patient_id:this.$route.query.patient_id,
457
-      };
466
+      }
458
       getHisOrder(params).then(response => {
467
       getHisOrder(params).then(response => {
459
         if (response.data.state == 0) {
468
         if (response.data.state == 0) {
460
-          this.$message.error(response.data.msg);
469
+          this.$message.error(response.data.msg)
461
           return false
470
           return false
462
         } else {
471
         } else {
463
-          this.patientInfo = response.data.data.order.patient;
464
-          this.hisPatientInfo = response.data.data.order.his_patient;
465
-          this.info = response.data.data.p_info;
466
-          this.order = response.data.data.order;
472
+          this.patientInfo = response.data.data.order.patient
473
+          this.hisPatientInfo = response.data.data.order.his_patient
474
+          this.info = response.data.data.p_info
475
+          this.order = response.data.data.order
467
 
476
 
468
-          this.prescriptions = [];
469
-          this.tableData = [];
477
+          this.prescriptions = []
478
+          this.tableData = []
470
 
479
 
471
 
480
 
472
-          var prescription = response.data.data.prescription;
473
-          this.prescriptions = prescription;
481
+          var prescription = response.data.data.prescription
482
+          this.prescriptions = prescription
474
           this.setMonthPrescription(prescription)
483
           this.setMonthPrescription(prescription)
475
 
484
 
476
 
485
 
478
           //   var prescription = response.data.data.prescription[i]
487
           //   var prescription = response.data.data.prescription[i]
479
 
488
 
480
 
489
 
481
-            // for (let b = 0; b < prescription.advices.length; b++) {
482
-            //   let obj = {
483
-            //     name: prescription.advices[b].advice_name,
484
-            //     statistical_classification:"",
485
-            //     type:1,
486
-            //     single_dose: prescription.advices[b].single_dose,
487
-            //     delivery_way: prescription.advices[b].delivery_way,
488
-            //     execution_frequency: prescription.advices[b].execution_frequency,
489
-            //     price: prescription.advices[b].price.toString(),
490
-            //     day: prescription.advices[b].day,
491
-            //     count:prescription.advices[b].prescribing_number.toString(),
492
-            //     remark: prescription.advices[b].remark,
493
-            //     single_dose_unit: prescription.advices[b].single_dose_unit,
494
-            //     prescribing_number_unit: prescription.advices[b].prescribing_number_unit,
495
-            //
496
-            //   }
497
-            //   this.tableData.push(obj)
498
-            // }
499
-            //
500
-            // for (let b = 0; b < prescription.project.length; b++) {
501
-            //   let obj = {
502
-            //     name: prescription.project[b].project.project_name,
503
-            //     statistical_classification: prescription.project[b].project.statistical_classification,
504
-            //     single_dose: prescription.project[b].single_dose,
505
-            //     delivery_way: prescription.project[b].delivery_way,
506
-            //     execution_frequency: prescription.project[b].execution_frequency,
507
-            //     price: prescription.project[b].price,
508
-            //     day: prescription.project[b].day,
509
-            //     count: prescription.project[b].count.toString(),
510
-            //     remark: prescription.project[b].remark,
511
-            //     single_dose_unit:prescription.project[b].project.unit,
512
-            //     prescribing_number_unit:prescription.project[b].project.unit,
513
-            //     type:2,
514
-            //   }
515
-            //   this.tableData.push(obj)
516
-            // }
517
-            //
518
-            // for (let b = 0; b < prescription.addition.length; b++) {
519
-            //     this.additions.push( prescription.addition[b])
520
-            // }
521
-
522
-
523
-
524
-            // let index = i + 1
525
-            // let obj = {
526
-            //   id: prescription.id,
527
-            //   name: '处方' + index,
528
-            //   advices: tempAdvice,
529
-            //   project: tempProject,
530
-            //   type: response.data.data.prescription[i].type
531
-            // }
532
-            // this.prescriptions.push(obj)
533
-            // this.curPrescriptions = this.prescriptions[0]
490
+          // for (let b = 0; b < prescription.advices.length; b++) {
491
+          //   let obj = {
492
+          //     name: prescription.advices[b].advice_name,
493
+          //     statistical_classification:"",
494
+          //     type:1,
495
+          //     single_dose: prescription.advices[b].single_dose,
496
+          //     delivery_way: prescription.advices[b].delivery_way,
497
+          //     execution_frequency: prescription.advices[b].execution_frequency,
498
+          //     price: prescription.advices[b].price.toString(),
499
+          //     day: prescription.advices[b].day,
500
+          //     count:prescription.advices[b].prescribing_number.toString(),
501
+          //     remark: prescription.advices[b].remark,
502
+          //     single_dose_unit: prescription.advices[b].single_dose_unit,
503
+          //     prescribing_number_unit: prescription.advices[b].prescribing_number_unit,
504
+          //
505
+          //   }
506
+          //   this.tableData.push(obj)
507
+          // }
508
+          //
509
+          // for (let b = 0; b < prescription.project.length; b++) {
510
+          //   let obj = {
511
+          //     name: prescription.project[b].project.project_name,
512
+          //     statistical_classification: prescription.project[b].project.statistical_classification,
513
+          //     single_dose: prescription.project[b].single_dose,
514
+          //     delivery_way: prescription.project[b].delivery_way,
515
+          //     execution_frequency: prescription.project[b].execution_frequency,
516
+          //     price: prescription.project[b].price,
517
+          //     day: prescription.project[b].day,
518
+          //     count: prescription.project[b].count.toString(),
519
+          //     remark: prescription.project[b].remark,
520
+          //     single_dose_unit:prescription.project[b].project.unit,
521
+          //     prescribing_number_unit:prescription.project[b].project.unit,
522
+          //     type:2,
523
+          //   }
524
+          //   this.tableData.push(obj)
525
+          // }
526
+          //
527
+          // for (let b = 0; b < prescription.addition.length; b++) {
528
+          //     this.additions.push( prescription.addition[b])
529
+          // }
530
+
531
+
532
+
533
+          // let index = i + 1
534
+          // let obj = {
535
+          //   id: prescription.id,
536
+          //   name: '处方' + index,
537
+          //   advices: tempAdvice,
538
+          //   project: tempProject,
539
+          //   type: response.data.data.prescription[i].type
540
+          // }
541
+          // this.prescriptions.push(obj)
542
+          // this.curPrescriptions = this.prescriptions[0]
534
 
543
 
535
           // }
544
           // }
536
           // this.tableData = response.data.data.order
545
           // this.tableData = response.data.data.order
540
     }
549
     }
541
   }
550
   }
542
 }
551
 }
552
+
543
 </script>
553
 </script>
544
 
554
 
545
 <style lang="scss" scoped>
555
 <style lang="scss" scoped>

+ 7 - 2
src/xt_pages/outpatientCharges/allListPrint.vue View File

172
             let count = 0
172
             let count = 0
173
             for (let a = 0; a < details.length; a++) {
173
             for (let a = 0; a < details.length; a++) {
174
               if (new_project_ids[i].id == details[a].project.project_id && new_project_ids[i].price == details[a].project.price) {
174
               if (new_project_ids[i].id == details[a].project.project_id && new_project_ids[i].price == details[a].project.price) {
175
-                obj['name'] = details[a].project.project.project_name
175
+               if( details[a].project.type == 2){
176
+                 obj['name'] = details[a].project.project.project_name
177
+               }else if(details[a].project.type == 3){
178
+                 obj['name'] = details[a].project.good_info.good_name
179
+               }
180
+                obj['unit'] = details[a].project.unit
181
+
176
                 obj['spec'] = '1'
182
                 obj['spec'] = '1'
177
-                obj['unit'] = details[a].project.project.unit
178
                 obj['med_chrgitm_type'] = this.getType(details[a].med_chrgitm_type)
183
                 obj['med_chrgitm_type'] = this.getType(details[a].med_chrgitm_type)
179
                 obj['price'] = parseFloat(details[a].pric)
184
                 obj['price'] = parseFloat(details[a].pric)
180
                 obj['is_total'] = 2
185
                 obj['is_total'] = 2

+ 1 - 1
src/xt_pages/outpatientCharges/components/chargeMonthPrescriptionTable.vue View File

61
         <template slot-scope="scope">{{ scope.row.project_name }}</template>
61
         <template slot-scope="scope">{{ scope.row.project_name }}</template>
62
       </el-table-column>
62
       </el-table-column>
63
       <el-table-column align="center" prop="statistical_classification" width="100" label="组">
63
       <el-table-column align="center" prop="statistical_classification" width="100" label="组">
64
-        <template slot-scope="scope">{{getGroup(scope.row.statistical_classification)}}</template>
64
+        <template slot-scope="scope">{{scope.row.type == 2?getGroup(scope.row.statistical_classification):"耗材"}}</template>
65
       </el-table-column>
65
       </el-table-column>
66
       <el-table-column align="center" prop="single_dose" width="80" label="单次用量">
66
       <el-table-column align="center" prop="single_dose" width="80" label="单次用量">
67
         <template slot-scope="scope">{{scope.row.single_dose}}{{scope.row.unit}}</template>
67
         <template slot-scope="scope">{{scope.row.single_dose}}{{scope.row.unit}}</template>

+ 1 - 1
src/xt_pages/outpatientCharges/components/prescriptionTable.vue View File

61
         <template slot-scope="scope">{{ scope.row.project_name }}</template>
61
         <template slot-scope="scope">{{ scope.row.project_name }}</template>
62
       </el-table-column>
62
       </el-table-column>
63
       <el-table-column align="center" prop="statistical_classification" width="100" label="组">
63
       <el-table-column align="center" prop="statistical_classification" width="100" label="组">
64
-        <template slot-scope="scope">{{getGroup(scope.row.statistical_classification)}}</template>
64
+        <template slot-scope="scope">{{scope.row.type == 2?getGroup(scope.row.statistical_classification):"耗材"}}</template>
65
       </el-table-column>
65
       </el-table-column>
66
       <el-table-column align="center" prop="single_dose" width="80" label="单次用量">
66
       <el-table-column align="center" prop="single_dose" width="80" label="单次用量">
67
         <template slot-scope="scope">{{scope.row.single_dose}}{{scope.row.unit}}</template>
67
         <template slot-scope="scope">{{scope.row.single_dose}}{{scope.row.unit}}</template>

+ 10 - 5
src/xt_pages/outpatientCharges/listPrint.vue View File

56
       if(this.org_id == 10106){
56
       if(this.org_id == 10106){
57
         this.getInfo10106(this.paramsObj.id)
57
         this.getInfo10106(this.paramsObj.id)
58
       }
58
       }
59
-      
59
+
60
     },
60
     },
61
 
61
 
62
     methods: {
62
     methods: {
85
                 price: infos.pric,
85
                 price: infos.pric,
86
                 count: infos.cnt
86
                 count: infos.cnt
87
               }
87
               }
88
+              console.log(infos)
88
               if (infos.advice && infos.advice.id == 0 && infos.project && infos.project.id > 0) {
89
               if (infos.advice && infos.advice.id == 0 && infos.project && infos.project.id > 0) {
89
                 obj['p_time'] = this.getTimes(infos.project.prescription.ctime)
90
                 obj['p_time'] = this.getTimes(infos.project.prescription.ctime)
90
-                obj['name'] = infos.project.project.project_name
91
+                if(infos.project.type == 2){
92
+                  obj['name'] = infos.project.project.project_name
93
+                }else if (infos.project.type == 3){
94
+                  obj['name'] = infos.project.good_info.good_name
95
+                }
91
                 obj['spec'] = 1
96
                 obj['spec'] = 1
92
-                obj['unit'] = infos.project.project.unit
97
+                obj['unit'] = infos.project.unit
93
 
98
 
94
               }
99
               }
95
 
100
 
189
             scanStyles: false
194
             scanStyles: false
190
           });
195
           });
191
         }
196
         }
192
-        
197
+
193
 
198
 
194
         // if (this.org_template_info.template_id == 1) {
199
         // if (this.org_template_info.template_id == 1) {
195
         //   printJS({
200
         //   printJS({
464
   .newContainer::-webkit-scrollbar {
469
   .newContainer::-webkit-scrollbar {
465
     height: 15px !important;
470
     height: 15px !important;
466
   }
471
   }
467
-</style>
472
+</style>

+ 10 - 10
src/xt_pages/outpatientCharges/listTemplate/printTwo.vue View File

84
         <div>
84
         <div>
85
             <div v-if="Object.values(obj)[index].length > 0" v-for="(item,itemIndex) in Object.values(obj)[index]" :key="itemIndex" style="border-bottom:1px solid #000;padding:10px 0;display:flex;" >
85
             <div v-if="Object.values(obj)[index].length > 0" v-for="(item,itemIndex) in Object.values(obj)[index]" :key="itemIndex" style="border-bottom:1px solid #000;padding:10px 0;display:flex;" >
86
                 <div style="width:20%;text-align:center;" v-if="item.advice_id > 0">{{ item.advice.drug.medical_insurance_number }}</div>
86
                 <div style="width:20%;text-align:center;" v-if="item.advice_id > 0">{{ item.advice.drug.medical_insurance_number }}</div>
87
-                <div style="width:20%;text-align:center;" v-if="item.project_id > 0">{{ item.project.project.medical_code }}</div>
87
+                <div style="width:20%;text-align:center;" v-if="item.project_id > 0">{{item.project.type == 2?item.project.project.medical_code: item.project.good_info.medical_insurance_number}}</div>
88
                 <div style="width:20%;text-align:center;" v-if="item.advice_id > 0">{{item.advice.drug.drug_name}}</div>
88
                 <div style="width:20%;text-align:center;" v-if="item.advice_id > 0">{{item.advice.drug.drug_name}}</div>
89
-                <div style="width:20%;text-align:center;" v-if="item.project_id > 0">{{item.project.project.project_name}}</div>
89
+                <div style="width:20%;text-align:center;" v-if="item.project_id > 0">{{item.project.type == 2?item.project.project.project_name:item.project.good_info.good_name}}</div>
90
 
90
 
91
                 <div style="width:10%;text-align:center;">{{item.pric}}</div>
91
                 <div style="width:10%;text-align:center;">{{item.pric}}</div>
92
                 <div style="width:10%;text-align:center;">{{item.cnt}}</div>
92
                 <div style="width:10%;text-align:center;">{{item.cnt}}</div>
97
             </div>
97
             </div>
98
         </div>
98
         </div>
99
     </div>
99
     </div>
100
-    
100
+
101
     <div style="display:flex;border-bottom:1px solid #000;padding:20px 0 10px;">
101
     <div style="display:flex;border-bottom:1px solid #000;padding:20px 0 10px;">
102
       <div style="width:70%;">合计:</div>
102
       <div style="width:70%;">合计:</div>
103
       <div style="width:10%;text-align:center;">{{info.medfee_sumamt}}</div>
103
       <div style="width:10%;text-align:center;">{{info.medfee_sumamt}}</div>
135
         default: function () {
135
         default: function () {
136
           return {}
136
           return {}
137
         }
137
         }
138
-      }, 
138
+      },
139
       order_infos: {
139
       order_infos: {
140
         type: Object,
140
         type: Object,
141
         default: function () {
141
         default: function () {
142
           return {}
142
           return {}
143
         }
143
         }
144
-      }, 
144
+      },
145
       p_admin: {
145
       p_admin: {
146
         type: Object,
146
         type: Object,
147
         default: function () {
147
         default: function () {
153
           return {}
153
           return {}
154
         }
154
         }
155
       }
155
       }
156
-    }, 
156
+    },
157
     data(){
157
     data(){
158
         return{
158
         return{
159
             obj:{},
159
             obj:{},
224
                     'med_chrgitm_type11':[],
224
                     'med_chrgitm_type11':[],
225
                     'med_chrgitm_type14':[],
225
                     'med_chrgitm_type14':[],
226
                 }
226
                 }
227
-                
227
+
228
                 newVal.map(item => {
228
                 newVal.map(item => {
229
-                    
229
+
230
                     if(item.med_chrgitm_type == '01'){
230
                     if(item.med_chrgitm_type == '01'){
231
                         obj.med_chrgitm_type01.push(item)
231
                         obj.med_chrgitm_type01.push(item)
232
                         this.price01 += item.det_item_fee_sumamt
232
                         this.price01 += item.det_item_fee_sumamt
255
                         obj.med_chrgitm_type14.push(item)
255
                         obj.med_chrgitm_type14.push(item)
256
                         this.price14 += item.det_item_fee_sumamt
256
                         this.price14 += item.det_item_fee_sumamt
257
                     }
257
                     }
258
-                    
258
+
259
                 })
259
                 })
260
                 this.obj = obj
260
                 this.obj = obj
261
                 console.log('this.obj',this.obj)
261
                 console.log('this.obj',this.obj)
264
         }
264
         }
265
     }
265
     }
266
 }
266
 }
267
-    
267
+
268
 
268
 
269
 
269
 
270
 </script>
270
 </script>

+ 61 - 12
src/xt_pages/outpatientCharges/outpatientChargesManagement.vue View File

1232
                 let obj = {
1232
                 let obj = {
1233
                   id: prescription.project[b].id,
1233
                   id: prescription.project[b].id,
1234
                   project_id: prescription.project[b].project.id,
1234
                   project_id: prescription.project[b].project.id,
1235
-                  project_name: prescription.project[b].project.project_name,
1236
-                  statistical_classification: prescription.project[b].project.statistical_classification,
1235
+                  // project_name: prescription.project[b].project.project_name,
1236
+                  // statistical_classification: prescription.project[b].project.statistical_classification,
1237
                   single_dose: prescription.project[b].single_dose,
1237
                   single_dose: prescription.project[b].single_dose,
1238
                   delivery_way: prescription.project[b].delivery_way,
1238
                   delivery_way: prescription.project[b].delivery_way,
1239
                   execution_frequency: prescription.project[b].execution_frequency,
1239
                   execution_frequency: prescription.project[b].execution_frequency,
1241
                   total: prescription.project[b].count.toString(),
1241
                   total: prescription.project[b].count.toString(),
1242
                   price: prescription.project[b].price,
1242
                   price: prescription.project[b].price,
1243
                   remark: prescription.project[b].remark,
1243
                   remark: prescription.project[b].remark,
1244
-                  medical_code: prescription.project[b].project.medical_code,
1245
-                  unit: prescription.project[b].unit
1244
+                  // medical_code: prescription.project[b].project.medical_code,
1245
+                  unit: prescription.project[b].unit,
1246
+                  type:prescription.project[b].type,
1247
+
1246
                 }
1248
                 }
1247
 
1249
 
1250
+                if(prescription.project[b].type == 2){
1251
+                  obj['statistical_classification'] =  prescription.project[b].project.statistical_classification
1252
+                  obj['medical_code'] =  prescription.project[b].project.medical_code
1253
+                  obj['project_name'] =  prescription.project[b].project.project_name
1254
+
1255
+                }else if(prescription.project[b].type == 3){
1256
+                  obj['statistical_classification'] = ""
1257
+                  obj['medical_code'] =  prescription.project[b].good_info.medical_insurance_number
1258
+                  obj['project_name'] =  prescription.project[b].good_info.good_name
1259
+                }
1260
+
1261
+
1262
+
1248
                 tempProject.push(obj)
1263
                 tempProject.push(obj)
1249
               }
1264
               }
1250
               let index = i + 1
1265
               let index = i + 1
1950
         } else if (index == 9) {
1965
         } else if (index == 9) {
1951
           this.statementVisible = true;
1966
           this.statementVisible = true;
1952
           let obj = {
1967
           let obj = {
1953
-            order_id: this.order.id
1968
+            order_id: this.order.id,
1969
+            settle_type:this.order.settle_type,
1970
+            start_time:this.order.settle_start_time,
1971
+            end_time:this.order.settle_end_time,
1954
           };
1972
           };
1955
           this.orderObj = obj
1973
           this.orderObj = obj
1956
           // this.$refs.print.getInfo(this.order.id)
1974
           // this.$refs.print.getInfo(this.order.id)
2873
           let count = 0
2891
           let count = 0
2874
           for (let a = 0; a < project_month_prescriptions.project.length; a++) {
2892
           for (let a = 0; a < project_month_prescriptions.project.length; a++) {
2875
             if (project_ids[i].price == project_month_prescriptions.project[a].price && project_ids[i].id == project_month_prescriptions.project[a].project_id) {
2893
             if (project_ids[i].price == project_month_prescriptions.project[a].price && project_ids[i].id == project_month_prescriptions.project[a].project_id) {
2876
-              obj['project_name'] = project_month_prescriptions.project[a].project.project_name
2877
-              obj['statistical_classification'] = project_month_prescriptions.project[a].project.statistical_classification
2894
+
2895
+              if(project_month_prescriptions.project[a].type == 2){
2896
+                obj['statistical_classification'] =  project_month_prescriptions.project[a].project.statistical_classification
2897
+                obj['medical_code'] =  project_month_prescriptions.project[a].project.medical_code
2898
+                obj['project_name'] =  project_month_prescriptions.project[a].project.project_name
2899
+
2900
+
2901
+              }else if(project_month_prescriptions.project[a].type == 3){
2902
+                obj['statistical_classification'] = ""
2903
+                obj['medical_code'] =  project_month_prescriptions.project[a].good_info.medical_insurance_number
2904
+                obj['project_name'] =  project_month_prescriptions.project[a].good_info.good_name
2905
+
2906
+              }
2907
+
2908
+              // obj['project_name'] = project_month_prescriptions.project[a].project.project_name
2909
+              // obj['statistical_classification'] = project_month_prescriptions.project[a].project.statistical_classification
2878
               obj['single_dose'] = project_month_prescriptions.project[a].single_dose
2910
               obj['single_dose'] = project_month_prescriptions.project[a].single_dose
2879
               obj['delivery_way'] = project_month_prescriptions.project[a].delivery_way
2911
               obj['delivery_way'] = project_month_prescriptions.project[a].delivery_way
2880
               obj['execution_frequency'] = project_month_prescriptions.project[a].execution_frequency
2912
               obj['execution_frequency'] = project_month_prescriptions.project[a].execution_frequency
2881
               obj['number_days'] = project_month_prescriptions.project[a].day
2913
               obj['number_days'] = project_month_prescriptions.project[a].day
2882
-              obj['medical_code'] = project_month_prescriptions.project[a].project.medical_code
2914
+              // obj['medical_code'] = project_month_prescriptions.project[a].project.medical_code
2883
               obj['unit'] = project_month_prescriptions.project[a].unit
2915
               obj['unit'] = project_month_prescriptions.project[a].unit
2884
               obj['project_id'] = project_month_prescriptions.project[a].project_id
2916
               obj['project_id'] = project_month_prescriptions.project[a].project_id
2885
               count = count + project_month_prescriptions.project[a].count
2917
               count = count + project_month_prescriptions.project[a].count
2886
               // price = price + project_month_prescriptions.project[a].price
2918
               // price = price + project_month_prescriptions.project[a].price
2887
               obj['price'] = parseFloat(project_month_prescriptions.project[a].price)
2919
               obj['price'] = parseFloat(project_month_prescriptions.project[a].price)
2920
+              obj['type'] = project_month_prescriptions.project[a].type
2888
 
2921
 
2889
             }
2922
             }
2890
           }
2923
           }
3061
                 let obj = {
3094
                 let obj = {
3062
                   id: prescription.project[b].id,
3095
                   id: prescription.project[b].id,
3063
                   project_id: prescription.project[b].project.id,
3096
                   project_id: prescription.project[b].project.id,
3064
-                  project_name: prescription.project[b].project.project_name,
3065
-                  statistical_classification: prescription.project[b].project.statistical_classification,
3097
+                  // project_name: prescription.project[b].project.project_name,
3098
+                  // statistical_classification: prescription.project[b].project.statistical_classification,
3066
                   single_dose: prescription.project[b].single_dose,
3099
                   single_dose: prescription.project[b].single_dose,
3067
                   delivery_way: prescription.project[b].delivery_way,
3100
                   delivery_way: prescription.project[b].delivery_way,
3068
                   execution_frequency: prescription.project[b].execution_frequency,
3101
                   execution_frequency: prescription.project[b].execution_frequency,
3070
                   total: prescription.project[b].count.toString(),
3103
                   total: prescription.project[b].count.toString(),
3071
                   price: prescription.project[b].price,
3104
                   price: prescription.project[b].price,
3072
                   remark: prescription.project[b].remark,
3105
                   remark: prescription.project[b].remark,
3073
-                  medical_code: prescription.project[b].project.medical_code,
3074
-                  unit: prescription.project[b].project.unit
3106
+                  // medical_code: prescription.project[b].project.medical_code,
3107
+                  unit: prescription.project[b].unit,
3108
+                  type:prescription.project[b].type,
3109
+                }
3110
+
3111
+
3112
+                if(prescription.project[b].type == 2){
3113
+                  obj['statistical_classification'] =  prescription.project[b].project.statistical_classification
3114
+                  obj['medical_code'] =  prescription.project[b].project.medical_code
3115
+                  obj['project_name'] =  prescription.project[b].project.project_name
3116
+
3117
+                }else if(prescription.project[b].type == 3){
3118
+                  obj['statistical_classification'] = ""
3119
+                  obj['medical_code'] =  prescription.project[b].good_info.medical_insurance_number
3120
+                  obj['project_name'] =  prescription.project[b].good_info.good_name
3075
                 }
3121
                 }
3122
+
3123
+
3124
+
3076
                 tempProject.push(obj)
3125
                 tempProject.push(obj)
3077
               }
3126
               }
3078
 
3127
 

+ 7 - 0
src/xt_pages/outpatientCharges/statementPrint.vue View File

149
       //       console.log("doctorporject",doctorPorject)
149
       //       console.log("doctorporject",doctorPorject)
150
       //     }
150
       //     }
151
       // })
151
       // })
152
+    }, getTimes(time) {
153
+      return uParseTime(time, '{y}-{m}-{d}')
152
     },
154
     },
153
     searchAction(){
155
     searchAction(){
154
 
156
 
229
               that.info['order_infos'] =  response.data.data.order_infos;
231
               that.info['order_infos'] =  response.data.data.order_infos;
230
               that.info['diagnosis'] =  response.data.data.diagnosis
232
               that.info['diagnosis'] =  response.data.data.diagnosis
231
 
233
 
234
+              if(that.paramsObj.settle_type != 1){
235
+                that.info.begndate = that.getTimes(that.paramsObj.start_time)
236
+                that.info.enddate = that.getTimes(that.paramsObj.end_time)
237
+              }
238
+
232
             }
239
             }
233
           })
240
           })
234
           .catch(function (error) {
241
           .catch(function (error) {

+ 13 - 3
src/xt_pages/outpatientCharges/summaryDetail.vue View File

25
                         </el-table-column>
25
                         </el-table-column>
26
 
26
 
27
                         <el-table-column align="center" prop="project_name" label="分类" width="100">
27
                         <el-table-column align="center" prop="project_name" label="分类" width="100">
28
-                          <template slot-scope="scope">{{ scope.row.type == 1?'药品':'项目' }}</template>
28
+                          <template slot-scope="scope">{{ scope.row.type == 1?'药品': scope.row.project_type == 2? '项目':'耗材'}}</template>
29
                         </el-table-column>
29
                         </el-table-column>
30
 
30
 
31
 
31
 
409
         let count = 0
409
         let count = 0
410
         for (let a = 0; a < project_month_prescriptions.project.length; a++) {
410
         for (let a = 0; a < project_month_prescriptions.project.length; a++) {
411
           if (project_ids[i].price == project_month_prescriptions.project[a].price &&project_ids[i].id == project_month_prescriptions.project[a].project_id ) {
411
           if (project_ids[i].price == project_month_prescriptions.project[a].price &&project_ids[i].id == project_month_prescriptions.project[a].project_id ) {
412
-            obj['name'] = project_month_prescriptions.project[a].project.project_name
413
-            obj['statistical_classification'] = ''
412
+
413
+            if(project_month_prescriptions.project[a].type == 2){
414
+              obj['name'] = project_month_prescriptions.project[a].project.project_name
415
+              obj['statistical_classification'] = ''
416
+              obj['project_type'] = 2
417
+
418
+
419
+            }else if (project_month_prescriptions.project[a].type == 3){
420
+              obj['name'] = project_month_prescriptions.project[a].good_info.good_name
421
+              obj['statistical_classification'] = ''
422
+              obj['project_type'] = 3
423
+            }
414
             obj['single_dose'] = project_month_prescriptions.project[a].single_dose
424
             obj['single_dose'] = project_month_prescriptions.project[a].single_dose
415
             obj['delivery_way'] = project_month_prescriptions.project[a].delivery_way
425
             obj['delivery_way'] = project_month_prescriptions.project[a].delivery_way
416
             obj['execution_frequency'] = project_month_prescriptions.project[a].execution_frequency
426
             obj['execution_frequency'] = project_month_prescriptions.project[a].execution_frequency

+ 23 - 3
src/xt_pages/outpatientDoctorStation/components/callPrescription.vue View File

93
             <el-table-column align="center" type="index" width="60" label="序号"></el-table-column>
93
             <el-table-column align="center" type="index" width="60" label="序号"></el-table-column>
94
             <el-table-column align="center" prop="project_name" width="160" label="名称">
94
             <el-table-column align="center" prop="project_name" width="160" label="名称">
95
               <template slot-scope="scope">
95
               <template slot-scope="scope">
96
-                <span>{{ scope.row.project.project_name }}</span>
96
+                <span>{{ scope.row.type == 2?scope.row.project.project_name:scope.row.good_info.good_name}}</span>
97
               </template>
97
               </template>
98
             </el-table-column>
98
             </el-table-column>
99
             <el-table-column align="center" prop="statistical_classification" width="100" label="组">
99
             <el-table-column align="center" prop="statistical_classification" width="100" label="组">
100
-              <template slot-scope="scope">{{getGroup(scope.row.statistical_classification)}}</template>
100
+              <template slot-scope="scope">{{scope.row.type == 2 ?getGroup(scope.row.statistical_classification):"耗材"}}</template>
101
             </el-table-column>
101
             </el-table-column>
102
             <el-table-column align="center" prop="single_dose" width="90" label="单次用量">
102
             <el-table-column align="center" prop="single_dose" width="90" label="单次用量">
103
               <template slot-scope="scope">
103
               <template slot-scope="scope">
267
             }
267
             }
268
 
268
 
269
 
269
 
270
+
270
             for (let b = 0; b < prescription.project.length; b++) {
271
             for (let b = 0; b < prescription.project.length; b++) {
271
               let obj = {
272
               let obj = {
272
                 id: 0,
273
                 id: 0,
280
                 total:prescription.project[b].count,
281
                 total:prescription.project[b].count,
281
                 price:prescription.project[b].price,
282
                 price:prescription.project[b].price,
282
                 remark:prescription.project[b].remark,
283
                 remark:prescription.project[b].remark,
283
-                medical_code:prescription.project[b].project.medical_code,
284
+                unit: prescription.project[b].unit,
285
+                type: prescription.project[b].type
286
+
287
+                // medical_code:prescription.project[b].project.medical_code,
284
               };
288
               };
289
+              console.log(prescription.project[b].type)
290
+              if(prescription.project[b].type == 2){
291
+                console.log("pre")
292
+
293
+                obj['statistical_classification'] =  prescription.project[b].project.statistical_classification
294
+                obj['medical_code'] =  prescription.project[b].project.medical_code
295
+                obj['project_name'] =  prescription.project[b].project.project_name
296
+
297
+              }else if(prescription.project[b].type == 3){
298
+                console.log("pre2")
299
+
300
+                obj['statistical_classification'] = ""
301
+                obj['medical_code'] =  prescription.project[b].good_info.medical_insurance_number
302
+                obj['project_name'] =  prescription.project[b].good_info.good_name
303
+              }
304
+
285
               tempProject.push(obj)
305
               tempProject.push(obj)
286
             }
306
             }
287
             let obj = {
307
             let obj = {

File diff suppressed because it is too large
+ 1098 - 1028
src/xt_pages/outpatientDoctorStation/components/deskPrescription.vue


+ 15 - 3
src/xt_pages/outpatientDoctorStation/components/inquiriesDetail.vue View File

285
                 let obj = {
285
                 let obj = {
286
                   id: prescription.project[b].id,
286
                   id: prescription.project[b].id,
287
                   project_id: prescription.project[b].project.id,
287
                   project_id: prescription.project[b].project.id,
288
-                  project_name: prescription.project[b].project.project_name,
289
-                  statistical_classification: prescription.project[b].project.statistical_classification,
288
+                  // project_name: prescription.project[b].project.project_name,
289
+                  // statistical_classification: prescription.project[b].project.statistical_classification,
290
                   single_dose: prescription.project[b].single_dose,
290
                   single_dose: prescription.project[b].single_dose,
291
                   delivery_way: prescription.project[b].delivery_way,
291
                   delivery_way: prescription.project[b].delivery_way,
292
                   execution_frequency: prescription.project[b].execution_frequency,
292
                   execution_frequency: prescription.project[b].execution_frequency,
294
                   total: prescription.project[b].count.toString(),
294
                   total: prescription.project[b].count.toString(),
295
                   price: prescription.project[b].price,
295
                   price: prescription.project[b].price,
296
                   remark: prescription.project[b].remark,
296
                   remark: prescription.project[b].remark,
297
-                  medical_code: prescription.project[b].project.medical_code,
297
+                  // medical_code: prescription.project[b].project.medical_code,
298
                   unit:prescription.project[b].project.unit,
298
                   unit:prescription.project[b].project.unit,
299
+                  type:prescription.project[b].type,
300
+
301
+                }
302
+                if(prescription.project[b].type == 2){
303
+                  obj['statistical_classification'] =  prescription.project[b].project.statistical_classification
304
+                  obj['medical_code'] =  prescription.project[b].project.medical_code
305
+                  obj['project_name'] =  prescription.project[b].project.project_name
306
+
307
+                }else if(prescription.project[b].type == 3){
308
+                  obj['statistical_classification'] = ""
309
+                  obj['medical_code'] =  prescription.project[b].good_info.medical_insurance_number
310
+                  obj['project_name'] =  prescription.project[b].good_info.good_name
299
                 }
311
                 }
300
                 tempProject.push(obj)
312
                 tempProject.push(obj)
301
               }
313
               }

+ 1 - 1
src/xt_pages/outpatientDoctorStation/components/newPrescriptionTable.vue View File

63
       </el-table-column>
63
       </el-table-column>
64
       <el-table-column align="center" prop="statistical_classification" width="100" label="组">
64
       <el-table-column align="center" prop="statistical_classification" width="100" label="组">
65
         <template slot-scope="scope">
65
         <template slot-scope="scope">
66
-          <div>{{getGroup(scope.row.statistical_classification)}}</div>
66
+          <div>{{scope.row.type == 2?getGroup(scope.row.statistical_classification):"耗材"}}</div>
67
         </template>
67
         </template>
68
       </el-table-column>
68
       </el-table-column>
69
       <el-table-column align="center" prop="single_dose" width="100" label="单次用量">
69
       <el-table-column align="center" prop="single_dose" width="100" label="单次用量">

+ 20 - 6
src/xt_pages/outpatientDoctorStation/components/nextOrLastPrescription.vue View File

81
             <el-table-column align="center" type="index" width="60" label="序号"></el-table-column>
81
             <el-table-column align="center" type="index" width="60" label="序号"></el-table-column>
82
             <el-table-column align="center" prop="project_name" width="160" label="名称">
82
             <el-table-column align="center" prop="project_name" width="160" label="名称">
83
               <template slot-scope="scope">
83
               <template slot-scope="scope">
84
-                <span>{{ scope.row.project.project_name }}</span>
84
+                <span>{{ scope.row.type == 2 ?scope.row.project.project_name:scope.row.good_info.good_name}}</span>
85
               </template>
85
               </template>
86
             </el-table-column>
86
             </el-table-column>
87
             <el-table-column align="center" prop="statistical_classification" width="100" label="组">
87
             <el-table-column align="center" prop="statistical_classification" width="100" label="组">
88
-              <template slot-scope="scope">{{getGroup(scope.row.statistical_classification)}}</template>
88
+              <template slot-scope="scope">{{ scope.row.type == 2 ?getGroup(scope.row.statistical_classification):"耗材"}}</template>
89
             </el-table-column>
89
             </el-table-column>
90
             <el-table-column align="center" prop="single_dose" width="90" label="单次用量">
90
             <el-table-column align="center" prop="single_dose" width="90" label="单次用量">
91
               <template slot-scope="scope">
91
               <template slot-scope="scope">
328
               let obj = {
328
               let obj = {
329
                 id: 0,
329
                 id: 0,
330
                 project_id: prescription.project[b].project_id,
330
                 project_id: prescription.project[b].project_id,
331
-                project_name: prescription.project[b].project.project_name,
332
-                statistical_classification: prescription.project[b].project.statistical_classification,
331
+                // project_name: prescription.project[b].project.project_name,
332
+                // statistical_classification: prescription.project[b].project.statistical_classification,
333
                 single_dose: prescription.project[b].single_dose,
333
                 single_dose: prescription.project[b].single_dose,
334
                 delivery_way: prescription.project[b].delivery_way,
334
                 delivery_way: prescription.project[b].delivery_way,
335
                 execution_frequency: prescription.project[b].execution_frequency,
335
                 execution_frequency: prescription.project[b].execution_frequency,
337
                 total:prescription.project[b].count.toString(),
337
                 total:prescription.project[b].count.toString(),
338
                 price:prescription.project[b].price,
338
                 price:prescription.project[b].price,
339
                 remark:prescription.project[b].remark,
339
                 remark:prescription.project[b].remark,
340
-                medical_code:prescription.project[b].project.medical_code,
340
+                unit: prescription.project[b].unit,
341
+                type: prescription.project[b].type
342
+
343
+                // medical_code:prescription.project[b].project.medical_code,
341
               };
344
               };
345
+
346
+              if(prescription.project[b].type == 2){
347
+                obj['statistical_classification'] =  prescription.project[b].project.statistical_classification
348
+                obj['medical_code'] =  prescription.project[b].project.medical_code
349
+                obj['project_name'] =  prescription.project[b].project.project_name
350
+
351
+              }else if(prescription.project[b].type == 3){
352
+                obj['statistical_classification'] = ""
353
+                obj['medical_code'] =  prescription.project[b].good_info.medical_insurance_number
354
+                obj['project_name'] =  prescription.project[b].good_info.good_name
355
+              }
356
+
342
               tempProject.push(obj)
357
               tempProject.push(obj)
343
             }
358
             }
344
             let obj = {
359
             let obj = {
353
           }
368
           }
354
         }
369
         }
355
 
370
 
356
-        console.log(this.srcPrescriptions);
357
 
371
 
358
         if(this.srcPrescriptions.length == 1){
372
         if(this.srcPrescriptions.length == 1){
359
           if(this.srcPrescriptions[0].advices.length == 0 && this.srcPrescriptions[0].project.length == 0){
373
           if(this.srcPrescriptions[0].advices.length == 0 && this.srcPrescriptions[0].project.length == 0){

+ 250 - 67
src/xt_pages/outpatientDoctorStation/components/saveTemplate.vue View File

1
 <template>
1
 <template>
2
     <el-dialog
2
     <el-dialog
3
-        title="模板信息"
4
-        width="600px"
5
-        :visible.sync="visible"
6
-        :before-close="_close"
3
+            title="长期处方模版"
4
+            width="600px"
5
+            :visible.sync="visible"
6
+            :before-close="_close"
7
     >
7
     >
8
         <div>
8
         <div>
9
-            <el-form :model="form"  class="adviceForm" ref="form" label-width="100px" style="display: flex;flex-wrap: wrap;justify-content: space-between;">
10
-                <el-form-item label="创建人 : " style="width: 100%;margin-bottom:0;">
11
-                    医生
12
-                </el-form-item>
13
-                <el-form-item label="处方类型 : " style="width: 100%;margin-bottom:0;">
14
-                    药品模板
15
-                </el-form-item>
16
-                <el-form-item label="模板类型 : " style="width: 100%;margin-bottom:0;">
17
-                    <el-radio v-model="radio" label="1">临时</el-radio>
18
-                    <el-radio v-model="radio" label="2">长期</el-radio>
9
+            <el-form :model="form" class="adviceForm" ref="form" label-width="100px"
10
+                     style="display: flex;flex-wrap: wrap;justify-content: space-between;">
11
+
12
+                <!--<el-form-item label="处方模板类别 : " style="width: 100%;margin-bottom:0;">-->
13
+                <!--<el-radio v-model="radio" label="1">临时</el-radio>-->
14
+                <!--<el-radio v-model="radio" label="2">长期</el-radio>-->
15
+                <!--</el-form-item>-->
16
+                <el-form-item label="处方模板名称:" style="width: 100%;margin-bottom:0;">
17
+                    <el-input v-model="form.name" placeholder=""></el-input>
19
                 </el-form-item>
18
                 </el-form-item>
20
-                <el-form-item label="科室 : " style="width: 100%;">
21
-                    <el-select v-model="value" style="width:100%;" placeholder="请选择">
19
+                <el-form-item label="透析模式 : " style="width: 100%;">
20
+                    <el-select v-model="form.mode" style="width:100%;" placeholder="请选择">
22
                         <el-option
21
                         <el-option
23
-                        v-for="item in options"
24
-                        :key="item.value"
25
-                        :label="item.label"
26
-                        :value="item.value">
27
-                        </el-option>
22
+                                v-for="item in modeOptions"
23
+                                :key="item.id"
24
+                                :label="item.name"
25
+                                :value="item.id"
26
+                        ></el-option>
28
                     </el-select>
27
                     </el-select>
29
                 </el-form-item>
28
                 </el-form-item>
30
-                <el-form-item label="模板名称 : " style="width: 100%;">
31
-                    <el-input v-model="form.name" placeholder=""></el-input>
32
-                </el-form-item>
33
-                <el-form-item label="模板说明 : " style="width: 100%;">
34
-                    <el-input v-model="form.name" placeholder=""></el-input>
35
-                </el-form-item>
36
-                <el-form-item label="诊断信息 : " style="width: 100%;">
37
-                    <el-input v-model="form.name" placeholder=""></el-input>
38
-                </el-form-item>
39
-                <el-form-item label="医嘱说明 : " style="width: 100%;">
40
-                    <el-input v-model="form.name" placeholder=""></el-input>
41
-                </el-form-item>
42
-                <el-form-item label="备注说明 : " style="width: 100%;">
43
-                    <el-input v-model="form.name" placeholder=""></el-input>
44
-                </el-form-item>
45
             </el-form>
29
             </el-form>
30
+
31
+
32
+            <div v-for="(item,index) in allPrescription" :key="index">
33
+                <el-checkbox-group v-model="item.check_group">
34
+                    <div v-for="(subItem,index2) in item.prescriptions" :key="index2">
35
+                        <el-checkbox style="margin:10px 0;" :label="subItem.id">{{'处方' + (index2+ 1)}}</el-checkbox>
36
+                        <el-table v-if="subItem.advices.length > 0" :data="subItem.advices" border style="width: 99%;"
37
+                                  :row-style="{ color: '#303133' }"
38
+                                  :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}"
39
+                                  highlight-current-row>
40
+                            <el-table-column align="center" type="index" width="60" label="序号"></el-table-column>
41
+                            <el-table-column align="center" prop="drug_name" width="160" label="名称">
42
+                                <template slot-scope="scope">
43
+                                    <span>{{ scope.row.drug_name }}</span>
44
+                                </template>
45
+                            </el-table-column>
46
+
47
+                            <el-table-column align="center" prop="single_dose" width="90" label="单次用量">
48
+                                <template slot-scope="scope">
49
+                                    <div>{{scope.row.single_dose}}{{scope.row.single_dose_unit}}</div>
50
+                                </template>
51
+                            </el-table-column>
52
+                            <el-table-column align="center" prop="delivery_way" width="100" label="用法">
53
+                                <template slot-scope="scope">
54
+                                    {{scope.row.delivery_way}}
55
+                                </template>
56
+                            </el-table-column>
57
+                            <el-table-column align="center" prop="execution_frequency" width="100" label="频率">
58
+                                <template slot-scope="scope">
59
+                                    {{scope.row.execution_frequency}}
60
+                                </template>
61
+                            </el-table-column>
62
+
63
+                            <el-table-column align="center" prop="day" width="60" label="天数">
64
+                                <template slot-scope="scope">
65
+                                    {{scope.row.day}}
66
+                                </template>
67
+                            </el-table-column>
68
+
69
+                            <el-table-column align="center" prop="prescribing_number" width="100" label="总量">
70
+                                <template slot-scope="scope">
71
+                                    <div>{{scope.row.prescribing_number}} {{scope.row.prescribing_number_unit}}</div>
72
+                                </template>
73
+                            </el-table-column>
74
+                            <el-table-column align="center" prop="retail_price" width="80" label="单价">
75
+                                <template slot-scope="scope">
76
+                                    <div>{{scope.row.retail_price}}</div>
77
+                                </template>
78
+                            </el-table-column>
79
+                            <el-table-column align="center" prop="remark" label="备注">
80
+                                <template slot-scope="scope">
81
+                                    <div>{{scope.row.remark}}</div>
82
+                                </template>
83
+                            </el-table-column>
84
+                        </el-table>
85
+                        <el-table v-if="subItem.project.length > 0" :data="subItem.project" border style="width: 99%;"
86
+                                  :row-style="{ color: '#303133' }"
87
+                                  :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}"
88
+                                  highlight-current-row>
89
+                            <el-table-column align="center" type="index" width="60" label="序号"></el-table-column>
90
+                            <el-table-column align="center" prop="project_name" width="160" label="名称">
91
+                                <template slot-scope="scope">
92
+                                    <span>{{ scope.row.project_name}}</span>
93
+                                </template>
94
+                            </el-table-column>
95
+                            <el-table-column align="center" prop="statistical_classification" width="100" label="组">
96
+                                <template slot-scope="scope">{{ scope.row.type == 2
97
+                                    ?getGroup(scope.row.statistical_classification):'耗材'}}
98
+                                </template>
99
+                            </el-table-column>
100
+                            <el-table-column align="center" prop="single_dose" width="90" label="单次用量">
101
+                                <template slot-scope="scope">
102
+                                    <!--<el-input v-model="scope.row.single_dose" placeholder=""></el-input>-->
103
+                                    <span>{{ scope.row.single_dose }}</span>
104
+
105
+                                </template>
106
+                            </el-table-column>
107
+                            <el-table-column align="center" prop="delivery_way" width="100" label="用法">
108
+                                <template slot-scope="scope">
109
+                                    <!--<el-input v-model="scope.row.delivery_way" placeholder=""></el-input>-->
110
+                                    <span>{{ scope.row.delivery_way }}</span>
111
+
112
+                                </template>
113
+                            </el-table-column>
114
+                            <el-table-column align="center" prop="execution_frequency" width="100" label="频率">
115
+                                <template slot-scope="scope">
116
+                                    <!--<el-input v-model="scope.row.execution_frequency" placeholder=""></el-input>-->
117
+                                    <span>{{ scope.row.execution_frequency }}</span>
118
+
119
+                                </template>
120
+                            </el-table-column>
121
+                            <el-table-column align="center" prop="number_days" width="70" label="天数">
122
+                                <template slot-scope="scope">
123
+                                    <!--<el-input v-model="scope.row.number_days" placeholder=""></el-input>-->
124
+                                    <span>{{ scope.row.number_days }}</span>
125
+
126
+                                </template>
127
+                            </el-table-column>
128
+                            <el-table-column align="center" prop="total" width="70" label="总量">
129
+                                <template slot-scope="scope">
130
+                                    <div>{{ scope.row.total }}{{scope.row.unit}}</div>
131
+                                </template>
132
+                            </el-table-column>
133
+                            <el-table-column align="center" prop="name" width="60" label="单价">
134
+                                <template slot-scope="scope">
135
+                                    <!--<el-input v-model="scope.row.price" placeholder="" readonly></el-input>-->
136
+                                    <span>{{ scope.row.price }}</span>
137
+
138
+                                </template>
139
+                            </el-table-column>
140
+                            <el-table-column align="center" prop="name" label="备注">
141
+                                <template slot-scope="scope">
142
+                                    <!--<el-input v-model="scope.row.remark" :title="scope.row.remark"></el-input>-->
143
+                                    <span>{{ scope.row.remark }}</span>
144
+
145
+                                </template>
146
+                            </el-table-column>
147
+                        </el-table>
148
+                    </div>
149
+                </el-checkbox-group>
150
+            </div>
151
+
152
+
46
         </div>
153
         </div>
47
         <div slot="footer" class="dialog-footer">
154
         <div slot="footer" class="dialog-footer">
48
             <el-button @click="hide">取 消</el-button>
155
             <el-button @click="hide">取 消</el-button>
49
             <el-button type="primary" @click="submitAction()">保 存</el-button>
156
             <el-button type="primary" @click="submitAction()">保 存</el-button>
50
         </div>
157
         </div>
51
-    </el-dialog>         
158
+    </el-dialog>
52
 </template>
159
 </template>
53
 
160
 
54
 <script>
161
 <script>
55
-export default {
56
-    data(){
57
-        return{
58
-            visible:false,
59
-            form:{
60
-                name:''
61
-            },
62
-            radio:"1",
63
-            options:[],
64
-            value:''
65
-        }
66
-    },
67
-    methods:{
68
-        _close: function(done) {
69
-            // this.clear()
70
-            done()
71
-        },
72
-        clear: function() {
73
-            this.form.id = 0;
74
-            this.form.name = "";
75
-            this.form.intro = "";
76
-        },
77
-        show() {
78
-            // this.clear()
79
-            this.visible = true
80
-        },
81
-        hide() {
82
-            // this.clear()
83
-            this.visible = false
162
+  import { getDictionaryDataConfig } from '@/utils/data'
163
+
164
+  export default {
165
+    data() {
166
+      return {
167
+        visible: false,
168
+        modeOptions: {},
169
+        allPrescription: [],
170
+
171
+        form: {
172
+          name: '',
173
+          mode: ''
84
         },
174
         },
175
+        radio: '1',
176
+        options: [],
177
+        value: ''
178
+      }
179
+    },
180
+    methods: {
181
+      getGroup(id) {
182
+        var name = ''
183
+        var statistics_category = getDictionaryDataConfig('system', 'statistics_category')
184
+        for (let i = 0; i < statistics_category.length; i++) {
185
+          if (id == statistics_category[i].id) {
186
+            name = statistics_category[i].name
187
+          }
188
+        }
189
+        return name
190
+      },
191
+      _close: function(done) {
192
+        // this.clear()
193
+        done()
194
+      },
195
+      clear: function() {
196
+        this.form.id = 0
197
+        this.form.name = ''
198
+        this.form.intro = ''
199
+      }, submitAction() {
200
+
201
+        let checkGroup = []
202
+        let allPrescriptions = []
203
+        let targetPrescriptions = []
204
+        let prescriptions = []
205
+        for (let i = 0; i < this.allPrescription.length; i++) {
206
+          for (let a = 0; a < this.allPrescription[i].check_group.length; a++) {
207
+            checkGroup.push(this.allPrescription[i].check_group[a])
208
+          }
209
+          for (let a = 0; a < this.allPrescription[i].prescriptions.length; a++) {
210
+            allPrescriptions.push(this.allPrescription[i].prescriptions[a])
211
+          }
212
+        }
213
+        for (let i = 0; i < allPrescriptions.length; i++) {
214
+          for (let a = 0; a < checkGroup.length; a++) {
215
+            if (allPrescriptions[i].id == checkGroup[a]) {
216
+              targetPrescriptions.push(allPrescriptions[i])
217
+            }
218
+          }
219
+        }
220
+
221
+
222
+        for(let i = 0; i < targetPrescriptions.length; i++){
223
+          if(targetPrescriptions[i].advices.length > 0 && targetPrescriptions[i].project.length == 0){
224
+            targetPrescriptions[i]["type"] = 1
225
+          } else if(targetPrescriptions[i].advices.length == 0 && targetPrescriptions[i].project.length > 0){
226
+            targetPrescriptions[i]["type"] = 2
227
+          }
228
+          for (let b = 0; b < targetPrescriptions[i].advices.length; b++) {
229
+            targetPrescriptions[i].advices[b].single_dose = targetPrescriptions[i].advices[b].single_dose.toString()
230
+            targetPrescriptions[i].advices[b].prescribing_number =targetPrescriptions[i].advices[b].prescribing_number.toString()
231
+            targetPrescriptions[i].advices[b].retail_price = targetPrescriptions[i].advices[b].retail_price.toString()
232
+            targetPrescriptions[i].advices[b].day = parseInt(targetPrescriptions[i].advices[b].day)
233
+          }
234
+          for (let b = 0; b < targetPrescriptions[i].project.length; b++) {
235
+            targetPrescriptions[i].project[b].price =targetPrescriptions[i].project[b].price.toString()
236
+            targetPrescriptions[i].project[b].total =targetPrescriptions[i].project[b].total.toString()
237
+            targetPrescriptions[i].project[b].delivery_way =targetPrescriptions[i].project[b].delivery_way.toString()
238
+          }
239
+        }
240
+
241
+        let params = {
242
+          name: this.form.name,
243
+          mode: this.form.mode,
244
+          prescriptions: targetPrescriptions,
245
+        }
246
+        this.$emit('save_template', params)
247
+      },
248
+      show(prescriptions) {
249
+        for (let i = 0; i < prescriptions.length; i++) {
250
+          if (prescriptions[i].id == 0) {
251
+            prescriptions[i].id = Math.floor((Math.random() + Math.floor(Math.random() * 9 + 1)) * Math.pow(10, 10 - 1))
252
+          }
253
+        }
254
+
255
+        this.allPrescription = []
256
+        this.modeOptions = this.$store.getters.treatment_mode
257
+        let obj = {
258
+          check_group: [],
259
+          prescriptions: prescriptions
260
+        }
261
+        this.allPrescription.push(obj)
262
+        this.visible = true
263
+      },
264
+      hide() {
265
+        // this.clear()
266
+        this.visible = false
267
+      }
85
     }
268
     }
86
-}
269
+  }
87
 </script>
270
 </script>
88
 
271
 
89
 
272
 

File diff suppressed because it is too large
+ 1297 - 123
src/xt_pages/outpatientDoctorStation/doctorDesk.vue


+ 14 - 14
src/xt_pages/outpatientDoctorStation/template/printOne.vue View File

29
               <div class="drugsBox" v-for="(it,i) in item.additionalcharge" :key="i">
29
               <div class="drugsBox" v-for="(it,i) in item.additionalcharge" :key="i">
30
                 <div class="drugsOne">{{it.item_name?it.item_name:""}}:&nbsp;{{it.price}}元/{{it.count}}次</div>
30
                 <div class="drugsOne">{{it.item_name?it.item_name:""}}:&nbsp;{{it.price}}元/{{it.count}}次</div>
31
                </div>
31
                </div>
32
-               
32
+
33
               <div class="drugsBox" v-for="(it,index) in item.project" :key="index">
33
               <div class="drugsBox" v-for="(it,index) in item.project" :key="index">
34
-                  <div class="drugsOne"><span style="font-weight:bold;">{{ index+1 + '.' }}</span>{{getProjectName(it.project_id)?getProjectName(it.project_id):""}}&nbsp;&nbsp;{{it.single_dose}}{{it.single_dose_unit}}&nbsp;×&nbsp; {{it.count}}{{unit}}</div>
34
+                  <div class="drugsOne"><span style="font-weight:bold;">{{ index+1 + '.' }}</span>{{it.type == 2?getProjectName(it.project_id)?getProjectName(it.project_id):"":it.good_info.good_name}}&nbsp;&nbsp;{{it.single_dose}}{{it.single_dose_unit}}&nbsp;×&nbsp; {{it.count}}{{unit}}</div>
35
                   <div style="margin-left:100px;"><span>用法:{{it.single_dose}}{{it.single_dose_unit}}</span>&nbsp;&nbsp;<span>{{it.delivery_way}}</span>&nbsp;&nbsp;<span>{{it.advice_desc}}</span></div>
35
                   <div style="margin-left:100px;"><span>用法:{{it.single_dose}}{{it.single_dose_unit}}</span>&nbsp;&nbsp;<span>{{it.delivery_way}}</span>&nbsp;&nbsp;<span>{{it.advice_desc}}</span></div>
36
               </div>
36
               </div>
37
               <div class="drugsBox" v-for="(it,i) in item.additionalcharge" :key="i">
37
               <div class="drugsBox" v-for="(it,i) in item.additionalcharge" :key="i">
60
           <div style="page-break-after:always"></div>
60
           <div style="page-break-after:always"></div>
61
       </div>
61
       </div>
62
     </div>
62
     </div>
63
-    
63
+
64
   </div>
64
   </div>
65
 
65
 
66
-    
66
+
67
 </template>
67
 </template>
68
 <script>
68
 <script>
69
 import { jsGetAge, uParseTime } from '@/utils/tools'
69
 import { jsGetAge, uParseTime } from '@/utils/tools'
75
       record_date:String,
75
       record_date:String,
76
       prescription_id:Number,
76
       prescription_id:Number,
77
       ids:String
77
       ids:String
78
-    }, 
78
+    },
79
     data(){
79
     data(){
80
       return {
80
       return {
81
         doctorList:[],
81
         doctorList:[],
92
       }
92
       }
93
     },
93
     },
94
    methods:{
94
    methods:{
95
-     
95
+
96
      getAllDoctorList(){
96
      getAllDoctorList(){
97
       getAllDoctorList().then(response=>{
97
       getAllDoctorList().then(response=>{
98
         if(response.data.state == 1){
98
         if(response.data.state == 1){
99
                var doctor =  response.data.data.doctor
99
                var doctor =  response.data.data.doctor
100
-               
100
+
101
                this.doctorList = doctor
101
                this.doctorList = doctor
102
              }
102
              }
103
-         })   
103
+         })
104
      },
104
      },
105
 
105
 
106
       getDoctor(id){
106
       getDoctor(id){
194
             }
194
             }
195
               addtotal =  Math.floor(addtotal * 100) / 100
195
               addtotal =  Math.floor(addtotal * 100) / 100
196
         }
196
         }
197
-       
197
+
198
        }
198
        }
199
 
199
 
200
       for (let i = 0; i < this.prescriptions.length; i++) {
200
       for (let i = 0; i < this.prescriptions.length; i++) {
204
                 total = total + this.prescriptions[i].advices[a].price * this.prescriptions[i].advices[a].prescribing_number
204
                 total = total + this.prescriptions[i].advices[a].price * this.prescriptions[i].advices[a].prescribing_number
205
               }
205
               }
206
             }
206
             }
207
-          
207
+
208
             if (this.prescriptions[i].additionalcharge != null) {
208
             if (this.prescriptions[i].additionalcharge != null) {
209
               for (let a = 0; a < this.prescriptions[i].additionalcharge.length; a++) {
209
               for (let a = 0; a < this.prescriptions[i].additionalcharge.length; a++) {
210
                 addtotal = addtotal + this.prescriptions[i].additionalcharge[a].price * this.prescriptions[i].additionalcharge[a].count
210
                 addtotal = addtotal + this.prescriptions[i].additionalcharge[a].price * this.prescriptions[i].additionalcharge[a].count
216
 
216
 
217
         return total + addtotal
217
         return total + addtotal
218
       },
218
       },
219
-      
219
+
220
      getProjectName(id){
220
      getProjectName(id){
221
         var project_name = ""
221
         var project_name = ""
222
         for(let i=0;i<this.projectList.length;i++){
222
         for(let i=0;i<this.projectList.length;i++){
245
       this.getHisPatientDetail()
245
       this.getHisPatientDetail()
246
       var xtuser = this.$store.getters.xt_user;
246
       var xtuser = this.$store.getters.xt_user;
247
       this.orgname = xtuser.org.org_name;
247
       this.orgname = xtuser.org.org_name;
248
-     
248
+
249
    },
249
    },
250
    watch:{
250
    watch:{
251
      ids:function(val){
251
      ids:function(val){
260
 <style lang="scss" scoped>
260
 <style lang="scss" scoped>
261
 .prescription-print{
261
 .prescription-print{
262
   -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 60px rgba(0, 0, 0, 0.06) inset;
262
   -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 60px rgba(0, 0, 0, 0.06) inset;
263
-    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset; 
263
+    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset;
264
     box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset;
264
     box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset;
265
     margin-bottom: 20px;
265
     margin-bottom: 20px;
266
     padding:20px 10px;
266
     padding:20px 10px;
320
 }
320
 }
321
 .actionBar{
321
 .actionBar{
322
     display: flex;
322
     display: flex;
323
-    justify-content: space-between; 
323
+    justify-content: space-between;
324
     line-height: 24px;
324
     line-height: 24px;
325
     padding:0 10px;
325
     padding:0 10px;
326
 }
326
 }

+ 2 - 2
src/xt_pages/outpatientDoctorStation/treatTemplate/printOne.vue View File

50
                 </tr>
50
                 </tr>
51
                 <tr v-for="(it,index) in item.project" :key="index">
51
                 <tr v-for="(it,index) in item.project" :key="index">
52
                     <td>{{index+1}}</td>
52
                     <td>{{index+1}}</td>
53
-                    <td>{{getProjectName(it.project_id)}}</td>
53
+                    <td>{{it.type == 2 ?getProjectName(it.project_id):it.good_info.good_name}}</td>
54
                     <td>{{it.single_dose}}</td>
54
                     <td>{{it.single_dose}}</td>
55
                     <td>{{getUnit(it.unit)}}</td>
55
                     <td>{{getUnit(it.unit)}}</td>
56
                     <td>{{it.price}}</td>
56
                     <td>{{it.price}}</td>
481
 .actionBar div{
481
 .actionBar div{
482
     width:150px;
482
     width:150px;
483
 }
483
 }
484
-</style>
484
+</style>

+ 1 - 1
src/xt_pages/qcd/dialysisTotal.vue View File

72
         >
72
         >
73
           <el-option label="全部" value></el-option>
73
           <el-option label="全部" value></el-option>
74
           <el-option
74
           <el-option
75
-            v-for="item in modeOptions"
75
+            v-for="item in "
76
             :key="item.id"
76
             :key="item.id"
77
             :label="item.name"
77
             :label="item.name"
78
             :value="item.id"
78
             :value="item.id"