|
@@ -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
|
//获取所有项目
|