Pārlūkot izejas kodu

Merge remote-tracking branch 'origin/20230223_pc_vue_new_branch' into 20230223_pc_vue_new_branch

yq1 1 gadu atpakaļ
vecāks
revīzija
201f0b3f66

+ 49 - 39
src/xt_pages/dialysis/details/consumable/dialysisParameter.vue Parādīt failu

@@ -59,7 +59,7 @@
59 59
         <el-button size="small"  @click="exportList" type="primary">导出</el-button>
60 60
         <el-button size="small"  @click="toPrint" icon="el-icon-printer" type="primary">打印</el-button>
61 61
         <el-button size="small" type="primary" @click="statistics">统计表</el-button>
62
-        <!-- <el-button size="small" type="primary" @click="statisticsOne">导出2</el-button> -->
62
+        
63 63
       </div>
64 64
     </div>
65 65
   
@@ -120,6 +120,11 @@
120 120
             <span v-if="scope.row.mode_id == 30">血浆胆红素吸附+HP</span>
121 121
             <span v-if="scope.row.mode_id == 31">HPD</span>
122 122
             <span v-if="scope.row.mode_id == 32">HDP</span>
123
+            <span v-if="scope.row.mode_id == 33">HFD</span>
124
+            <span v-if="scope.row.mode_id == 34">HDF100</span>
125
+            <span v-if="scope.row.mode_id == 35">HDF600</span>
126
+            <span v-if="scope.row.mode_id == 36">HDF800</span>
127
+            <span v-if="scope.row.mode_id == 37">HDF1000</span>
123 128
            </template>
124 129
         </el-table-column>
125 130
         <el-table-column align="center" label="透析号" v-if="dialysisSett.dialysis_no==1">
@@ -238,6 +243,17 @@
238 243
            </template>
239 244
         </el-table-column>
240 245
 
246
+        <el-table-column align="center" label="封管液" v-if="dialysisSett.blood_access==1">
247
+           <template slot-scope="scope">
248
+             <span v-if="getBloodAccessOption(scope.row.dialysis_solution.blood_access).indexOf('导管')!==-1">1</span>
249
+           </template>
250
+        </el-table-column>
251
+
252
+        <el-table-column align="center" label="促红">
253
+           <template slot-scope="scope">
254
+              {{ scope.row.advice_spc }}
255
+           </template>
256
+        </el-table-column>
241 257
        <el-table-column align="center" label="封管液" v-if="dialysisSett.sealing_fluid_dispose == 1">
242 258
            <template slot-scope="scope">
243 259
              <span>{{scope.row.xt_assesment_after_dislysis.sealing_fluid_dispose}} </span> 
@@ -617,8 +633,6 @@
617 633
         
618 634
         var str = ""
619 635
          if(this.partition_id==0){
620
-            console.log("进阿里232332")
621
-            console.log("wowoowowow",this.zoneList.join(","))
622 636
             str = this.zoneList.join(",")
623 637
          }
624 638
 
@@ -640,6 +654,17 @@
640 654
       
641 655
               }
642 656
               list.sort(this.compare('sort'))
657
+            
658
+
659
+              for(let i=0;i<list.length;i++){
660
+                list[i].advice_spc =""
661
+                 for(let j=0;j<list[i].advice.length;j++){
662
+                     if((list[i].advice[j].advice_name).indexOf("促红")!=-1){
663
+                        list[i].advice_spc+= (list[i].advice[j].single_dose + "iu"+"/"+ list[i].advice[j].prescribing_number_unit)+","
664
+                     }
665
+                 }
666
+              }
667
+              console.log("listwowowowowowo日本",this.list)
643 668
               this.list = list
644 669
               this.total = response.data.data.total
645 670
               this.dialysisSett = response.data.data.dialysisSett
@@ -922,37 +947,7 @@
922 947
         })
923 948
       },
924 949
 
925
-      statisticsOne(){
926
-        console.log("this.list233333333333333333333",this.list)
927
-        import('@/vendor/Export2Excel').then(excel => { 
928
-        if(this.list!=null && this.list.length > 0){
929
-           for(let i=0;i<this.list.length;i++){
930
-             this.tableList[i].index = i+1
931
-             this.tableList[i].name = this.tableList[i].patient.name
932
-             this.tableList[i].mode_name = this.getModeName(this.tableList[i].mode_id)
933
-             this.tableList[i].anticoagulant_name = this.getAnticoagulantName(this.tableList[i].anticoagulant)
934
-             this.tableList[i].anticoagulant_shouji = this.tableList[i].dialysis_prescription.anticoagulant_shouji
935
-             this.tableList[i].anticoagulant_weichi = this.tableList[i].dialysis_prescription.anticoagulant_weichi
936
-             this.tableList[i].anticoagulant_zongliang = this.tableList[i].dialysis_prescription.anticoagulant_zongliang
937
-
938
-             if(this.tableList[i].assessment_befor_dislysis){
939
-
940
-             }
941
-             
942
-           }
943
-        }
944
-        const tHeader = ['序号','姓名','透析方式','抗凝剂','首剂','维持','总量','封管液','促红']
945
-        const filterVal = ['index', 'name','mode_name','anticoagulant_name','anticoagulant_shouji','anticoagulant_weichi','anticoagulant_zongliang']
946
-
947
-        const data = this.formatJson(filterVal, this.tableList)
948
-         excel.export_json_to_excel({
949
-           header: tHeader,
950
-           data,
951
-           filename: '透析参数统计'
952
-         })
953
-          this.downloadLoading = false
954
-        })  
955
-      },
950
+    
956 951
       getModeName(id){
957 952
          var mode_name =""
958 953
          if(id == 1){
@@ -1051,9 +1046,10 @@
1051 1046
          import('@/vendor/Export2Excel').then(excel => {
1052 1047
       
1053 1048
          if(this.list!=null && this.list.length > 0){
1054
-            // console.log("hhhahhah",this.list)
1049
+            console.log("hhhahhah",this.list)
1055 1050
             for(let i=0;i<this.list.length;i++){
1056 1051
               this.list[i].index = i+1
1052
+              this.list[i].mode_name = this.getModeName(this.list[i].mode_id)
1057 1053
               this.list[i].device_number_one =  this.list[i].device_number.zone.name + this.list[i].device_number.number
1058 1054
               this.list[i].patient_name = this.list[i].patient.name
1059 1055
               this.list[i].dialysis_no = this.list[i].patient.dialysis_no
@@ -1066,10 +1062,10 @@
1066 1062
               }
1067 1063
               this.list[i].ultrafiltration_volume = this.list[i].dialysis_solution.target_ultrafiltration?this.list[i].dialysis_solution.target_ultrafiltration:""
1068 1064
              
1069
-              this.list[i].anticoagulant_one = this.getAnticoagualnt(this.list[i].dialysis_solution.anticoagulant) + "(" + this.list[i].dialysis_solution.anticoagulant_shouji?this.list[i].dialysis_solution.anticoagulant_shouji:"" +")" + "("+this.list[i].dialysis_solution.anticoagulant_weichi?this.list[i].dialysis_solution.anticoagulant_weichi:"" +")"+ +"("+this.list[i].dialysis_solution.anticoagulant_zongliang?this.list[i].dialysis_solution.anticoagulant_zongliang:""+")"
1070
-              if(this.list[i].anticoagulant_one == 0){
1071
-                this.list[i].anticoagulant_one = ""
1072
-              }
1065
+              
1066
+              this.list[i].anticoagulant_one=""
1067
+              this.list[i].anticoagulant_one = (this.getAnticoagualnt(this.list[i].dialysis_solution.anticoagulant)) + "(" + (this.list[i].dialysis_solution.anticoagulant_shouji) +")" + "("+(this.list[i].dialysis_solution.anticoagulant_weichi) +")"+"("+(this.list[i].dialysis_solution.anticoagulant_zongliang)+")"
1068
+             
1073 1069
               this.list[i].dialysis_time = this.list[i].dialysis_solution.dialysis_duration_hour?this.list[i].dialysis_solution.dialysis_duration_hour:"" + "时"+ this.list[i].dialysis_solution.dialysis_duration_minute?this.list[i].dialysis_solution.dialysis_duration_minute:"" + "分"
1074 1070
               if(this.list[i].dialysis_time == 0){
1075 1071
                this.list[i].dialysis_time = ""
@@ -1088,6 +1084,10 @@
1088 1084
               this.list[i].glucose = this.list[i].dialysis_solution.glucose?this.list[i].dialysis_solution.glucose:""
1089 1085
               this.list[i].blood_flow_volume = this.list[i].dialysis_solution.blood_flow_volume?this.list[i].dialysis_solution.blood_flow_volume:""
1090 1086
               this.list[i].bicarbonate = this.list[i].dialysis_solution.bicarbonate? this.list[i].dialysis_solution.bicarbonate:""
1087
+              this.list[i].count =0
1088
+              if(this.getBloodAccessOption(this.list[i].dialysis_solution.blood_access).indexOf("导管")!=-1){
1089
+                this.list[i].count =1
1090
+              }
1091 1091
             }
1092 1092
          }
1093 1093
 
@@ -1105,6 +1105,8 @@
1105 1105
            arr.push("姓名")
1106 1106
            arrTwo.push("patient_name")
1107 1107
          }
1108
+         arr.push("透析模式")
1109
+         arrTwo.push("mode_name")
1108 1110
          if(this.dialysisSett.dialysis_no == 1){
1109 1111
            arr.push("透析号")
1110 1112
            arrTwo.push("dialysis_no")
@@ -1196,10 +1198,18 @@
1196 1198
            arrTwo.push("blood_flow_volume")
1197 1199
         }
1198 1200
          
1201
+        arr.push("封管液")
1202
+        arrTwo.push("count")
1203
+
1204
+        arr.push("促红")
1205
+        arrTwo.push("advice_spc")
1199 1206
        
1200 1207
         const tHeader = arr
1201 1208
         const filterVal = arrTwo
1209
+        
1202 1210
         const data = this.formatJson(filterVal, this.list)
1211
+        console.log("DATWOWOWOWO",data)
1212
+       
1203 1213
          excel.export_json_to_excel({
1204 1214
            header: tHeader,
1205 1215
            data,

+ 25 - 0
src/xt_pages/dialysis/details/consumable/dialysisParameterPrint.vue Parādīt failu

@@ -51,6 +51,8 @@
51 51
                 <td width="100" v-if="dialysisSett.sealing_fluid_dispose == 1">封管液</td>
52 52
                 <td width="100"  v-if="dialysisSett.glucose==1">葡萄糖</td>
53 53
                 <td width="100"  v-if="dialysisSett.blood_flow_volume==1">血流量</td>
54
+                <td>封管液</td>
55
+                <td>促红</td>
54 56
               </tr>
55 57
               </thead>
56 58
               <tbody>
@@ -90,6 +92,11 @@
90 92
                   <span v-if="item.mode_id == 30">血浆胆红素吸附+HP</span>
91 93
                   <span v-if="item.mode_id == 31">HPD</span>
92 94
                   <span v-if="item.mode_id == 32">HDP</span>
95
+                  <span v-if="item.mode_id == 33">HFD</span>
96
+                  <span v-if="item.mode_id == 34">HDF100</span>
97
+                  <span v-if="item.mode_id == 35">HDF600</span>
98
+                  <span v-if="item.mode_id == 35">HDF800</span>
99
+                  <span v-if="item.mode_id == 35">HDF1000</span>
93 100
                  
94 101
                 </td>
95 102
                 <td width="100" v-if="dialysisSett.dialysis_no==1">
@@ -163,6 +170,15 @@
163 170
                 <td width="100"  v-if="dialysisSett.blood_flow_volume==1">
164 171
                    <span>{{item.dialysis_solution.blood_flow_volume?item.dialysis_solution.blood_flow_volume:""}}</span> 
165 172
                 </td>
173
+                <td>
174
+                <td>
175
+                  <span v-if="getBloodAccessOption(item.dialysis_solution.blood_access).indexOf('导管')!==-1">1</span>
176
+                </td>
177
+                </td>
178
+                
179
+                <td>
180
+                  {{ item.advice_spc }}
181
+                </td>
166 182
                </tr>
167 183
               </tbody>
168 184
             </table>
@@ -247,6 +263,15 @@
247 263
       
248 264
               }
249 265
               list.sort(this.compare('sort'))
266
+
267
+            for(let i=0;i<list.length;i++){
268
+              list[i].advice_spc =""
269
+                for(let j=0;j<list[i].advice.length;j++){
270
+                    if((list[i].advice[j].advice_name).indexOf("促红")!=-1){
271
+                      list[i].advice_spc+= (list[i].advice[j].single_dose + "iu"+"/"+ list[i].advice[j].prescribing_number_unit)+","
272
+                    }
273
+                }
274
+            }
250 275
             this.list = list
251 276
             this.dialysisSett = response.data.data.dialysisSett
252 277
             console.log("设置",this.dialysisSett)

+ 18 - 0
src/xt_pages/dialysis/details/index.vue Parādīt failu

@@ -2788,6 +2788,24 @@ export default {
2788 2788
       if(val == 32){
2789 2789
         name ="HDP"
2790 2790
       }
2791
+      if(val == 33){
2792
+        name ="HDP"
2793
+      }
2794
+      if(val == 33){
2795
+        name ="HFD"
2796
+      }
2797
+      if(val == 34){
2798
+        name ="HDF100"
2799
+      }
2800
+      if(val == 35){
2801
+        name ="HDF600"
2802
+      }
2803
+      if(val == 36){
2804
+        name ="HDF800"
2805
+      }
2806
+      if(val == 37){
2807
+        name ="HDF1000"
2808
+      }
2791 2809
       return name
2792 2810
     },
2793 2811
     getBloodAccess(id){

+ 1 - 1
src/xt_pages/dialysis/template/DialysisPrintOrderSix.vue Parādīt failu

@@ -4305,7 +4305,7 @@ export default {
4305 4305
 
4306 4306
         // var objProject = {advice_name:"",start_time:"",single_dose:"",single_dose_unit:"",}
4307 4307
       
4308
-        if(this.org_id!=0){
4308
+        if(this.org_id!=10510){
4309 4309
             if(this.projects!=null && this.projects.length >0){
4310 4310
              for(let i=0;i<this.projects.length;i++){
4311 4311
               if(this.projects[i].type== 2){

+ 63 - 7
src/xt_pages/outpatientDoctorStation/components/deskPrescription.vue Parādīt failu

@@ -311,18 +311,18 @@
311 311
                                     <el-table-column label="名称"  v-if="org_id == 10206">
312 312
                                       <template slot-scope="scope">{{ scope.row.drug_name}} {{scope.row.number}}</template>
313 313
                                     </el-table-column>
314
-                                      <el-table-column label="规格" width="60" v-if="org_id == 10206 || org_id == 0">
314
+                                      <el-table-column label="规格" width="60" v-if="org_id == 10206">
315 315
                                           <template slot-scope="scope">
316 316
                                               <span>{{scope.row.drug_spec}}</span>
317 317
                                           </template>
318 318
                                       </el-table-column>
319
-                                    <el-table-column label="规格" width="60" v-if="org_id != 10206 && org_id != 0">
319
+                                    <el-table-column label="规格" width="60" v-if="org_id != 10206">
320 320
                                       <template slot-scope="scope">
321 321
                                         <span v-if="scope.row.min_unit != scope.row.dose_unit">{{scope.row.dose}}{{scope.row.dose_unit}}&nbsp;* &nbsp;</span>{{scope.row.min_number}}{{scope.row.min_unit}}/{{scope.row.max_unit}}
322 322
                                       </template>
323 323
                                     </el-table-column>
324 324
 
325
-                                      <el-table-column label="库存" width="60" v-if="org_id != 10206 && org_id != 0">
325
+                                      <el-table-column label="库存" width="60" v-if="org_id != 10206">
326 326
                                           <template slot-scope="scope">
327 327
                                              <!-- <span v-if="org_id == 9671 || org_id == 9675 || org_id == 4 || org_id == 10138 || org_id == 3877 || org_id == 10028 || org_id == 10243 || org_id == 10088 || org_id == 10245 || org_id == 9919 || org_id == 10106 || org_id == 9504 || org_id ==10215 || org_id == 10188 || org_id == 10265 || org_id == 10164 || org_id ==9956 || org_id == 10188 || org_id == 10191 || org_id == 10278 || org_id == 10217 || org_id ==10210 || org_id ==record_date ||org_id ==10340">
328 328
                                              <span v-if="scope.row.count/scope.row.min_number>0">{{Math.floor(scope.row.count/scope.row.min_number)}}{{scope.row.max_unit}}</span>
@@ -336,7 +336,7 @@
336 336
                                       </el-table-column>
337 337
 
338 338
 <!--                                    //针对对接坐标系统的,使用坐标的库存数据-->
339
-                                    <el-table-column label="库存" width="60" v-if="org_id == 10206 || org_id == 0">
339
+                                    <el-table-column label="库存" width="60" v-if="org_id == 10206">
340 340
                                       <template slot-scope="scope">
341 341
                                         <span>{{scope.row.zuobiao_stock_num}}</span>
342 342
                                       </template>
@@ -543,7 +543,6 @@ const moment = require('moment')
543 543
 
544 544
 export default {
545 545
   props: {
546
-    zuobiao_drug:Array,
547 546
     drugs:Array,
548 547
     allDrugs:Array,
549 548
     advices_template:Array,
@@ -582,6 +581,7 @@ export default {
582 581
   data() {
583 582
     return {
584 583
       drugs:[],
584
+      zuobiao_drug:[],
585 585
       zuobiao_project:[],
586 586
       start_time: moment(new Date()).subtract(30, 'days').format('YYYY-MM-DD'),
587 587
       end_time: moment(new Date()).add('year', 0).format('YYYY-MM-DD'),
@@ -2000,6 +2000,63 @@ export default {
2000 2000
     },
2001 2001
     setData(data, info, admin_info, doctors, department, hisPatientInfo, month_data, last_info,sick,diagnoses,patient_diagnose) {
2002 2002
       console.log("诊断23333333333333",this.diagnose)
2003
+
2004
+      //针对普爱医院获取药品和耗材相关库存数据
2005
+      if (this.org_id == 10206 && this.zuobiao_drug.length == 0) {
2006
+        var that = this
2007
+        axios.get('http://127.0.0.1:9532' + '/nmg/coordinate/querystockdrug', {})
2008
+          .then(function(response) {
2009
+            if (response.data.state == 0) {
2010
+              that.$message.error(response.data.msg)
2011
+              that.loadingtwo = false
2012
+              return false
2013
+            } else {
2014
+              if (response.data.data.failed_code == -10) {
2015
+                that.$confirm(response.data.data.msg, '医保错误信息', {
2016
+                  confirmButtonText: '确 定',
2017
+                  type: 'warning'
2018
+                }).then(() => {
2019
+
2020
+                }).catch(() => {
2021
+                })
2022
+
2023
+              } else {
2024
+                that.zuobiao_drug = response.data.data.drug
2025
+                console.log('坐标~~坐标')
2026
+                console.log(that.zuobiao_drug)
2027
+                console.log(response.data.data.drug)
2028
+                console.log('坐标~~坐标')
2029
+
2030
+                // that.zuobiao_project  = response.data.data.project
2031
+                //跟坐标数据进行匹配,如果bbx01相等的话则,替换库存数量
2032
+                for (let i = 0; i < that.zuobiao_drug.length; i++) {
2033
+                  for (let b = 0; b < that.drugs.length; b++) {
2034
+                    if (that.zuobiao_drug[i].bby01 == that.drugs[b].bby01) {
2035
+                      that.drugs[b]['zuobiao_stock_num'] = that.zuobiao_drug[i].sysl
2036
+                      that.drugs[b].min_price = that.zuobiao_drug[i].lsj
2037
+
2038
+                    }
2039
+
2040
+                  }
2041
+                }
2042
+                console.log('坐标~~坐标')
2043
+                console.log(that.drugs)
2044
+                console.log('坐标~~坐标')
2045
+
2046
+              }
2047
+            }
2048
+          })
2049
+          .catch(function(error) {
2050
+          })
2051
+      }
2052
+
2053
+
2054
+
2055
+
2056
+
2057
+
2058
+
2059
+
2003 2060
       this.sick = sick
2004 2061
       this.diagnoses = diagnoses
2005 2062
       this.department = department
@@ -2233,7 +2290,6 @@ export default {
2233 2290
 
2234 2291
       if(this.org_id == 10206 || this.org_id == 0){
2235 2292
         this.departmentValue = 263
2236
-        this.state1 = 677
2237 2293
         if (this.diagnose.length == 0){
2238 2294
           this.diagnose.push(716)
2239 2295
         }
@@ -3634,7 +3690,7 @@ export default {
3634 3690
         }
3635 3691
        }
3636 3692
 
3637
-      if ( this.org_id == 10206) {
3693
+      if ( this.org_id == 10206 && row.zuobiao_stock_num <= 0) {
3638 3694
         if (row.type == 3) {
3639 3695
           if (selection) {
3640 3696
             selection.forEach(row => {

+ 12 - 2
src/xt_pages/outpatientDoctorStation/components/prescriptionTemplateTable.vue Parādīt failu

@@ -11,11 +11,16 @@
11 11
                     </div>
12 12
                 </template>
13 13
             </el-table-column>
14
-            <el-table-column align="center" prop="drug_name" label="名称"  width="297" >
14
+            <el-table-column align="center" prop="drug_name" label="名称"  width="297" v-if="$store.getters.xt_user.org_id != 10206 && $store.getters.xt_user.org_id != 0 " >
15 15
                 <template slot-scope="scope"><span :title="scope.row.drug_name">{{ scope.row.drug_name }}</span>
16 16
                 </template>
17 17
             </el-table-column>
18 18
 
19
+          <el-table-column align="center" prop="drug_name" label="名称"  width="297"  v-if="$store.getters.xt_user.org_id == 10206 || $store.getters.xt_user.org_id == 0">
20
+            <template slot-scope="scope"><span :title="scope.row.drug_name">{{ scope.row.drug_name }}{{scope.row.drug.number}}</span>
21
+            </template>
22
+          </el-table-column>
23
+
19 24
           <el-table-column align="center" prop="single_dose" width="150" label="单次用量">
20 25
             <template slot-scope="scope">
21 26
               <div style="display:flex;align-items:center;">
@@ -125,10 +130,15 @@
125 130
                 {{scope.$index+1}}
126 131
               </template>
127 132
             </el-table-column>
128
-            <el-table-column align="center" prop="project_name" label="名称">
133
+            <el-table-column align="center" prop="project_name" label="名称" v-if="$store.getters.xt_user.org_id != 10206 && $store.getters.xt_user.org_id != 0">
129 134
                 <template slot-scope="scope"><span :title="scope.row.project_name">{{ scope.row.project_name }}</span>
130 135
                 </template>
131 136
             </el-table-column>
137
+          <el-table-column align="center" prop="project_name" label="名称" v-if="$store.getters.xt_user.org_id == 10206 || $store.getters.xt_user.org_id == 0">
138
+            <template slot-scope="scope"><span :title="scope.row.project_name">{{ scope.row.project_name }}{{scope.row.number}}</span>
139
+            </template>
140
+          </el-table-column>
141
+
132 142
             <el-table-column align="center" prop="statistical_classification" width="100" label="组">
133 143
                 <template slot-scope="scope">{{scope.row.type ==
134 144
                     2?getGroup(scope.row.statistical_classification):'耗材'}}

+ 0 - 77
src/xt_pages/outpatientDoctorStation/doctorDesk.vue Parādīt failu

@@ -161,7 +161,6 @@
161 161
                            v-on:change="changeOther"
162 162
                            v-on:month="changeMonth"
163 163
                            v-on:day="changeDay"
164
-                           :zuobiao_drug="zuobiao_drug"
165 164
 
166 165
                            :month_prescriptions="month_prescriptions"
167 166
                            :org_id="org_id"
@@ -627,7 +626,6 @@ export default {
627 626
       printDate: '',
628 627
       anticoagulants_confit: null,
629 628
       patient_diagnoses: [],
630
-      zuobiao_drug: []
631 629
       // zuobiao_project:[],
632 630
     }
633 631
   },
@@ -1509,54 +1507,7 @@ export default {
1509 1507
 
1510 1508
           this.additions = response.data.data.additions
1511 1509
 
1512
-          //针对普爱医院获取药品和耗材相关库存数据
1513
-          if (this.org_id == 10206) {
1514
-            var that = this
1515
-            axios.get('http://127.0.0.1:9532' + '/nmg/coordinate/querystockdrug', {})
1516
-              .then(function(response) {
1517
-                if (response.data.state == 0) {
1518
-                  that.$message.error(response.data.msg)
1519
-                  that.loadingtwo = false
1520
-                  return false
1521
-                } else {
1522
-                  if (response.data.data.failed_code == -10) {
1523
-                    that.$confirm(response.data.data.msg, '医保错误信息', {
1524
-                      confirmButtonText: '确 定',
1525
-                      type: 'warning'
1526
-                    }).then(() => {
1527
-
1528
-                    }).catch(() => {
1529
-                    })
1530
-
1531
-                  } else {
1532
-                    that.zuobiao_drug = response.data.data.drug
1533
-                    console.log('坐标~~坐标')
1534
-                    console.log(that.zuobiao_drug)
1535
-                    console.log(response.data.data.drug)
1536
-                    console.log('坐标~~坐标')
1537
-
1538
-                    // that.zuobiao_project  = response.data.data.project
1539
-                    //跟坐标数据进行匹配,如果bbx01相等的话则,替换库存数量
1540
-                    for (let i = 0; i < that.zuobiao_drug.length; i++) {
1541
-                      for (let b = 0; b < that.drugs.length; b++) {
1542
-                        if (that.zuobiao_drug[i].bby01 == that.drugs[b].bby01) {
1543
-                          that.drugs[b]['zuobiao_stock_num'] = that.zuobiao_drug[i].sysl
1544
-                          that.drugs[b].min_price = that.zuobiao_drug[i].lsj
1545 1510
 
1546
-                        }
1547
-
1548
-                      }
1549
-                    }
1550
-                    console.log('坐标~~坐标')
1551
-                    console.log(that.drugs)
1552
-                    console.log('坐标~~坐标')
1553
-
1554
-                  }
1555
-                }
1556
-              })
1557
-              .catch(function(error) {
1558
-              })
1559
-          }
1560 1511
         }
1561 1512
       })
1562 1513
 
@@ -5549,34 +5500,6 @@ export default {
5549 5500
 
5550 5501
   },
5551 5502
   created() {
5552
-    axios.post('https://api.xt.kuyicloud.com' + '/coordinate/settle', {
5553
-      params: { 'vaa01': '00000', 'vaa07': '111111' }
5554
-    })
5555
-      .then(function(response) {
5556
-        if (response.data.state == 0) {
5557
-          that.$message.error(response.data.msg)
5558
-          that.loadingtwo = false
5559
-          return false
5560
-        } else {
5561
-          if (response.data.data.failed_code == -10) {
5562
-            that.$confirm(response.data.data.msg, '医保错误信息', {
5563
-              confirmButtonText: '确 定',
5564
-              type: 'warning'
5565
-            }).then(() => {
5566
-
5567
-            }).catch(() => {
5568
-            })
5569
-
5570
-          } else {
5571
-            // that.zuobiao_drug  = response.data.data.drug
5572
-            // that.zuobiao_project  = response.data.data.project
5573
-
5574
-          }
5575
-        }
5576
-      })
5577
-      .catch(function(error) {
5578
-      })
5579
-
5580 5503
     this.anticoagulants_confit = this.$store.getters.anticoagulants_confit
5581 5504
     this.printDate = moment().format('YYYY-MM-DD HH:mm:ss')
5582 5505
     this.$nextTick(() => {

+ 184 - 9
src/xt_pages/outpatientDoctorStation/prescriptionTemplatedetail.vue Parādīt failu

@@ -150,6 +150,12 @@
150 150
                                               {{ scope.row.min_number }}{{ scope.row.min_unit }}/{{ scope.row.max_unit }}
151 151
                                             </template>
152 152
                                           </el-table-column>
153
+
154
+                                          <el-table-column label="库存" width="60" v-if="org_id == 10206" >
155
+                                            <template slot-scope="scope">{{ scope.row.zuobiao_stock_num }}</template>
156
+                                          </el-table-column>
157
+
158
+
153 159
                                           <el-table-column label="规格" width="60" v-if="org_id == 10206 || org_id == 0">
154 160
                                             <template slot-scope="scope">
155 161
                                               <span>{{scope.row.drug_spec}}</span>
@@ -205,6 +211,12 @@
205 211
                                               <el-table-column prop="name" label="名称" v-if="org_id == 10206 || org_id == 0">
206 212
                                                 <template slot-scope="scope">{{ scope.row.project_name }}{{scope.row.number?"("+scope.row.number+")":""}}</template>
207 213
                                               </el-table-column>
214
+
215
+                                              <el-table-column label="库存" width="60" v-if="org_id == 10206" >
216
+                                                <template slot-scope="scope">{{ scope.row.type == 3?scope.row.zuobiao_stock_num :""}}</template>
217
+                                              </el-table-column>
218
+
219
+
208 220
                                                 <el-table-column label="规格" width="60">
209 221
                                                     <template slot-scope="scope">{{ scope.row.single_dose }}</template>
210 222
                                                 </el-table-column>
@@ -277,6 +289,7 @@
277 289
   import { uParseTime } from '@/utils/tools'
278 290
   import PrescriptionTemplateTable from './components/prescriptionTemplateTable'
279 291
   import BreadCrumb from '@/xt_pages/components/bread-crumb'
292
+  import axios from 'axios'
280 293
 
281 294
   const moment = require('moment')
282 295
   export default {
@@ -427,9 +440,98 @@
427 440
 
428 441
         hisList: [],
429 442
         id:0,
443
+        zuobiao_drug:[],
444
+        zuobiao_project:[],
430 445
       }
431 446
     },
432 447
     methods: {
448
+      getZuobiaoDrugStock(){
449
+        if (this.org_id == 10206) {
450
+          var that = this
451
+          axios.get('http://127.0.0.1:9532' + '/nmg/coordinate/querystockdrug', {})
452
+            .then(function(response) {
453
+              if (response.data.state == 0) {
454
+                that.$message.error(response.data.msg)
455
+                that.loadingtwo = false
456
+                return false
457
+              } else {
458
+                if (response.data.data.failed_code == -10) {
459
+                  that.$confirm(response.data.data.msg, '医保错误信息', {
460
+                    confirmButtonText: '确 定',
461
+                    type: 'warning'
462
+                  }).then(() => {
463
+
464
+                  }).catch(() => {
465
+                  })
466
+
467
+                } else {
468
+                  that.zuobiao_drug = response.data.data.drug
469
+                  // console.log('坐标~~坐标')
470
+                  // console.log(that.zuobiao_drug)
471
+                  // console.log(response.data.data.drug)
472
+                  // console.log('坐标~~坐标')
473
+                  //
474
+                  // // that.zuobiao_project  = response.data.data.project
475
+                  // //跟坐标数据进行匹配,如果bbx01相等的话则,替换库存数量
476
+                  // for (let i = 0; i < that.zuobiao_drug.length; i++) {
477
+                  //   for (let b = 0; b < that.drugs.length; b++) {
478
+                  //     if (that.zuobiao_drug[i].bby01 == that.drugs[b].bby01) {
479
+                  //       that.drugs[b]['zuobiao_stock_num'] = that.zuobiao_drug[i].sysl
480
+                  //       that.drugs[b].min_price = that.zuobiao_drug[i].lsj
481
+                  //
482
+                  //     }
483
+                  //
484
+                  //   }
485
+                  // }
486
+                  // console.log('坐标~~坐标')
487
+                  // console.log(that.drugs)
488
+                  // console.log('坐标~~坐标')
489
+
490
+                }
491
+              }
492
+            })
493
+            .catch(function(error) {
494
+            })
495
+        }
496
+
497
+
498
+      },
499
+      getZuobiaoGoodStock(){
500
+        if(this.org_id == 10206){
501
+          var that = this
502
+          axios.get("http://127.0.0.1:9532" + '/nmg/coordinate/querystockgood', {
503
+
504
+          })
505
+            .then(function(response) {
506
+              if (response.data.state == 0) {
507
+                that.$message.error(response.data.msg)
508
+                that.loadingtwo = false
509
+                return false
510
+              } else {
511
+                if (response.data.data.failed_code == -10) {
512
+                  that.$confirm(response.data.data.msg, '医保错误信息', {
513
+                    confirmButtonText: '确 定',
514
+                    type: 'warning'
515
+                  }).then(() => {
516
+
517
+                  }).catch(() => {
518
+                  })
519
+
520
+                } else {
521
+                  // that.zuobiao_drug  = response.data.data.drug
522
+                  that.zuobiao_project  = response.data.data.project
523
+
524
+
525
+                }
526
+              }
527
+            })
528
+            .catch(function(error) {
529
+            })
530
+        }
531
+
532
+
533
+
534
+      },
433 535
       lili(){
434 536
         console.log("this.$store.getters.treatment_mode",this.$store.getters.treatment_mode)
435 537
       },
@@ -711,6 +813,17 @@
711 813
             return false
712 814
           } else {
713 815
             this.drugs = response.data.data.drugs
816
+            if (this.org_id == 10206) {
817
+              for (let i = 0; i < this.zuobiao_drug.length; i++) {
818
+                for (let b = 0; b < this.drugs.length; b++) {
819
+                  if (this.zuobiao_drug[i].bby01 == this.drugs[b].bby01) {
820
+                    this.drugs[b]['zuobiao_stock_num'] = this.zuobiao_drug[i].sysl
821
+                    this.drugs[b].retail_price = this.zuobiao_drug[i].lsj
822
+                  }
823
+                }
824
+              }
825
+            }
826
+
714 827
             this.allDrugs = response.data.data.drugs
715 828
             this.advices_template = response.data.data.advices_template
716 829
             this.doctors = response.data.data.doctors
@@ -1372,12 +1485,28 @@
1372 1485
         this.$refs.additionalCharges.show()
1373 1486
       },
1374 1487
       selectDrugs(selection, row) {
1375
-        this.curDrugs = selection
1488
+        if(this.org_id == 10206){
1489
+          if (row.zuobiao_stock_num <= 0) {
1490
+            if (selection) {
1491
+              selection.forEach(row => {
1492
+                if (row.zuobiao_stock_num <= 0) {
1493
+                  this.$refs.multipleTable.toggleRowSelection(row)
1494
+                }
1495
+              })
1496
+            } else {
1497
+              this.$refs.multipleTable.clearSelection()
1498
+            }
1499
+            this.$message.error(row.drug_name + '库存不足')
1500
+            return
1501
+          }else{
1502
+            this.curDrugs = selection
1503
+          }
1504
+        }else{
1505
+          this.curDrugs = selection
1506
+        }
1376 1507
       },
1377 1508
 
1378 1509
       comfirm() {
1379
-        console.log('222222222222', this.teamList)
1380
-
1381 1510
         // if (this.curPrescriptions.order_status == 2) {
1382 1511
         //   this.$message.error('该处方已经结算,无法继续添加药品或者项目')
1383 1512
         //   this.teamList = []
@@ -1414,7 +1543,6 @@
1414 1543
         if (this.curDrugs.length > 0) {
1415 1544
           for (let i = 0; i < this.curDrugs.length; i++) {
1416 1545
             if(this.$store.getters.xt_user.org.id != 10206) {
1417
-
1418 1546
               if (this.curPrescriptions.med_type == 14 && this.curDrugs[i].is_special_diseases != 1) {
1419 1547
                 this.$message.error('该处方属于特病类型处方,开非特病类型的药')
1420 1548
                 return
@@ -1433,9 +1561,7 @@
1433 1561
                 // return
1434 1562
               }
1435 1563
             }
1436
-
1437 1564
           }
1438
-
1439 1565
           let arr = this.teamList
1440 1566
           let newArr = []
1441 1567
           arr.map(item => {
@@ -1585,8 +1711,11 @@
1585 1711
               }
1586 1712
               this.curStatus = 1
1587 1713
             }
1714
+            console.log("~~~~222222~~~~~~~")
1715
+            console.log(temp2)
1588 1716
 
1589 1717
             if (temp2.length > 0) {
1718
+              console.log("~~~~11111~~~~~~~")
1590 1719
               for (let b = 0; b < temp2.length; b++) {
1591 1720
                 let obj = {
1592 1721
                   id: 0,
@@ -1638,8 +1767,23 @@
1638 1767
       }, changeAllGoodInfoTableDataTwo(row) {
1639 1768
         this.teamList = row
1640 1769
       },
1641
-      selectChange(row) {
1642
-        this.teamList = row
1770
+      selectChange(selection, row) {
1771
+        if (this.org_id == 10206 && row.zuobiao_stock_num <= 0) {
1772
+          if (row.type == 3) {
1773
+            if (selection) {
1774
+              selection.forEach(row => {
1775
+                if (row.zuobiao_stock_num <= 0) {
1776
+                  this.$refs.tables.toggleRowSelection(row)
1777
+                }
1778
+              })
1779
+            } else {
1780
+              this.$refs.tables.clearSelection()
1781
+            }
1782
+            this.$message.error(row.project_name + '库存不足')
1783
+            return
1784
+          }
1785
+        }
1786
+        this.teamList = selection
1643 1787
       }, getPrescriptionTemplateInfo() {
1644 1788
         let params = {
1645 1789
           id: this.$route.query.id
@@ -1680,7 +1824,8 @@
1680 1824
                     groupno: prescription.advices[b].groupno,
1681 1825
                     frequency_type: prescription.advices[b].frequency_type,
1682 1826
                     day_count: prescription.advices[b].day_count,
1683
-                    week_day: prescription.advices[b].week_day
1827
+                    week_day: prescription.advices[b].week_day,
1828
+                    number:  prescription.advices[b].drug.number
1684 1829
 
1685 1830
                   }
1686 1831
                   tempAdvice.push(obj)
@@ -1709,6 +1854,7 @@
1709 1854
                         day_count: prescription.project[b].day_count,
1710 1855
                         week_day: prescription.project[b].week_day
1711 1856
 
1857
+
1712 1858
                       }
1713 1859
 
1714 1860
                       if (prescription.project[b].type == 2) {
@@ -1717,12 +1863,17 @@
1717 1863
                         obj['project_name'] = prescription.project[b].project.project_name
1718 1864
                         obj['project'] = prescription.project[b].project
1719 1865
                         obj['unit'] = prescription.project[b].unit
1866
+                        obj['number'] = ""
1867
+
1868
+
1720 1869
                       } else if (prescription.project[b].type == 3) {
1721 1870
                         obj['statistical_classification'] = ''
1722 1871
                         obj['medical_code'] = prescription.project[b].good_info.medical_insurance_number
1723 1872
                         obj['project_name'] = prescription.project[b].good_info.good_name
1724 1873
                         obj['good_info'] = prescription.project[b].good_info
1725 1874
                         obj['unit'] = prescription.project[b].good_info.packing_unit
1875
+                        obj['number'] = prescription.project[b].good_info.good_number
1876
+
1726 1877
                       }
1727 1878
                       tempProject.push(obj)
1728 1879
                     }else{
@@ -1844,6 +1995,8 @@
1844 1995
                 project: project[i],
1845 1996
                 first_letter:project[i].first_letter,
1846 1997
                 number: "",
1998
+                bbx01:project[i].bbx01,
1999
+
1847 2000
               }
1848 2001
 
1849 2002
               this.tabProject.push(obj)
@@ -1868,6 +2021,7 @@
1868 2021
                 good_info: good_info[i],
1869 2022
                 first_letter:good_info[i].first_letter,
1870 2023
                 number: good_info[i].good_number,
2024
+                bbx01:good_info[i].bbx01,
1871 2025
 
1872 2026
               }
1873 2027
               this.tabProject.push(obj)
@@ -1875,6 +2029,25 @@
1875 2029
 
1876 2030
             this.allProject = this.tabProject
1877 2031
 
2032
+            if(this.org_id == 10206 ) {
2033
+              console.log("-=======")
2034
+              console.log(this.zuobiao_project)
2035
+              console.log(this.tabProject)
2036
+              console.log("-=======")
2037
+              for (let i = 0; i < this.zuobiao_project.length; i++) {
2038
+                for (let b = 0; b < this.tabProject.length; b++) {
2039
+                  if (this.zuobiao_project[i].bbx01 == this.tabProject[b].bbx01){
2040
+                    this.tabProject[b]["zuobiao_stock_num"] = this.zuobiao_project[i].lsqty
2041
+                    this.tabProject[b].price = this.zuobiao_project[i].price
2042
+
2043
+                  }
2044
+                }
2045
+              }
2046
+            }
2047
+
2048
+
2049
+
2050
+
1878 2051
           }
1879 2052
         })
1880 2053
       }, deepClone(source) {
@@ -2198,6 +2371,8 @@
2198 2371
         }
2199 2372
       }
2200 2373
 
2374
+      this.getZuobiaoDrugStock()
2375
+      this.getZuobiaoGoodStock()
2201 2376
       this.getPrescriptionTemplateInfo()
2202 2377
       this.getInitData()
2203 2378
       //获取所有项目