|
@@ -32,30 +32,9 @@
|
32
|
32
|
</div>
|
33
|
33
|
|
34
|
34
|
|
35
|
|
- <!-- <div class="cell clearfix">
|
36
|
|
- <label class="title"><span class="name">经销商</span> : </label>
|
37
|
|
- <el-select size="small" v-model="form.dealer" clearable placeholder="请选择经销商" @change="changeDealer" style="width: 200px;">
|
38
|
|
- <el-option
|
39
|
|
- v-for="(option, index) in dealer"
|
40
|
|
- :key="index"
|
41
|
|
- :label="option.dealer_name"
|
42
|
|
- :value="option.id">
|
43
|
|
- </el-option>
|
44
|
|
- </el-select>
|
45
|
|
- </div> -->
|
46
|
|
-
|
47
|
|
-
|
48
|
|
- <!-- <div class="cell clearfix">
|
49
|
|
- <label class="title"><span class="name">厂商</span> : </label>
|
50
|
|
- <el-select size="small" v-model="form.manufacturer" clearable placeholder="请选择厂商" @change="changeManufacturer" style="width: 200px;">
|
51
|
|
- <el-option
|
52
|
|
- v-for="(option, index) in manufacturer"
|
53
|
|
- :key="index"
|
54
|
|
- :label="option.manufacturer_name"
|
55
|
|
- :value="option.id">
|
56
|
|
- </el-option>
|
57
|
|
- </el-select>
|
58
|
|
- </div> -->
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
59
|
38
|
|
60
|
39
|
<el-form :rules="tableRules" :model="recordInfo" ref="tableForm">
|
61
|
40
|
<el-table :data="recordInfo.recordData" :class="signAndWeighBoxPatients" style="width: 100%" border
|
|
@@ -80,6 +59,7 @@
|
80
|
59
|
@select="handleSelect"
|
81
|
60
|
@input="changeGoodName(scope.$index)"
|
82
|
61
|
style="width:150px;"
|
|
62
|
+ :disabled="stockShow"
|
83
|
63
|
>
|
84
|
64
|
<i class="el-icon-search el-input__icon" slot="suffix"></i>
|
85
|
65
|
<template slot-scope="{ item }">
|
|
@@ -97,6 +77,7 @@
|
97
|
77
|
<template slot-scope="scope">
|
98
|
78
|
<el-form-item style="padding-top: 20px">
|
99
|
79
|
<el-input
|
|
80
|
+ :disabled="stockShow"
|
100
|
81
|
placeholder="请输入商品类型"
|
101
|
82
|
v-model="scope.row.good_type_id"
|
102
|
83
|
:value="typeName(scope.row.good_type_id)"
|
|
@@ -112,7 +93,7 @@
|
112
|
93
|
</template>
|
113
|
94
|
<template slot-scope="scope">
|
114
|
95
|
<el-form-item style="padding-top: 20px">
|
115
|
|
- <el-input v-model="scope.row.name"></el-input>
|
|
96
|
+ <el-input v-model="scope.row.name" :disabled="stockShow"></el-input>
|
116
|
97
|
</el-form-item>
|
117
|
98
|
</template>
|
118
|
99
|
</el-table-column>
|
|
@@ -123,19 +104,20 @@
|
123
|
104
|
</template>
|
124
|
105
|
<template slot-scope="scope">
|
125
|
106
|
<el-form-item style="padding-top: 20px">
|
126
|
|
- <el-select v-model="scope.row.number" filterable placeholder="请选择">
|
|
107
|
+ <el-input placeholder="请输入批号" v-model="scope.row.number" :disabled="stockShow"></el-input>
|
|
108
|
+ <!-- <el-select v-model="scope.row.number" filterable placeholder="请选择">
|
127
|
109
|
<el-option
|
128
|
110
|
v-for="(item,index) in numberList"
|
129
|
111
|
:key="index"
|
130
|
112
|
:label="item.number"
|
131
|
113
|
:value="item.number">
|
132
|
114
|
</el-option>
|
133
|
|
- </el-select>
|
|
115
|
+ </el-select> -->
|
134
|
116
|
</el-form-item>
|
135
|
117
|
</template>
|
136
|
118
|
</el-table-column>
|
137
|
119
|
|
138
|
|
- <el-table-column min-width="23" align="center">
|
|
120
|
+ <el-table-column width="150" align="center">
|
139
|
121
|
<template slot="header" slot-scope="scope">
|
140
|
122
|
<span>单价<span style="color: red">*</span></span>
|
141
|
123
|
</template>
|
|
@@ -143,33 +125,33 @@
|
143
|
125
|
<!--<el-input type="number" v-model="scope.row.price" @blur="handleBlur(scope.$index, scope.row)"></el-input>-->
|
144
|
126
|
<el-form-item :prop="'recordData.' + scope.$index + '.price'" :rules='tableRules.price'
|
145
|
127
|
style="padding-top: 17px">
|
146
|
|
- <el-input type="number" v-model="scope.row.price"></el-input>
|
|
128
|
+ <el-input type="number" v-model="scope.row.price" :disabled="stockShow"></el-input>
|
147
|
129
|
</el-form-item>
|
148
|
130
|
|
149
|
131
|
|
150
|
132
|
</template>
|
151
|
133
|
</el-table-column>
|
152
|
134
|
|
153
|
|
- <el-table-column min-width="23" align="center">
|
|
135
|
+ <el-table-column width="150" align="center">
|
154
|
136
|
<template slot="header" slot-scope="scope">
|
155
|
137
|
<span>出库数量<span style="color: red">*</span></span>
|
156
|
138
|
</template>
|
157
|
139
|
<template slot-scope="scope">
|
158
|
140
|
<el-form-item :prop="'recordData.' + scope.$index + '.count'" :rules='tableRules.count'
|
159
|
141
|
style="padding-top: 17px">
|
160
|
|
- <el-input type="number" v-model="scope.row.count"></el-input>
|
|
142
|
+ <el-input type="number" v-model="scope.row.count" :disabled="stockShow"></el-input>
|
161
|
143
|
</el-form-item>
|
162
|
144
|
</template>
|
163
|
145
|
</el-table-column>
|
164
|
146
|
|
165
|
|
- <el-table-column label="总价" min-width="20" align="center">
|
|
147
|
+ <el-table-column label="总价" width="150" align="center">
|
166
|
148
|
<template slot-scope="scope">
|
167
|
149
|
{{calculate(scope.row.price*scope.row.count)}}
|
168
|
150
|
</template>
|
169
|
151
|
</el-table-column>
|
170
|
152
|
<el-table-column label="生产厂商" width="150" align="center">
|
171
|
153
|
<template slot-scope="scope">
|
172
|
|
- <el-select size="small" v-model="scope.row.manufacturer" filterable placeholder="请选择厂商">
|
|
154
|
+ <el-select size="small" v-model="scope.row.manufacturer" filterable placeholder="请选择厂商" :disabled="stockShow">
|
173
|
155
|
<el-option
|
174
|
156
|
v-for="(option, index) in manufacturerList"
|
175
|
157
|
:key="index"
|
|
@@ -179,12 +161,56 @@
|
179
|
161
|
</el-select>
|
180
|
162
|
</template>
|
181
|
163
|
</el-table-column>
|
182
|
|
- <el-table-column label="备注" min-width="20" align="center">
|
|
164
|
+ <el-table-column label="生产日期" width="150" align="center">
|
|
165
|
+ <template slot-scope="scope">
|
|
166
|
+ <el-date-picker
|
|
167
|
+ :disabled="stockShow"
|
|
168
|
+ prefix-icon="el-icon-date"
|
|
169
|
+ style="width: 145px"
|
|
170
|
+ v-model="scope.row.product_date"
|
|
171
|
+ type="date"
|
|
172
|
+ placeholder="选择日期时间"
|
|
173
|
+ format="yyyy-MM-dd"
|
|
174
|
+ value-format="yyyy-MM-dd"
|
|
175
|
+ ></el-date-picker>
|
|
176
|
+ </template>
|
|
177
|
+ </el-table-column>
|
|
178
|
+
|
|
179
|
+ <el-table-column label="有效期" width="150" align="center">
|
|
180
|
+ <template slot-scope="scope">
|
|
181
|
+ <el-date-picker
|
|
182
|
+ :disabled="stockShow"
|
|
183
|
+ prefix-icon="el-icon-date"
|
|
184
|
+ style="width: 145px"
|
|
185
|
+ v-model="scope.row.expiry_date"
|
|
186
|
+ type="date"
|
|
187
|
+ placeholder="选择日期时间"
|
|
188
|
+ format="yyyy-MM-dd"
|
|
189
|
+ value-format="yyyy-MM-dd"
|
|
190
|
+ ></el-date-picker>
|
|
191
|
+ </template>
|
|
192
|
+ </el-table-column>
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+ <el-table-column label="经销商" width="150" align="center">
|
|
196
|
+ <template slot-scope="scope">
|
|
197
|
+ <el-select size="small" v-model="scope.row.dealer" filterable placeholder="请选择厂商" :disabled="stockShow">
|
|
198
|
+ <el-option
|
|
199
|
+ v-for="(option, index) in dealerList"
|
|
200
|
+ :key="index"
|
|
201
|
+ :label="option.dealer_name"
|
|
202
|
+ :value="option.id">
|
|
203
|
+ </el-option>
|
|
204
|
+ </el-select>
|
|
205
|
+ </template>
|
|
206
|
+ </el-table-column>
|
|
207
|
+
|
|
208
|
+ <el-table-column label="备注" width="150" align="center">
|
183
|
209
|
<template slot-scope="scope">
|
184
|
|
- <el-input v-model="scope.row.remark"></el-input>
|
|
210
|
+ <el-input v-model="scope.row.remark" :disabled="stockShow"></el-input>
|
185
|
211
|
</template>
|
186
|
212
|
</el-table-column>
|
187
|
|
- <el-table-column label="操作" align="center" min-width="30" fixed="right">
|
|
213
|
+ <el-table-column label="操作" align="center" width="150" fixed="right">
|
188
|
214
|
<template slot-scope="scope">
|
189
|
215
|
<el-tooltip class="item" effect="dark" content="新增" placement="top">
|
190
|
216
|
|
|
@@ -286,6 +312,7 @@
|
286
|
312
|
goodType: [],
|
287
|
313
|
goodInfo:[],
|
288
|
314
|
numberList:[],
|
|
315
|
+ stockShow:false
|
289
|
316
|
}
|
290
|
317
|
},
|
291
|
318
|
methods: {
|
|
@@ -365,6 +392,10 @@
|
365
|
392
|
return name;
|
366
|
393
|
},
|
367
|
394
|
handleEdit: function(index, row) {
|
|
395
|
+ if(this.stockShow == true){
|
|
396
|
+ this.$message.error("自动出库数据无法编辑")
|
|
397
|
+ return
|
|
398
|
+ }
|
368
|
399
|
const tempObj = {}
|
369
|
400
|
tempObj['id'] = 0
|
370
|
401
|
tempObj['good_type_id'] = 0
|
|
@@ -374,7 +405,12 @@
|
374
|
405
|
tempObj['remark'] = ''
|
375
|
406
|
tempObj['number'] = ""
|
376
|
407
|
this.recordInfo.recordData.push(tempObj)
|
377
|
|
- }, handleDelete: function(index, row) {
|
|
408
|
+ },
|
|
409
|
+ handleDelete: function(index, row) {
|
|
410
|
+ if(this.stockShow == true){
|
|
411
|
+ this.$message.error("自动出库数据无法删除")
|
|
412
|
+ return
|
|
413
|
+ }
|
378
|
414
|
if (row.id == 0) {
|
379
|
415
|
this.recordInfo.recordData.splice(index, 1)
|
380
|
416
|
} else {
|
|
@@ -488,24 +524,31 @@
|
488
|
524
|
}
|
489
|
525
|
}
|
490
|
526
|
for(let i=0;i<this.recordInfo.recordData.length;i++){
|
|
527
|
+ if(this.recordInfo.recordData[i].expiry_date == "" || this.recordInfo.recordData[i].expiry_date == undefined){
|
|
528
|
+ this.recordInfo.recordData[i].expiry_date = ""
|
|
529
|
+ }
|
|
530
|
+ if(this.recordInfo.recordData[i].product_date == "" || this.recordInfo.recordData[i].product_date == undefined){
|
|
531
|
+ this.recordInfo.recordData[i].product_date = ""
|
|
532
|
+ }
|
491
|
533
|
this.recordInfo.recordData[i].price = this.recordInfo.recordData[i].price.toString()
|
|
534
|
+
|
492
|
535
|
for(let j=0;j<this.manufacturerList.length;j++){
|
493
|
536
|
if(this.recordInfo.recordData[i].manufacturer == this.manufacturerList[j].manufacturer_name){
|
494
|
537
|
this.recordInfo.recordData[i].manufacturer = this.manufacturerList[j].id
|
495
|
538
|
}
|
496
|
539
|
}
|
|
540
|
+ for(let z=0;z<this.dealerList.length;z++){
|
|
541
|
+ if(this.recordInfo.recordData[i].dealer == this.dealerList[z].dealer_name){
|
|
542
|
+ this.recordInfo.recordData[i].dealer = this.dealerList[z].id
|
|
543
|
+ }
|
|
544
|
+ }
|
497
|
545
|
}
|
498
|
546
|
const params = {
|
499
|
547
|
'stockOut': this.recordInfo.recordData
|
500
|
548
|
}
|
501
|
549
|
|
502
|
|
- for(let i=0;i<this.goodList.length;i++){
|
503
|
|
-
|
504
|
|
- }
|
505
|
|
-
|
506
|
|
-
|
507
|
550
|
console.log("stockout",params)
|
508
|
|
-
|
|
551
|
+
|
509
|
552
|
editWarehouseoutInfo(params, this.warehouse_out_time, this.$route.query.id, this.$route.query.type, this.form.manufacturer, this.form.dealer).then(response => {
|
510
|
553
|
if (response.data.state == 0) {
|
511
|
554
|
this.$message.error(response.data.msg)
|
|
@@ -520,43 +563,7 @@
|
520
|
563
|
}
|
521
|
564
|
})
|
522
|
565
|
},
|
523
|
|
- GetOrderDetail: function(order_id) {
|
524
|
|
- const params = {
|
525
|
|
- 'id': order_id
|
526
|
|
- }
|
527
|
|
- getWarehouseOutInfo(params).then(response => {
|
528
|
|
- if (response.data.state == 0) {
|
529
|
|
- this.$message.error(response.data.msg)
|
530
|
|
- return false
|
531
|
|
- } else {
|
532
|
|
- console.log("详情",response.data.data.list)
|
533
|
|
- for (let i = 0; i < response.data.data.list.length; i++) {
|
534
|
|
- response.data.data.list[i].price = response.data.data.list[i].price.toString()
|
535
|
|
- response.data.data.list[i].count = response.data.data.list[i].count.toString()
|
536
|
|
- response.data.data.list[i].good_name = response.data.data.list[i].GoodInfo.good_name
|
537
|
|
- response.data.data.list[i].name = response.data.data.list[i].GoodInfo.good_name + "*" + response.data.data.list[i].GoodInfo.specification_name
|
538
|
|
-
|
539
|
|
- this.recordInfo.recordData.push(response.data.data.list[i])
|
540
|
|
- }
|
541
|
|
- this.warehouseOut = response.data.data.info
|
542
|
|
- this.warehouse_out_time = this.getTime(this.warehouseOut.warehouse_out_time, '{y}-{m}-{d}')
|
543
|
|
- this.form.manufacturer = this.warehouseOut.manufacturer
|
544
|
|
- this.form.dealer = this.warehouseOut.dealer
|
545
|
|
-
|
546
|
|
- }
|
547
|
|
-
|
548
|
|
- if (this.recordInfo.recordData.length == 0) {
|
549
|
|
- const tempObj = {}
|
550
|
|
- tempObj['id'] = 0
|
551
|
|
- tempObj['good_type_id'] = 0
|
552
|
|
- tempObj['good_id'] = 0
|
553
|
|
- tempObj['count'] = ''
|
554
|
|
- tempObj['price'] = ''
|
555
|
|
- tempObj['remark'] = ''
|
556
|
|
- this.recordInfo.recordData.push(tempObj)
|
557
|
|
- }
|
558
|
|
- })
|
559
|
|
- }, calculate: function(val) {
|
|
566
|
+ calculate: function(val) {
|
560
|
567
|
if (val == 0) {
|
561
|
568
|
return ''
|
562
|
569
|
}
|
|
@@ -585,6 +592,11 @@
|
585
|
592
|
this.goodList[i].manufacturer = this.manufacturerList[j].manufacturer_name
|
586
|
593
|
}
|
587
|
594
|
}
|
|
595
|
+ for(let z=0;z<this.dealerList.length;z++){
|
|
596
|
+ if(this.goodList[i].dealer == this.dealerList[z].id){
|
|
597
|
+ this.goodList[i].dealer = this.dealerList[z].dealer_name
|
|
598
|
+ }
|
|
599
|
+ }
|
588
|
600
|
}
|
589
|
601
|
|
590
|
602
|
cb(this.goodList)
|
|
@@ -609,18 +621,17 @@
|
609
|
621
|
this.recordInfo.recordData[i].price = val.buy_price
|
610
|
622
|
this.recordInfo.recordData[i].specification_name = val.specification_name
|
611
|
623
|
this.recordInfo.recordData[i].good_id = val.id
|
|
624
|
+ this.recordInfo.recordData[i].dealer = val.dealer
|
612
|
625
|
}
|
613
|
626
|
}
|
614
|
|
- console.log("hhhhh232323232",val.xt_warehouse_info)
|
615
|
|
- if(val.xt_warehouse_info.length > 0){
|
616
|
|
- console.log("hhhhhhhhhh")
|
617
|
|
- for(let j=0;j<val.xt_warehouse_info.length;j++){
|
618
|
|
- this.numberList.push(val.xt_warehouse_info[j])
|
619
|
|
- }
|
620
|
|
- this.recordInfo.recordData[i].number = val.xt_warehouse_info[0].number
|
621
|
|
- }else{
|
622
|
|
- this.recordInfo.recordData[i].number = ""
|
623
|
|
- }
|
|
627
|
+ // if(val.xt_warehouse_info.length > 0){
|
|
628
|
+ // for(let j=0;j<val.xt_warehouse_info.length;j++){
|
|
629
|
+ // this.numberList.push(val.xt_warehouse_info[j])
|
|
630
|
+ // }
|
|
631
|
+ // this.recordInfo.recordData[i].number = val.xt_warehouse_info[0].number
|
|
632
|
+ // }else{
|
|
633
|
+ // this.recordInfo.recordData[i].number = ""
|
|
634
|
+ // }
|
624
|
635
|
},
|
625
|
636
|
getSingleOutOrderDetail(order_id){
|
626
|
637
|
const params = {
|
|
@@ -632,7 +643,7 @@
|
632
|
643
|
var dealerList = response.data.data.dealerList
|
633
|
644
|
this.dealerList = dealerList
|
634
|
645
|
var manufacturerList = response.data.data.manufacturerList
|
635
|
|
- console.log("hhhhhhhhh",manufacturerList)
|
|
646
|
+ // console.log("hhhhhhhhh",manufacturerList)
|
636
|
647
|
this.manufacturerList = manufacturerList
|
637
|
648
|
this.goodType = response.data.data.goodType
|
638
|
649
|
for (let i = 0; i < response.data.data.list.length; i++) {
|
|
@@ -642,7 +653,10 @@
|
642
|
653
|
response.data.data.list[i].good_name = response.data.data.list[i].good_name
|
643
|
654
|
response.data.data.list[i].name = response.data.data.list[i].specification_name + "/" + response.data.data.list[i].packing_unit
|
644
|
655
|
response.data.data.list[i].good_type_id = response.data.data.list[i].good_type_id
|
645
|
|
- this.numberList.push(response.data.data.list[i])
|
|
656
|
+ response.data.data.list[i].expiry_date = this.getTime(response.data.data.list[i].expiry_date,"{y}-{m}-{d}")
|
|
657
|
+ response.data.data.list[i].product_date = this.getTime(response.data.data.list[i].product_date,"{y}-{m}-{d}")
|
|
658
|
+ response.data.data.list[i].remark = response.data.data.list[i].remark
|
|
659
|
+ // this.numberList.push(response.data.data.list[i])
|
646
|
660
|
this.recordInfo.recordData.push(response.data.data.list[i])
|
647
|
661
|
}
|
648
|
662
|
|
|
@@ -664,6 +678,13 @@
|
664
|
678
|
this.propForm.goodUnit = this.$store.getters.good_unit
|
665
|
679
|
const order_id = this.$route.query.id
|
666
|
680
|
this.getSingleOutOrderDetail(order_id)
|
|
681
|
+ var is_sys = this.$route.query.is_sys
|
|
682
|
+ if(is_sys == 0){
|
|
683
|
+ this.stockShow = false
|
|
684
|
+ }
|
|
685
|
+ if(is_sys == 1){
|
|
686
|
+ this.stockShow = true
|
|
687
|
+ }
|
667
|
688
|
}
|
668
|
689
|
|
669
|
690
|
}
|