陈少旭 1 gadu atpakaļ
vecāks
revīzija
d0aabf2ca3

+ 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(() => {

+ 185 - 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 => {
@@ -1638,8 +1764,27 @@
1638 1764
       }, changeAllGoodInfoTableDataTwo(row) {
1639 1765
         this.teamList = row
1640 1766
       },
1641
-      selectChange(row) {
1642
-        this.teamList = row
1767
+      selectChange(selection, row) {
1768
+        if ( this.org_id == 10206 && row.zuobiao_stock_num <= 0) {
1769
+          if (row.type == 3) {
1770
+            if (selection) {
1771
+              selection.forEach(row => {
1772
+                if (row.zuobiao_stock_num <= 0) {
1773
+                  this.$refs.tables.toggleRowSelection(row)
1774
+                }
1775
+              })
1776
+            } else {
1777
+              this.$refs.tables.clearSelection()
1778
+            }
1779
+
1780
+            this.$message.error(row.project_name + '库存不足')
1781
+            return
1782
+          }else{
1783
+            this.teamList = row
1784
+          }
1785
+        }else{
1786
+          this.teamList = row
1787
+        }
1643 1788
       }, getPrescriptionTemplateInfo() {
1644 1789
         let params = {
1645 1790
           id: this.$route.query.id
@@ -1680,7 +1825,8 @@
1680 1825
                     groupno: prescription.advices[b].groupno,
1681 1826
                     frequency_type: prescription.advices[b].frequency_type,
1682 1827
                     day_count: prescription.advices[b].day_count,
1683
-                    week_day: prescription.advices[b].week_day
1828
+                    week_day: prescription.advices[b].week_day,
1829
+                    number:  prescription.advices[b].drug.number
1684 1830
 
1685 1831
                   }
1686 1832
                   tempAdvice.push(obj)
@@ -1709,6 +1855,7 @@
1709 1855
                         day_count: prescription.project[b].day_count,
1710 1856
                         week_day: prescription.project[b].week_day
1711 1857
 
1858
+
1712 1859
                       }
1713 1860
 
1714 1861
                       if (prescription.project[b].type == 2) {
@@ -1717,12 +1864,17 @@
1717 1864
                         obj['project_name'] = prescription.project[b].project.project_name
1718 1865
                         obj['project'] = prescription.project[b].project
1719 1866
                         obj['unit'] = prescription.project[b].unit
1867
+                        obj['number'] = ""
1868
+
1869
+
1720 1870
                       } else if (prescription.project[b].type == 3) {
1721 1871
                         obj['statistical_classification'] = ''
1722 1872
                         obj['medical_code'] = prescription.project[b].good_info.medical_insurance_number
1723 1873
                         obj['project_name'] = prescription.project[b].good_info.good_name
1724 1874
                         obj['good_info'] = prescription.project[b].good_info
1725 1875
                         obj['unit'] = prescription.project[b].good_info.packing_unit
1876
+                        obj['number'] = prescription.project[b].good_info.good_number
1877
+
1726 1878
                       }
1727 1879
                       tempProject.push(obj)
1728 1880
                     }else{
@@ -1844,6 +1996,8 @@
1844 1996
                 project: project[i],
1845 1997
                 first_letter:project[i].first_letter,
1846 1998
                 number: "",
1999
+                bbx01:project[i].bbx01,
2000
+
1847 2001
               }
1848 2002
 
1849 2003
               this.tabProject.push(obj)
@@ -1868,6 +2022,7 @@
1868 2022
                 good_info: good_info[i],
1869 2023
                 first_letter:good_info[i].first_letter,
1870 2024
                 number: good_info[i].good_number,
2025
+                bbx01:good_info[i].bbx01,
1871 2026
 
1872 2027
               }
1873 2028
               this.tabProject.push(obj)
@@ -1875,6 +2030,25 @@
1875 2030
 
1876 2031
             this.allProject = this.tabProject
1877 2032
 
2033
+            if(this.org_id == 10206 ) {
2034
+              console.log("-=======")
2035
+              console.log(this.zuobiao_project)
2036
+              console.log(this.tabProject)
2037
+              console.log("-=======")
2038
+              for (let i = 0; i < this.zuobiao_project.length; i++) {
2039
+                for (let b = 0; b < this.tabProject.length; b++) {
2040
+                  if (this.zuobiao_project[i].bbx01 == this.tabProject[b].bbx01){
2041
+                    this.tabProject[b]["zuobiao_stock_num"] = this.zuobiao_project[i].lsqty
2042
+                    this.tabProject[b].price = this.zuobiao_project[i].price
2043
+
2044
+                  }
2045
+                }
2046
+              }
2047
+            }
2048
+
2049
+
2050
+
2051
+
1878 2052
           }
1879 2053
         })
1880 2054
       }, deepClone(source) {
@@ -2198,6 +2372,8 @@
2198 2372
         }
2199 2373
       }
2200 2374
 
2375
+      this.getZuobiaoDrugStock()
2376
+      this.getZuobiaoGoodStock()
2201 2377
       this.getPrescriptionTemplateInfo()
2202 2378
       this.getInitData()
2203 2379
       //获取所有项目