|
@@ -32,9 +32,9 @@
|
32
|
32
|
</div>
|
33
|
33
|
<div class="app-container ">
|
34
|
34
|
<div class="cell clearfix">
|
35
|
|
- <el-select v-model="drug_category" style="width:160px;margin-right:10px;" placeholder="请选择" @change="changeDrug">
|
|
35
|
+ <el-select v-model="drug_type" style="width:160px;margin-right:10px;" placeholder="请选择" @change="changeDrug">
|
36
|
36
|
<el-option
|
37
|
|
- v-for="(item,index) in drugCategory"
|
|
37
|
+ v-for="(item,index) in drugTypeList"
|
38
|
38
|
:key="index"
|
39
|
39
|
:label="item.name"
|
40
|
40
|
:value="item.id">
|
|
@@ -113,31 +113,34 @@
|
113
|
113
|
</el-table-column>
|
114
|
114
|
<el-table-column prop="drug_name" label="入库数量" align="center">
|
115
|
115
|
<template slot-scope="scope">
|
116
|
|
- {{getInCount(scope.row.drug_id)}}
|
|
116
|
+ {{getInCount(scope.row.drug_id)}}
|
|
117
|
+ <!-- {{getInCount(scope.row.drug_id)}}{{scope.row.max_unit}} -->
|
117
|
118
|
</template>
|
118
|
119
|
</el-table-column>
|
119
|
120
|
<el-table-column prop="drug_name" label="出库数量" align="center">
|
120
|
121
|
<template slot-scope="scope">
|
121
|
122
|
{{getOutCount(scope.row.drug_id) + getAutoCount(scope.row.drug_id)}}
|
|
123
|
+ <!-- {{getCount(scope.row.drug_id,scope.row.min_number,scope.row.max_unit,scope.row.min_unit)}} -->
|
122
|
124
|
</template>
|
123
|
125
|
</el-table-column>
|
124
|
126
|
<el-table-column prop="drug_name" label="剩余库存量" align="center">
|
125
|
127
|
<template slot-scope="scope">
|
126
|
128
|
{{getInCount(scope.row.drug_id) - getOutCount(scope.row.drug_id) - getAutoCount(scope.row.drug_id)}}
|
|
129
|
+ <!-- {{getCountTwo(scope.row.drug_id,scope.row.min_number,scope.row.max_unit,scope.row.min_unit)}} -->
|
127
|
130
|
</template>
|
128
|
131
|
</el-table-column>
|
129
|
|
- <el-table-column prop="drug_name" label="操作" align="center">
|
|
132
|
+ <el-table-column prop="drug_name" label="操作" align="center" width="200px">
|
130
|
133
|
<template slot-scope="scope">
|
131
|
134
|
<el-button
|
132
|
135
|
size="small"
|
133
|
136
|
type="primary"
|
134
|
|
- @click="handleDetail(scope.row.drug_id)"
|
|
137
|
+ @click="handleDetail(scope.row)"
|
135
|
138
|
>库存流水
|
136
|
139
|
</el-button>
|
137
|
140
|
<el-button
|
138
|
141
|
size="small"
|
139
|
142
|
type="primary"
|
140
|
|
- @click="handleBatch(scope.row.drug_id)"
|
|
143
|
+ @click="handleBatch(scope.row)"
|
141
|
144
|
>批次
|
142
|
145
|
</el-button>
|
143
|
146
|
</template>
|
|
@@ -171,13 +174,14 @@
|
171
|
174
|
import { getAllDrugStockQueryList,getDrugStockList,getDrugCountList } from '@/api/drug/drug_stock'
|
172
|
175
|
import SettingDialog from './settingDialog/index'
|
173
|
176
|
import { getDictionaryDataConfig } from "@/utils/data";
|
|
177
|
+import { min } from 'moment'
|
174
|
178
|
export default {
|
175
|
179
|
name: 'stockIn',
|
176
|
180
|
created() {
|
177
|
181
|
var drugCategory = getDictionaryDataConfig('system','drug_category')
|
178
|
182
|
this.drugCategory.push(...drugCategory)
|
179
|
|
- this.drugTypeList = getDictionaryDataConfig('system','drug_type')
|
180
|
|
-
|
|
183
|
+ var drugTypeList = getDictionaryDataConfig('system','drug_type')
|
|
184
|
+ this.drugTypeList.push(...drugTypeList)
|
181
|
185
|
this.getlist()
|
182
|
186
|
this.getDrugCountList()
|
183
|
187
|
},
|
|
@@ -212,13 +216,18 @@
|
212
|
216
|
drugCategory:[
|
213
|
217
|
{id:0,name:"全部"}
|
214
|
218
|
],
|
215
|
|
- drugTypeList:[],
|
|
219
|
+ drugTypeList:[
|
|
220
|
+ {id:0,name:"全部"}
|
|
221
|
+ ],
|
216
|
222
|
tableList:[],
|
217
|
223
|
manufacturerList:[],
|
218
|
224
|
countList:[],
|
219
|
225
|
outCountList:[],
|
220
|
226
|
autoCountList:[],
|
221
|
227
|
keyword:"",
|
|
228
|
+ drug_type:0,
|
|
229
|
+ minCount:[],
|
|
230
|
+ drugOutList:[]
|
222
|
231
|
}
|
223
|
232
|
},
|
224
|
233
|
methods: {
|
|
@@ -438,8 +447,7 @@
|
438
|
447
|
return (new Date(time)).getTime() / 1000
|
439
|
448
|
},
|
440
|
449
|
changeDrug(){
|
441
|
|
-
|
442
|
|
- this.getlist()
|
|
450
|
+ this.getlist()
|
443
|
451
|
},
|
444
|
452
|
printOrder(){
|
445
|
453
|
this.$router.push({
|
|
@@ -454,11 +462,11 @@
|
454
|
462
|
page: this.page,
|
455
|
463
|
limit: this.limit,
|
456
|
464
|
keyword: this.keywords,
|
457
|
|
- drug_category:this.drug_category,
|
|
465
|
+ drug_type:this.drug_type,
|
458
|
466
|
start_time:this.start_time,
|
459
|
467
|
end_time:this.end_time,
|
460
|
468
|
}
|
461
|
|
-
|
|
469
|
+ console.log("parasm222222",params)
|
462
|
470
|
getDrugStockList(params).then(response=>{
|
463
|
471
|
if(response.data.state == 1){
|
464
|
472
|
var list = response.data.data.list
|
|
@@ -493,11 +501,25 @@
|
493
|
501
|
}
|
494
|
502
|
return name
|
495
|
503
|
},
|
496
|
|
- handleDetail(id){
|
497
|
|
- this.$router.push({path:'/drugstock/in/drugstockflow?drug_id='+id})
|
|
504
|
+ handleDetail(val){
|
|
505
|
+ var manufacturer_name = ""
|
|
506
|
+ for(let i=0;i<this.manufacturerList.length;i++){
|
|
507
|
+ if(val.manufacturer == this.manufacturerList[i].id){
|
|
508
|
+ manufacturer_name = this.manufacturerList[i].manufacturer_name
|
|
509
|
+ }
|
|
510
|
+ }
|
|
511
|
+ var unit = val.dose + val.dose_unit +"*"+val.min_number+val.min_unit+"/"+val.max_unit
|
|
512
|
+ this.$router.push({path:'/drugstock/in/drugstockflow?drug_id='+val.drug_id+"&drug_name="+val.drug_name+"&manufacturer="+manufacturer_name+"&unit="+unit})
|
498
|
513
|
},
|
499
|
|
- handleBatch(id){
|
500
|
|
- this.$router.push({path:'/drugstock/in/drugbatchnumber?drug_id='+id})
|
|
514
|
+ handleBatch(val){
|
|
515
|
+ var manufacturer_name = ""
|
|
516
|
+ for(let i=0;i<this.manufacturerList.length;i++){
|
|
517
|
+ if(val.manufacturer == this.manufacturerList[i].id){
|
|
518
|
+ manufacturer_name = this.manufacturerList[i].manufacturer_name
|
|
519
|
+ }
|
|
520
|
+ }
|
|
521
|
+ var unit = val.dose + val.dose_unit +"*"+val.min_number+val.min_unit+"/"+val.max_unit
|
|
522
|
+ this.$router.push({path:'/drugstock/in/drugbatchnumber?drug_id='+val.drug_id+"&drug_name="+val.drug_name+"&manufacturer="+manufacturer_name+"&unit="+unit})
|
501
|
523
|
},
|
502
|
524
|
getDrugCountList(){
|
503
|
525
|
var params = {
|
|
@@ -516,6 +538,24 @@
|
516
|
538
|
var aucountlist = response.data.data.auCountList
|
517
|
539
|
console.log("自动数据",aucountlist)
|
518
|
540
|
this.autoCountList = aucountlist
|
|
541
|
+ var minCount = response.data.data.minCount
|
|
542
|
+ console.log("minCount",minCount)
|
|
543
|
+ this.minCount = minCount
|
|
544
|
+ var info = response.data.data.info
|
|
545
|
+ for(let i=0;i<info.length;i++){
|
|
546
|
+ if(info[i].count_unit == info[i].max_unit){
|
|
547
|
+ info[i].count = info[i].count * info[i].min_number
|
|
548
|
+ }
|
|
549
|
+ }
|
|
550
|
+ console.log("info2222222",info)
|
|
551
|
+ this.drugOutList = info
|
|
552
|
+ var arr = []
|
|
553
|
+ for(let i=0;i<this.drugOutList.length;i++){
|
|
554
|
+ if(this.drugOutList[i].drug_id == 1197){
|
|
555
|
+ arr.push(this.drugOutList[i])
|
|
556
|
+ }
|
|
557
|
+ }
|
|
558
|
+ console.log("arrr",arr)
|
519
|
559
|
}
|
520
|
560
|
})
|
521
|
561
|
},
|
|
@@ -546,7 +586,60 @@
|
546
|
586
|
}
|
547
|
587
|
}
|
548
|
588
|
return count
|
549
|
|
- }
|
|
589
|
+ },
|
|
590
|
+ getMinCount(id){
|
|
591
|
+ var count=""
|
|
592
|
+ for(let i=0;i<this.minCount.length;i++){
|
|
593
|
+ if(id == this.minCount[i].drug_id){
|
|
594
|
+ count = this.minCount[i].count
|
|
595
|
+ }
|
|
596
|
+ }
|
|
597
|
+ return count
|
|
598
|
+ },
|
|
599
|
+ getCount(drug_id,min_number,max_unit,min_unit){
|
|
600
|
+ var count= 0
|
|
601
|
+ var str = ""
|
|
602
|
+ var min_str = ""
|
|
603
|
+ for(let i=0;i<this.drugOutList.length;i++){
|
|
604
|
+ if(drug_id == this.drugOutList[i].drug_id){
|
|
605
|
+ count += parseInt(this.drugOutList[i].count)
|
|
606
|
+ }
|
|
607
|
+ }
|
|
608
|
+ if(parseInt(count/min_number)!=0){
|
|
609
|
+ str = parseInt(count/min_number)+ max_unit
|
|
610
|
+ }
|
|
611
|
+ if((count%min_number)!=0){
|
|
612
|
+ min_str = count%min_number + min_unit
|
|
613
|
+ }
|
|
614
|
+ return str + min_str
|
|
615
|
+ },
|
|
616
|
+
|
|
617
|
+ getCountOne(drug_id){
|
|
618
|
+ var count= 0
|
|
619
|
+ for(let i=0;i<this.drugOutList.length;i++){
|
|
620
|
+ if(drug_id == this.drugOutList[i].drug_id){
|
|
621
|
+ count += parseInt(this.drugOutList[i].count)
|
|
622
|
+ }
|
|
623
|
+ }
|
|
624
|
+ return count
|
|
625
|
+ },
|
|
626
|
+ getCountTwo(drug_id,min_number,max_unit,min_unit){
|
|
627
|
+ var total_count = 0
|
|
628
|
+ var out_count = 0
|
|
629
|
+ var count = 0
|
|
630
|
+ var str = ""
|
|
631
|
+ var str_min = ""
|
|
632
|
+ total_count = this.getInCount(drug_id) * min_number
|
|
633
|
+ out_count = this.getCountOne(drug_id)
|
|
634
|
+ count = total_count-out_count
|
|
635
|
+ if(parseInt(count/min_number)!=0){
|
|
636
|
+ str = parseInt(count/min_number) + max_unit
|
|
637
|
+ }
|
|
638
|
+ if((count%min_number)!=0){
|
|
639
|
+ str_min = count%min_number + min_unit
|
|
640
|
+ }
|
|
641
|
+ return str+str_min
|
|
642
|
+ }
|
550
|
643
|
}
|
551
|
644
|
}
|
552
|
645
|
</script>
|