浏览代码

提交代码

陈少旭 1年前
父节点
当前提交
d0c6363670

+ 38 - 0
src/xt_pages/outpatientCharges/summary.vue 查看文件

@@ -243,6 +243,14 @@
243 243
         <el-table-column align="center" width="90" prop="name" label="患者名字">
244 244
           <template slot-scope="scope">{{ scope.row.patient.name }}</template>
245 245
         </el-table-column>
246
+
247
+        <el-table-column align="center" width="90" prop="name" label="患者性别">
248
+          <template slot-scope="scope">{{ scope.row.patient.gender == 1 ? '男':'女' }}</template>
249
+        </el-table-column>
250
+
251
+        <el-table-column align="center" width="90" prop="name" label="患者年龄">
252
+          <template slot-scope="scope">{{getAge(scope.row.patient.id_card_no)}}</template>
253
+        </el-table-column>
246 254
         <!--<el-table-column align="center" prop="name" label="患者类型">-->
247 255
         <!--<template slot-scope="scope"></template>-->
248 256
         <!--</el-table-column>-->
@@ -782,6 +790,19 @@ export default {
782 790
   },
783 791
 
784 792
   methods: {
793
+    getAge(UUserCard) {
794
+      if (UUserCard != null && UUserCard != '') {
795
+        //获取年龄
796
+        var myDate = new Date();
797
+        var month = myDate.getMonth() + 1;
798
+        var day = myDate.getDate();
799
+        var age = myDate.getFullYear() - UUserCard.substring(6, 10) - 1;
800
+        if (UUserCard.substring(10, 12) < month || UUserCard.substring(10, 12) == month && UUserCard.substring(12, 14) <= day) {
801
+          age++;
802
+        }
803
+        return age;
804
+      }
805
+    },
785 806
     accounts_click(){
786 807
       let params = {
787 808
         start_time: this.start_time,
@@ -3323,9 +3344,20 @@ export default {
3323 3344
             let balance_accounts = ''
3324 3345
             let order_status = ''
3325 3346
             let charge_name = ''
3347
+            let  gender = ""
3348
+            let  age = 0
3349
+
3326 3350
 
3327 3351
             let insutypeName = ''
3328 3352
 
3353
+            if(order.patient.gender == 1){
3354
+              gender = "男"
3355
+            }else{
3356
+              gender = "女"
3357
+            }
3358
+
3359
+            age = this.getAge(order.patient.id_card_no)
3360
+
3329 3361
             let time = ''
3330 3362
             if (
3331 3363
               order.his_patient != null &&
@@ -3459,6 +3491,8 @@ export default {
3459 3491
             let obj = {
3460 3492
               就诊号: order.mdtrt_id,
3461 3493
               患者姓名: name,
3494
+              患者性别: gender,
3495
+              患者年龄: age,
3462 3496
               开处时间: time,
3463 3497
               险种类型: insutypeName,
3464 3498
               参保所属医保区划: order.his_patient.insuplc_admdvs,
@@ -3495,6 +3529,8 @@ export default {
3495 3529
             const tHeader = [
3496 3530
               '就诊号',
3497 3531
               '患者姓名',
3532
+              "患者性别",
3533
+              "患者年龄",
3498 3534
               '开处时间',
3499 3535
               '险种类型',
3500 3536
               '参保所属医保区划',
@@ -3527,6 +3563,8 @@ export default {
3527 3563
             const filterVal = [
3528 3564
               '就诊号',
3529 3565
               '患者姓名',
3566
+              "患者性别",
3567
+              "患者年龄",
3530 3568
               '开处时间',
3531 3569
               '险种类型',
3532 3570
               '参保所属医保区划',

+ 183 - 60
src/xt_pages/outpatientDoctorStation/doctorDesk.vue 查看文件

@@ -378,7 +378,7 @@
378 378
                   </div>
379 379
 
380 380
                 </div>
381
-                
381
+
382 382
                 <div class="printCell" style="display:flex;">
383 383
                   <span style="display: block;width: 45%;">
384 384
                     床号:{{ main_collection.number.number }}
@@ -2036,10 +2036,17 @@ export default {
2036 2036
                   if(nowTime.split(" ")[0] != this.record_date){
2037 2037
                     // preTime = this.record_date
2038 2038
                     if(this.schedule.schedule_type == 1){
2039
-                      preTime = this.record_date + ' ' + '7:00'
2039
+                      if(this.org_id == 10206  || this.org_id == 0) {
2040
+                        preTime = this.record_date+ ' ' + '6:00'
2041
+                      }else {
2042
+                        preTime = this.record_date + ' ' + '7:00'
2043
+                      }
2040 2044
                     }else if(this.schedule.schedule_type == 2){
2041
-                      preTime = this.record_date + ' ' + '11:00'
2042
-
2045
+                      if(this.org_id == 10206  || this.org_id == 0){
2046
+                        preTime = this.record_date + ' ' + '10:30'
2047
+                      }else {
2048
+                        preTime = this.record_date + ' ' + '11:00'
2049
+                      }
2043 2050
                     }else{
2044 2051
                       preTime = this.record_date + ' ' + '17:00'
2045 2052
                     }
@@ -2202,7 +2209,7 @@ export default {
2202 2209
                     // preTime = nowYear + '-' + (nowMonth < 10 ? '0' + nowMonth : nowMonth) + '-' + (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + '7:00'
2203 2210
                   } else if (this.schedule.schedule_type == 2) {
2204 2211
                     if(this.org_id == 10206  || this.org_id == 0){
2205
-                      preTime = this.record_date + ' ' + '6:00'
2212
+                      preTime = this.record_date + ' ' + '10:30'
2206 2213
                     }else {
2207 2214
                       preTime = this.record_date + ' ' + '11:00'
2208 2215
                     }
@@ -2210,16 +2217,20 @@ export default {
2210 2217
                     preTime = this.record_date + ' ' + '17:00'
2211 2218
                   }
2212 2219
                 }
2213
-                console.log("++=========")
2214
-                console.log(nowTime.split(" ")[0])
2215
-                console.log(this.record_date)
2216
-                console.log("++=========")
2220
+
2217 2221
                 if(nowTime.split(" ")[0] != this.record_date){
2218 2222
                   if(this.schedule.schedule_type == 1){
2219
-                    preTime = this.record_date + ' ' + '7:00'
2223
+                    if(this.org_id == 10206  || this.org_id == 0) {
2224
+                      preTime = this.record_date+ ' ' + '6:00'
2225
+                    }else {
2226
+                      preTime = this.record_date + ' ' + '7:00'
2227
+                    }
2220 2228
                   }else if(this.schedule.schedule_type == 2){
2221
-                    preTime = this.record_date + ' ' + '11:00'
2222
-
2229
+                    if(this.org_id == 10206  || this.org_id == 0){
2230
+                      preTime = this.record_date + ' ' + '10:30'
2231
+                    }else {
2232
+                      preTime = this.record_date + ' ' + '11:00'
2233
+                    }
2223 2234
                   }else{
2224 2235
                     preTime = this.record_date + ' ' + '17:00'
2225 2236
                   }
@@ -2265,10 +2276,17 @@ export default {
2265 2276
               if(nowTime.split(" ")[0] != this.record_date){
2266 2277
                 // preTime = this.record_date
2267 2278
                 if(this.schedule.schedule_type == 1){
2268
-                  preTime = this.record_date + ' ' + '7:00'
2279
+                  if(this.org_id == 10206  || this.org_id == 0) {
2280
+                    preTime = this.record_date+ ' ' + '6:00'
2281
+                  }else {
2282
+                    preTime = this.record_date + ' ' + '7:00'
2283
+                  }
2269 2284
                 }else if(this.schedule.schedule_type == 2){
2270
-                  preTime = this.record_date + ' ' + '11:00'
2271
-
2285
+                  if(this.org_id == 10206  || this.org_id == 0){
2286
+                    preTime = this.record_date + ' ' + '10:30'
2287
+                  }else {
2288
+                    preTime = this.record_date + ' ' + '11:00'
2289
+                  }
2272 2290
                 }else{
2273 2291
                   preTime = this.record_date + ' ' + '17:00'
2274 2292
                 }
@@ -2585,10 +2603,17 @@ export default {
2585 2603
                       if (prescription.pre_time == 0) {
2586 2604
                         if(nowTime.split(" ")[0] != this.record_date){
2587 2605
                           if(this.schedule.schedule_type == 1){
2588
-                            preTime = this.record_date + ' ' + '7:00'
2606
+                            if(this.org_id == 10206  || this.org_id == 0) {
2607
+                              preTime = this.record_date+ ' ' + '6:00'
2608
+                            }else {
2609
+                              preTime = this.record_date + ' ' + '7:00'
2610
+                            }
2589 2611
                           }else if(this.schedule.schedule_type == 2){
2590
-                            preTime = this.record_date + ' ' + '11:00'
2591
-
2612
+                            if(this.org_id == 10206  || this.org_id == 0){
2613
+                              preTime = this.record_date + ' ' + '10:30'
2614
+                            }else {
2615
+                              preTime = this.record_date + ' ' + '11:00'
2616
+                            }
2592 2617
                           }else{
2593 2618
                             preTime = this.record_date + ' ' + '17:00'
2594 2619
                           }
@@ -2764,10 +2789,17 @@ export default {
2764 2789
                       }
2765 2790
                       if(nowTime.split(" ")[0] != this.record_date){
2766 2791
                         if(this.schedule.schedule_type == 1){
2767
-                          preTime = this.record_date + ' ' + '7:00'
2792
+                          if(this.org_id == 10206  || this.org_id == 0) {
2793
+                            preTime = this.record_date+ ' ' + '6:00'
2794
+                          }else {
2795
+                            preTime = this.record_date + ' ' + '7:00'
2796
+                          }
2768 2797
                         }else if(this.schedule.schedule_type == 2){
2769
-                          preTime = this.record_date + ' ' + '11:00'
2770
-
2798
+                          if(this.org_id == 10206  || this.org_id == 0){
2799
+                            preTime = this.record_date + ' ' + '10:30'
2800
+                          }else {
2801
+                            preTime = this.record_date + ' ' + '11:00'
2802
+                          }
2771 2803
                         }else{
2772 2804
                           preTime = this.record_date + ' ' + '17:00'
2773 2805
                         }
@@ -2806,10 +2838,17 @@ export default {
2806 2838
                   } else {
2807 2839
                     if(nowTime.split(" ")[0] != this.record_date){
2808 2840
                       if(this.schedule.schedule_type == 1){
2809
-                        preTime = this.record_date + ' ' + '7:00'
2841
+                        if(this.org_id == 10206  || this.org_id == 0) {
2842
+                          preTime = this.record_date+ ' ' + '6:00'
2843
+                        }else {
2844
+                          preTime = this.record_date + ' ' + '7:00'
2845
+                        }
2810 2846
                       }else if(this.schedule.schedule_type == 2){
2811
-                        preTime = this.record_date + ' ' + '11:00'
2812
-
2847
+                        if(this.org_id == 10206  || this.org_id == 0){
2848
+                          preTime = this.record_date + ' ' + '10:30'
2849
+                        }else {
2850
+                          preTime = this.record_date + ' ' + '11:00'
2851
+                        }
2813 2852
                       }else{
2814 2853
                         preTime = this.record_date + ' ' + '17:00'
2815 2854
                       }
@@ -3186,10 +3225,17 @@ export default {
3186 3225
                       // preTime = nowTime
3187 3226
                       if(nowTime.split(" ")[0] != this.record_date){
3188 3227
                         if(this.schedule.schedule_type == 1){
3189
-                          preTime = this.record_date + ' ' + '7:00'
3228
+                          if(this.org_id == 10206  || this.org_id == 0) {
3229
+                            preTime = this.record_date+ ' ' + '6:00'
3230
+                          }else {
3231
+                            preTime = this.record_date + ' ' + '7:00'
3232
+                          }
3190 3233
                         }else if(this.schedule.schedule_type == 2){
3191
-                          preTime = this.record_date + ' ' + '11:00'
3192
-
3234
+                          if(this.org_id == 10206  || this.org_id == 0){
3235
+                            preTime = this.record_date + ' ' + '10:30'
3236
+                          }else {
3237
+                            preTime = this.record_date + ' ' + '11:00'
3238
+                          }
3193 3239
                         }else{
3194 3240
                           preTime = this.record_date + ' ' + '17:00'
3195 3241
                         }
@@ -3336,10 +3382,17 @@ export default {
3336 3382
                       var preTime = nowTime
3337 3383
                       if(nowTime.split(" ")[0] != this.record_date){
3338 3384
                         if(this.schedule.schedule_type == 1){
3339
-                          preTime = this.record_date + ' ' + '7:00'
3385
+                          if(this.org_id == 10206  || this.org_id == 0) {
3386
+                            preTime = this.record_date+ ' ' + '6:00'
3387
+                          }else {
3388
+                            preTime = this.record_date + ' ' + '7:00'
3389
+                          }
3340 3390
                         }else if(this.schedule.schedule_type == 2){
3341
-                          preTime = this.record_date + ' ' + '11:00'
3342
-
3391
+                          if(this.org_id == 10206  || this.org_id == 0){
3392
+                            preTime = this.record_date + ' ' + '10:30'
3393
+                          }else {
3394
+                            preTime = this.record_date + ' ' + '11:00'
3395
+                          }
3343 3396
                         }else{
3344 3397
                           preTime = this.record_date + ' ' + '17:00'
3345 3398
                         }
@@ -3376,10 +3429,17 @@ export default {
3376 3429
                   } else {
3377 3430
                     if(nowTime.split(" ")[0] != this.record_date){
3378 3431
                       if(this.schedule.schedule_type == 1){
3379
-                        preTime = this.record_date + ' ' + '7:00'
3432
+                        if(this.org_id == 10206  || this.org_id == 0) {
3433
+                          preTime = this.record_date+ ' ' + '6:00'
3434
+                        }else {
3435
+                          preTime = this.record_date + ' ' + '7:00'
3436
+                        }
3380 3437
                       }else if(this.schedule.schedule_type == 2){
3381
-                        preTime = this.record_date + ' ' + '11:00'
3382
-
3438
+                        if(this.org_id == 10206  || this.org_id == 0){
3439
+                          preTime = this.record_date + ' ' + '10:30'
3440
+                        }else {
3441
+                          preTime = this.record_date + ' ' + '11:00'
3442
+                        }
3383 3443
                       }else{
3384 3444
                         preTime = this.record_date + ' ' + '17:00'
3385 3445
                       }
@@ -3742,10 +3802,17 @@ export default {
3742 3802
                     // preTime = nowTime
3743 3803
                     if(nowTime.split(" ")[0] != this.record_date){
3744 3804
                       if(this.schedule.schedule_type == 1){
3745
-                        preTime = this.record_date + ' ' + '7:00'
3805
+                        if(this.org_id == 10206  || this.org_id == 0) {
3806
+                          preTime = this.record_date+ ' ' + '6:00'
3807
+                        }else {
3808
+                          preTime = this.record_date + ' ' + '7:00'
3809
+                        }
3746 3810
                       }else if(this.schedule.schedule_type == 2){
3747
-                        preTime = this.record_date + ' ' + '11:00'
3748
-
3811
+                        if(this.org_id == 10206  || this.org_id == 0){
3812
+                          preTime = this.record_date + ' ' + '10:30'
3813
+                        }else {
3814
+                          preTime = this.record_date + ' ' + '11:00'
3815
+                        }
3749 3816
                       }else{
3750 3817
                         preTime = this.record_date + ' ' + '17:00'
3751 3818
                       }
@@ -3891,10 +3958,17 @@ export default {
3891 3958
                     var preTime = nowTime
3892 3959
                     if(nowTime.split(" ")[0] != this.record_date){
3893 3960
                       if(this.schedule.schedule_type == 1){
3894
-                        preTime = this.record_date + ' ' + '7:00'
3961
+                        if(this.org_id == 10206  || this.org_id == 0) {
3962
+                          preTime = this.record_date+ ' ' + '6:00'
3963
+                        }else {
3964
+                          preTime = this.record_date + ' ' + '7:00'
3965
+                        }
3895 3966
                       }else if(this.schedule.schedule_type == 2){
3896
-                        preTime = this.record_date + ' ' + '11:00'
3897
-
3967
+                        if(this.org_id == 10206  || this.org_id == 0){
3968
+                          preTime = this.record_date + ' ' + '10:30'
3969
+                        }else {
3970
+                          preTime = this.record_date + ' ' + '11:00'
3971
+                        }
3898 3972
                       }else{
3899 3973
                         preTime = this.record_date + ' ' + '17:00'
3900 3974
                       }
@@ -3932,10 +4006,17 @@ export default {
3932 4006
                 } else {
3933 4007
                   if(nowTime.split(" ")[0] != this.record_date){
3934 4008
                     if(this.schedule.schedule_type == 1){
3935
-                      preTime = this.record_date + ' ' + '7:00'
4009
+                      if(this.org_id == 10206  || this.org_id == 0) {
4010
+                        preTime = this.record_date+ ' ' + '6:00'
4011
+                      }else {
4012
+                        preTime = this.record_date + ' ' + '7:00'
4013
+                      }
3936 4014
                     }else if(this.schedule.schedule_type == 2){
3937
-                      preTime = this.record_date + ' ' + '11:00'
3938
-
4015
+                      if(this.org_id == 10206  || this.org_id == 0){
4016
+                        preTime = this.record_date + ' ' + '10:30'
4017
+                      }else {
4018
+                        preTime = this.record_date + ' ' + '11:00'
4019
+                      }
3939 4020
                     }else{
3940 4021
                       preTime = this.record_date + ' ' + '17:00'
3941 4022
                     }
@@ -4413,10 +4494,17 @@ export default {
4413 4494
                         // preTime = nowTime
4414 4495
                         if(nowTime.split(" ")[0] != this.record_date){
4415 4496
                           if(this.schedule.schedule_type == 1){
4416
-                            preTime = this.record_date + ' ' + '7:00'
4497
+                            if(this.org_id == 10206  || this.org_id == 0) {
4498
+                              preTime = this.record_date+ ' ' + '6:00'
4499
+                            }else {
4500
+                              preTime = this.record_date + ' ' + '7:00'
4501
+                            }
4417 4502
                           }else if(this.schedule.schedule_type == 2){
4418
-                            preTime = this.record_date + ' ' + '11:00'
4419
-
4503
+                            if(this.org_id == 10206  || this.org_id == 0){
4504
+                              preTime = this.record_date + ' ' + '10:30'
4505
+                            }else {
4506
+                              preTime = this.record_date + ' ' + '11:00'
4507
+                            }
4420 4508
                           }else{
4421 4509
                             preTime = this.record_date + ' ' + '17:00'
4422 4510
                           }
@@ -4587,10 +4675,17 @@ export default {
4587 4675
                       }
4588 4676
                       if(nowTime.split(" ")[0] != this.record_date){
4589 4677
                         if(this.schedule.schedule_type == 1){
4590
-                          preTime = this.record_date + ' ' + '7:00'
4678
+                          if(this.org_id == 10206  || this.org_id == 0) {
4679
+                            preTime = this.record_date+ ' ' + '6:00'
4680
+                          }else {
4681
+                            preTime = this.record_date + ' ' + '7:00'
4682
+                          }
4591 4683
                         }else if(this.schedule.schedule_type == 2){
4592
-                          preTime = this.record_date + ' ' + '11:00'
4593
-
4684
+                          if(this.org_id == 10206  || this.org_id == 0){
4685
+                            preTime = this.record_date + ' ' + '10:30'
4686
+                          }else {
4687
+                            preTime = this.record_date + ' ' + '11:00'
4688
+                          }
4594 4689
                         }else{
4595 4690
                           preTime = this.record_date + ' ' + '17:00'
4596 4691
                         }
@@ -4635,10 +4730,17 @@ export default {
4635 4730
 
4636 4731
                     if(nowTime.split(" ")[0] != this.record_date){
4637 4732
                       if(this.schedule.schedule_type == 1){
4638
-                        preTime = this.record_date + ' ' + '7:00'
4733
+                        if(this.org_id == 10206  || this.org_id == 0) {
4734
+                          preTime = this.record_date+ ' ' + '6:00'
4735
+                        }else {
4736
+                          preTime = this.record_date + ' ' + '7:00'
4737
+                        }
4639 4738
                       }else if(this.schedule.schedule_type == 2){
4640
-                        preTime = this.record_date + ' ' + '11:00'
4641
-
4739
+                        if(this.org_id == 10206  || this.org_id == 0){
4740
+                          preTime = this.record_date + ' ' + '10:30'
4741
+                        }else {
4742
+                          preTime = this.record_date + ' ' + '11:00'
4743
+                        }
4642 4744
                       }else{
4643 4745
                         preTime = this.record_date + ' ' + '17:00'
4644 4746
                       }
@@ -5015,10 +5117,17 @@ export default {
5015 5117
                         preTime = nowTime
5016 5118
                         if(nowTime.split(" ")[0] != this.record_date){
5017 5119
                           if(this.schedule.schedule_type == 1){
5018
-                            preTime = this.record_date + ' ' + '7:00'
5120
+                            if(this.org_id == 10206  || this.org_id == 0) {
5121
+                              preTime = this.record_date+ ' ' + '6:00'
5122
+                            }else {
5123
+                              preTime = this.record_date + ' ' + '7:00'
5124
+                            }
5019 5125
                           }else if(this.schedule.schedule_type == 2){
5020
-                            preTime = this.record_date + ' ' + '11:00'
5021
-
5126
+                            if(this.org_id == 10206  || this.org_id == 0){
5127
+                              preTime = this.record_date + ' ' + '10:30'
5128
+                            }else {
5129
+                              preTime = this.record_date + ' ' + '11:00'
5130
+                            }
5022 5131
                           }else{
5023 5132
                             preTime = this.record_date + ' ' + '17:00'
5024 5133
                           }
@@ -5191,10 +5300,17 @@ export default {
5191 5300
                       }
5192 5301
                       if(nowTime.split(" ")[0] != this.record_date){
5193 5302
                         if(this.schedule.schedule_type == 1){
5194
-                          preTime = this.record_date + ' ' + '7:00'
5303
+                          if(this.org_id == 10206  || this.org_id == 0) {
5304
+                            preTime = this.record_date+ ' ' + '6:00'
5305
+                          }else {
5306
+                            preTime = this.record_date + ' ' + '7:00'
5307
+                          }
5195 5308
                         }else if(this.schedule.schedule_type == 2){
5196
-                          preTime = this.record_date + ' ' + '11:00'
5197
-
5309
+                          if(this.org_id == 10206  || this.org_id == 0){
5310
+                            preTime = this.record_date + ' ' + '10:30'
5311
+                          }else {
5312
+                            preTime = this.record_date + ' ' + '11:00'
5313
+                          }
5198 5314
                         }else{
5199 5315
                           preTime = this.record_date + ' ' + '17:00'
5200 5316
                         }
@@ -5238,10 +5354,17 @@ export default {
5238 5354
                   } else {
5239 5355
                     if(nowTime.split(" ")[0] != this.record_date){
5240 5356
                       if(this.schedule.schedule_type == 1){
5241
-                        preTime = this.record_date + ' ' + '7:00'
5357
+                        if(this.org_id == 10206  || this.org_id == 0) {
5358
+                          preTime = this.record_date+ ' ' + '6:00'
5359
+                        }else {
5360
+                          preTime = this.record_date + ' ' + '7:00'
5361
+                        }
5242 5362
                       }else if(this.schedule.schedule_type == 2){
5243
-                        preTime = this.record_date + ' ' + '11:00'
5244
-
5363
+                        if(this.org_id == 10206  || this.org_id == 0){
5364
+                          preTime = this.record_date + ' ' + '10:30'
5365
+                        }else {
5366
+                          preTime = this.record_date + ' ' + '11:00'
5367
+                        }
5245 5368
                       }else{
5246 5369
                         preTime = this.record_date + ' ' + '17:00'
5247 5370
                       }

+ 3 - 3
src/xt_pages/outpatientDoctorStation/print.vue 查看文件

@@ -1,9 +1,9 @@
1 1
 <template>
2 2
   <div>
3 3
     <div class="dialysisPage" style="padding-top: 40px">
4
-      <div v-if="org_id != 10138 && org_id != 10278 && org_id != 10243 && org_id != 10537 && org_id != 10610 && org_id != 0 ">
4
+      <div v-if="org_id != 10138 && org_id != 10278 && org_id != 10243 && org_id != 10537 && org_id != 10610  ">
5 5
 
6
-        <printOne v-if="org_id != 10088 && org_id != 10215 && org_id != 10375 && org_id != 10188 && org_id != 10217 && org_id != 10598 && org_id != 10644 && org_id != 0" v-bind:childResponse="childResponse"
6
+        <printOne v-if="org_id != 10088 && org_id != 10215 && org_id != 10375 && org_id != 10188 && org_id != 10217 && org_id != 10598 && org_id != 10644" v-bind:childResponse="childResponse"
7 7
         :advicePrint="advicePrint" :ids="ids" :patient="patient" :hisPatient="hisPatient"
8 8
         :doctorPorject="doctorPorject" :patient_id="patient_id" :record_date="record_date"
9 9
         :prescription_id="prescription_id"></printOne>
@@ -40,7 +40,7 @@
40 40
         </prineight>
41 41
 
42 42
         <printFour
43
-          v-if="org_id == 10088 || org_id == 10510 || org_id == 10598 || org_id ==0 "
43
+          v-if="org_id == 10088 || org_id == 10510 || org_id == 10598"
44 44
           v-bind:childResponse="childResponse"
45 45
           :advicePrint="advicePrint"
46 46
           :ids="ids"

+ 1 - 1
src/xt_pages/outpatientDoctorStation/template/printOne.vue 查看文件

@@ -33,7 +33,7 @@
33 33
           </div>
34 34
           <div class="infoMain">
35 35
             <div style="margin-bottom: 10px">
36
-              门诊号:{{ hisPatient.number ? hisPatient.number : "" }}
36
+              门诊号:{{ item.hisPatient.number ? item.hisPatient.number : "" }}
37 37
             </div>
38 38
             <div style="margin-bottom: 10px">
39 39
               科室:{{ item.info ? getDepart(item.info.departments) : "" }}