|
@@ -207,8 +207,8 @@
|
207
|
207
|
</div>
|
208
|
208
|
|
209
|
209
|
<div class="filter-container" style="margin-top: 10px">
|
210
|
|
- <!-- <el-button size="small" icon="el-icon-edit" @click="editRecord" v-if="warehousingOutInfo.info.is_sys != 1">编辑</el-button>
|
211
|
|
- <el-button size="small" icon="el-icon-delete" @click="deleteRecord" v-if="warehousingOutInfo.info.is_sys != 1">删除</el-button> -->
|
|
210
|
+ <el-button size="small" icon="el-icon-edit" @click="editRecord(warehousingOutInfo.info.id)" v-if="warehousingOutInfo.info.is_sys != 1">编辑</el-button>
|
|
211
|
+ <el-button size="small" icon="el-icon-delete" @click="deleteRecord" v-if="warehousingOutInfo.info.is_sys != 1">删除</el-button>
|
212
|
212
|
</div>
|
213
|
213
|
|
214
|
214
|
|
|
@@ -369,7 +369,148 @@
|
369
|
369
|
|
370
|
370
|
|
371
|
371
|
<!-- 编辑 -->
|
372
|
|
-
|
|
372
|
+ <el-dialog
|
|
373
|
+ title="编辑出库单"
|
|
374
|
+ :visible.sync="editDialogVisible"
|
|
375
|
+ width="80%">
|
|
376
|
+ <span>
|
|
377
|
+
|
|
378
|
+ <div style="margin-bottom:10px">
|
|
379
|
+ <label class="title"><span class="name">出库时间</span> : </label>
|
|
380
|
+ <el-date-picker size="small" v-model="warehouse_out_time" prefix-icon="el-icon-date" :editable="false"
|
|
381
|
+ style="width: 196px;" type="date" placeholder="选择日期时间" align="right" format="yyyy-MM-dd"
|
|
382
|
+ value-format="yyyy-MM-dd"></el-date-picker>
|
|
383
|
+ <label class="title" style="margin-left:10px;"><span class="name">经 销 商</span> : </label>
|
|
384
|
+ <el-select size="small" v-model="form.dealer" clearable placeholder="请选择经销商" @change="changeDealer">
|
|
385
|
+ <el-option
|
|
386
|
+ v-for="(option, index) in dealer"
|
|
387
|
+ :key="index"
|
|
388
|
+ :label="option.dealer_name"
|
|
389
|
+ :value="option.id">
|
|
390
|
+ </el-option>
|
|
391
|
+ </el-select>
|
|
392
|
+ <label class="title" style="margin-left:10px;"><span class="name">厂商</span> : </label>
|
|
393
|
+
|
|
394
|
+ <el-select size="small" v-model="form.manufacturer" clearable placeholder="请选择厂商" @change="changeManufacturer">
|
|
395
|
+ <el-option
|
|
396
|
+ v-for="(option, index) in manufacturer"
|
|
397
|
+ :key="index"
|
|
398
|
+ :label="option.manufacturer_name"
|
|
399
|
+ :value="option.id">
|
|
400
|
+ </el-option>
|
|
401
|
+ </el-select>
|
|
402
|
+ </div>
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+ <el-form :rules="tableRules" :model="recordInfo" ref="tableForm">
|
|
406
|
+ <el-table :data="recordInfo.recordData" :class="signAndWeighBoxPatients" style="width: 100%" border
|
|
407
|
+ max-height="450" :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)'}"
|
|
408
|
+ >
|
|
409
|
+
|
|
410
|
+ <el-table-column min-width="35" align="center">
|
|
411
|
+
|
|
412
|
+ <template slot="header" slot-scope="scope">
|
|
413
|
+ <span>耗材类型<span style="color: red">*</span></span>
|
|
414
|
+ </template>
|
|
415
|
+
|
|
416
|
+ <template slot-scope="scope">
|
|
417
|
+ <el-form-item style="padding-top: 15px">
|
|
418
|
+ <el-input placeholder="请输入商品类型" v-model="scope.row.good_type_id"
|
|
419
|
+ :value="typeName(scope.row.good_type_id)"
|
|
420
|
+ @focus="showDialog(scope.$index, scope.row)"></el-input>
|
|
421
|
+ </el-form-item>
|
|
422
|
+ </template>
|
|
423
|
+ </el-table-column>
|
|
424
|
+
|
|
425
|
+ <el-table-column min-width="35" align="center">
|
|
426
|
+ <template slot="header" slot-scope="scope">
|
|
427
|
+ <span>规格名称<span style="color: red">*</span></span>
|
|
428
|
+ </template>
|
|
429
|
+ <template slot-scope="scope">
|
|
430
|
+
|
|
431
|
+ <el-form-item style="padding-top: 15px">
|
|
432
|
+ <el-input placeholder="请输入规格名称" v-model="scope.row.good_id"
|
|
433
|
+ :value="specificationName(scope.row.good_id)"
|
|
434
|
+ @focus="showDialog(scope.$index, scope.row)"></el-input>
|
|
435
|
+ </el-form-item>
|
|
436
|
+
|
|
437
|
+ </template>
|
|
438
|
+ </el-table-column>
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+ <el-table-column min-width="23" align="center">
|
|
442
|
+ <template slot="header" slot-scope="scope">
|
|
443
|
+ <span>单价<span style="color: red">*</span></span>
|
|
444
|
+ </template>
|
|
445
|
+ <template slot-scope="scope">
|
|
446
|
+ <el-form-item :prop="'recordData.' + scope.$index + '.price'" :rules='tableRules.price'
|
|
447
|
+ style="padding-top: 17px">
|
|
448
|
+ <el-input type="number" v-model="scope.row.price"></el-input>
|
|
449
|
+ </el-form-item>
|
|
450
|
+ </template>
|
|
451
|
+ </el-table-column>
|
|
452
|
+
|
|
453
|
+ <el-table-column min-width="23" align="center">
|
|
454
|
+ <template slot="header" slot-scope="scope">
|
|
455
|
+ <span>出库数量<span style="color: red">*</span></span>
|
|
456
|
+ </template>
|
|
457
|
+ <template slot-scope="scope">
|
|
458
|
+ <el-form-item :prop="'recordData.' + scope.$index + '.count'" :rules='tableRules.count'
|
|
459
|
+ style="padding-top: 17px">
|
|
460
|
+ <el-input type="number" v-model="scope.row.count"></el-input>
|
|
461
|
+ </el-form-item>
|
|
462
|
+ </template>
|
|
463
|
+ </el-table-column>
|
|
464
|
+
|
|
465
|
+ <el-table-column label="总价" min-width="20" align="center">
|
|
466
|
+ <template slot-scope="scope">
|
|
467
|
+ {{calculate(scope.row.price*scope.row.count)}}
|
|
468
|
+ </template>
|
|
469
|
+ </el-table-column>
|
|
470
|
+ <el-table-column label="备注" min-width="20" align="center">
|
|
471
|
+ <template slot-scope="scope">
|
|
472
|
+ <el-input v-model="scope.row.remark"></el-input>
|
|
473
|
+ </template>
|
|
474
|
+ </el-table-column>
|
|
475
|
+ <el-table-column label="操作" align="center" min-width="30">
|
|
476
|
+ <template slot-scope="scope">
|
|
477
|
+ <el-tooltip class="item" effect="dark" content="新增" placement="top">
|
|
478
|
+ <el-button
|
|
479
|
+ size="mini"
|
|
480
|
+ type="primary"
|
|
481
|
+ icon="el-icon-circle-plus-outline"
|
|
482
|
+ @click="handleEditOne(scope.$index, scope.row)">
|
|
483
|
+ </el-button>
|
|
484
|
+ </el-tooltip>
|
|
485
|
+ <el-tooltip class="item" effect="dark" content="删除" placement="top">
|
|
486
|
+ <el-button
|
|
487
|
+ size="mini"
|
|
488
|
+ type="danger"
|
|
489
|
+ icon="el-icon-delete"
|
|
490
|
+ @click="handleDeleteOne(scope.$index, scope.row)">
|
|
491
|
+ </el-button>
|
|
492
|
+ </el-tooltip>
|
|
493
|
+ </template>
|
|
494
|
+ </el-table-column>
|
|
495
|
+ </el-table>
|
|
496
|
+ </el-form>
|
|
497
|
+ </span>
|
|
498
|
+ <span slot="footer" class="dialog-footer">
|
|
499
|
+ <el-button @click="editDialogVisible = false">取 消</el-button>
|
|
500
|
+ <el-button type="primary" @click="submit">确 定</el-button>
|
|
501
|
+ </span>
|
|
502
|
+ </el-dialog>
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+ <stock-in-dialog
|
|
506
|
+ ref="dialog"
|
|
507
|
+ :propForm="propForm"
|
|
508
|
+ :visibility="isVisibility"
|
|
509
|
+ v-on:dialog-comfirm="comfirm"
|
|
510
|
+ v-on:dialog-cancle="cancle"
|
|
511
|
+ >
|
|
512
|
+ </stock-in-dialog>
|
|
513
|
+
|
373
|
514
|
|
374
|
515
|
</div>
|
375
|
516
|
</template>
|
|
@@ -384,13 +525,17 @@ import {
|
384
|
525
|
getWarehouseOutList,
|
385
|
526
|
getWarehouseOutInfo,
|
386
|
527
|
getWarehouseOutUser,
|
387
|
|
- GetOutStockTotalCount
|
|
528
|
+ GetOutStockTotalCount,
|
|
529
|
+ deleteWarehouseOutInfo,
|
|
530
|
+ GetAllGoodInfoByID,
|
|
531
|
+ editWarehouseoutInfo,
|
388
|
532
|
} from "@/api/stock";
|
389
|
533
|
import BreadCrumb from "../components/bread-crumb";
|
|
534
|
+import StockInDialog from './Dialog/stockInDialog'
|
390
|
535
|
|
391
|
536
|
export default {
|
392
|
537
|
name: "salesReturnOrder",
|
393
|
|
- components: { BreadCrumb },
|
|
538
|
+ components: { StockInDialog, BreadCrumb},
|
394
|
539
|
created() {
|
395
|
540
|
var nowDate = new Date();
|
396
|
541
|
var nowYear = nowDate.getFullYear();
|
|
@@ -416,8 +561,16 @@ export default {
|
416
|
561
|
this.GetWarehouseOut();
|
417
|
562
|
|
418
|
563
|
this.fetchAllAdminUsers();
|
|
564
|
+
|
419
|
565
|
},
|
420
|
566
|
data() {
|
|
567
|
+ var checkGoodId = (rule, value, callback) => {
|
|
568
|
+ setTimeout(() => {
|
|
569
|
+ if (value == "" || value == 0) {
|
|
570
|
+ return callback(new Error("规格名称不能为空"));
|
|
571
|
+ }
|
|
572
|
+ }, 2000);
|
|
573
|
+ };
|
421
|
574
|
return {
|
422
|
575
|
searchKey: "",
|
423
|
576
|
crumbs: [
|
|
@@ -453,7 +606,39 @@ export default {
|
453
|
606
|
userList:[],
|
454
|
607
|
type_name:'',
|
455
|
608
|
specification_name:"",
|
456
|
|
- stockCount:[]
|
|
609
|
+ stockCount:[],
|
|
610
|
+ editDialogVisible:false,
|
|
611
|
+ warehouse_out_time: '',
|
|
612
|
+ form: {
|
|
613
|
+ manufacturer: 0,
|
|
614
|
+ dealer: 0
|
|
615
|
+ },
|
|
616
|
+ warehouseInfoList: [],
|
|
617
|
+ tableRules: {
|
|
618
|
+ price: [{ required: true, message: "单价不能为空", trigger: "blur" }],
|
|
619
|
+ warehousing_count: [
|
|
620
|
+ { required: true, message: "数量不能为空", trigge: "blur" }
|
|
621
|
+ ],
|
|
622
|
+
|
|
623
|
+ good_id: [{ validator: checkGoodId, trigger: "blur" }]
|
|
624
|
+ },
|
|
625
|
+
|
|
626
|
+ recordInfo: {
|
|
627
|
+ recordData: [],
|
|
628
|
+ stock_in_code: "",
|
|
629
|
+ current_index: ""
|
|
630
|
+ },
|
|
631
|
+ propForm: {
|
|
632
|
+ goods:[],
|
|
633
|
+ goodType: [],
|
|
634
|
+ goodInfo: [],
|
|
635
|
+ goodUnit: [],
|
|
636
|
+ title: '入库',
|
|
637
|
+ manufacturer: 0,
|
|
638
|
+ dealer: 0
|
|
639
|
+ },
|
|
640
|
+ isVisibility: false,
|
|
641
|
+ good_type_id:""
|
457
|
642
|
};
|
458
|
643
|
},
|
459
|
644
|
methods: {
|
|
@@ -593,6 +778,8 @@ export default {
|
593
|
778
|
this.dealer = response.data.data.dealer;
|
594
|
779
|
this.goodInfo = response.data.data.goodInfo
|
595
|
780
|
this.goodType = response.data.data.goodType
|
|
781
|
+ this.manufacturer.splice(0, 0, { id: 0, manufacturer_name: "全部" });
|
|
782
|
+ this.dealer.splice(0, 0, { id: 0, dealer_name: "全部" });
|
596
|
783
|
}
|
597
|
784
|
});
|
598
|
785
|
},
|
|
@@ -727,6 +914,7 @@ export default {
|
727
|
914
|
const params = {
|
728
|
915
|
'id': id
|
729
|
916
|
}
|
|
917
|
+ console.log("#3333333",id)
|
730
|
918
|
getWarehouseOutInfo(params).then(response => {
|
731
|
919
|
if (response.data.state == 0) {
|
732
|
920
|
|
|
@@ -738,6 +926,8 @@ export default {
|
738
|
926
|
}
|
739
|
927
|
|
740
|
928
|
this.warehousingOutInfo.info = response.data.data.info
|
|
929
|
+
|
|
930
|
+ console.log("出库222222222",this.warehousingOutInfo)
|
741
|
931
|
// this.handleSpanTempArr()
|
742
|
932
|
}
|
743
|
933
|
})
|
|
@@ -817,11 +1007,38 @@ export default {
|
817
|
1007
|
})
|
818
|
1008
|
},
|
819
|
1009
|
|
820
|
|
- editRecord(){
|
821
|
1010
|
|
822
|
|
- },
|
823
|
|
- deleteRecord(){
|
|
1011
|
+ deleteRecord: function() {
|
|
1012
|
+ const ids = []
|
|
1013
|
+ ids.push(this.warehousingOutInfo.info.id)
|
|
1014
|
+ const idStr = ids.join(',')
|
824
|
1015
|
|
|
1016
|
+ const params = {
|
|
1017
|
+ ids: idStr
|
|
1018
|
+ }
|
|
1019
|
+
|
|
1020
|
+ this.$confirm('确认删除出库单?', '删除出库单记录', {
|
|
1021
|
+ confirmButtonText: '确定',
|
|
1022
|
+ cancelButtonText: '取消',
|
|
1023
|
+ type: 'warning'
|
|
1024
|
+ }).then(() => {
|
|
1025
|
+ deleteWarehouseOut(params).then(response => {
|
|
1026
|
+ if (response.data.state == 0) {
|
|
1027
|
+ this.$message.error(response.data.msg)
|
|
1028
|
+ return false
|
|
1029
|
+ } else {
|
|
1030
|
+ this.$notify({
|
|
1031
|
+ title: '成功',
|
|
1032
|
+ message: '删除成功',
|
|
1033
|
+ type: 'success',
|
|
1034
|
+ duration: 2000
|
|
1035
|
+ })
|
|
1036
|
+
|
|
1037
|
+ this.$router.back(-1)
|
|
1038
|
+ }
|
|
1039
|
+ })
|
|
1040
|
+ }).catch(() => {
|
|
1041
|
+ })
|
825
|
1042
|
},
|
826
|
1043
|
|
827
|
1044
|
GetTotalCount(time){
|
|
@@ -851,7 +1068,259 @@ export default {
|
851
|
1068
|
unique(arr) {
|
852
|
1069
|
const res = new Map();
|
853
|
1070
|
return arr.filter((arr) => !res.has(arr.patient_id) && res.set(arr.patient_id, 1));
|
854
|
|
- }
|
|
1071
|
+ },
|
|
1072
|
+
|
|
1073
|
+ editRecord(id){
|
|
1074
|
+ this.warehouseOut= []
|
|
1075
|
+ this.recordInfo.recordData = []
|
|
1076
|
+ this.GetConfigInfo()
|
|
1077
|
+ this.GetOrderDetailTwo(id)
|
|
1078
|
+ this.good_type_id = id
|
|
1079
|
+ },
|
|
1080
|
+
|
|
1081
|
+ GetOrderDetailTwo(order_id) {
|
|
1082
|
+ const params = {
|
|
1083
|
+ 'id': order_id
|
|
1084
|
+ }
|
|
1085
|
+ console.log("触发了222222",order_id)
|
|
1086
|
+ getWarehouseOutInfo(params).then(response => {
|
|
1087
|
+ if (response.data.state == 0) {
|
|
1088
|
+ this.$message.error(response.data.msg)
|
|
1089
|
+ return false
|
|
1090
|
+ } else {
|
|
1091
|
+
|
|
1092
|
+ for (let i = 0; i < response.data.data.list.length; i++) {
|
|
1093
|
+ response.data.data.list[i].price = response.data.data.list[i].price.toString()
|
|
1094
|
+ response.data.data.list[i].count = response.data.data.list[i].count.toString()
|
|
1095
|
+ this.recordInfo.recordData.push(response.data.data.list[i])
|
|
1096
|
+ }
|
|
1097
|
+ this.warehouseOut = response.data.data.info
|
|
1098
|
+ this.warehouse_out_time = this.getTime(this.warehouseOut.warehouse_out_time, '{y}-{m}-{d}')
|
|
1099
|
+ this.form.manufacturer = this.warehouseOut.manufacturer
|
|
1100
|
+ this.form.dealer = this.warehouseOut.dealer
|
|
1101
|
+ this.editDialogVisible = true
|
|
1102
|
+ }
|
|
1103
|
+
|
|
1104
|
+ if (this.recordInfo.recordData.length == 0) {
|
|
1105
|
+ const tempObj = {}
|
|
1106
|
+ tempObj['id'] = 0
|
|
1107
|
+ tempObj['good_type_id'] = 0
|
|
1108
|
+ tempObj['good_id'] = 0
|
|
1109
|
+ tempObj['count'] = ''
|
|
1110
|
+ tempObj['price'] = ''
|
|
1111
|
+ tempObj['remark'] = ''
|
|
1112
|
+ this.recordInfo.recordData.push(tempObj)
|
|
1113
|
+ this.editDialogVisible = true
|
|
1114
|
+ }
|
|
1115
|
+ })
|
|
1116
|
+ },
|
|
1117
|
+ getTime(val, temp) {
|
|
1118
|
+ if (val != 0) {
|
|
1119
|
+ return uParseTime(val, temp)
|
|
1120
|
+ } else {
|
|
1121
|
+ return ''
|
|
1122
|
+ }
|
|
1123
|
+ },
|
|
1124
|
+ changeManufacturer(val) {
|
|
1125
|
+ this.propForm.manufacturer = val
|
|
1126
|
+ },
|
|
1127
|
+ changeDealer(val) {
|
|
1128
|
+ this.propForm.dealer = val
|
|
1129
|
+ },
|
|
1130
|
+ typeName: function(good_type_id) {
|
|
1131
|
+ let name = "";
|
|
1132
|
+ for (let i = 0; i < this.goodType.length; i++) {
|
|
1133
|
+ if (this.goodType[i].id == good_type_id) {
|
|
1134
|
+ name = this.goodType[i].type_name;
|
|
1135
|
+ }
|
|
1136
|
+ }
|
|
1137
|
+ return name;
|
|
1138
|
+ },
|
|
1139
|
+ specificationName: function(good_info_id) {
|
|
1140
|
+ let name = "";
|
|
1141
|
+ for (let i = 0; i < this.goodInfo.length; i++) {
|
|
1142
|
+ if (this.goodInfo[i].id == good_info_id) {
|
|
1143
|
+ name = this.goodInfo[i].specification_name;
|
|
1144
|
+ }
|
|
1145
|
+ }
|
|
1146
|
+ return name;
|
|
1147
|
+ },
|
|
1148
|
+ handleEditOne(){
|
|
1149
|
+ const tempObj = {}
|
|
1150
|
+ tempObj['id'] = 0
|
|
1151
|
+ tempObj['good_type_id'] = 0
|
|
1152
|
+ tempObj['good_id'] = 0
|
|
1153
|
+ tempObj['count'] = ''
|
|
1154
|
+ tempObj['price'] = ''
|
|
1155
|
+ tempObj['remark'] = ''
|
|
1156
|
+ this.recordInfo.recordData.push(tempObj)
|
|
1157
|
+ },
|
|
1158
|
+ handleDeleteOne: function(index, row) {
|
|
1159
|
+ if (row.id == 0) {
|
|
1160
|
+ this.recordInfo.recordData.splice(index, 1)
|
|
1161
|
+ } else {
|
|
1162
|
+ const params = {
|
|
1163
|
+ id: row.id
|
|
1164
|
+ }
|
|
1165
|
+ this.$confirm('确认删除该出库耗材信息记录?', '删除出库耗材信息记录', {
|
|
1166
|
+ confirmButtonText: '确定',
|
|
1167
|
+ cancelButtonText: '取消',
|
|
1168
|
+ type: 'warning'
|
|
1169
|
+ }).then(() => {
|
|
1170
|
+ deleteWarehouseOutInfo(params).then(response => {
|
|
1171
|
+ if (response.data.state == 0) {
|
|
1172
|
+ this.$message.error(response.data.msg)
|
|
1173
|
+ return false
|
|
1174
|
+ } else {
|
|
1175
|
+ this.$message.success('删除成功')
|
|
1176
|
+
|
|
1177
|
+ this.recordInfo.recordData.splice(index, 1)
|
|
1178
|
+ }
|
|
1179
|
+ })
|
|
1180
|
+ }).catch(() => {
|
|
1181
|
+ })
|
|
1182
|
+ }
|
|
1183
|
+ },
|
|
1184
|
+ showDialog(index, row) {
|
|
1185
|
+ this.currentIndex = index;
|
|
1186
|
+ const loading = this.$loading({
|
|
1187
|
+ lock: true,
|
|
1188
|
+ text: "Loading",
|
|
1189
|
+ spinner: "el-icon-loading",
|
|
1190
|
+ background: "rgba(0, 0, 0, 0.7)"
|
|
1191
|
+ });
|
|
1192
|
+
|
|
1193
|
+ const params = {
|
|
1194
|
+ manufacturer_id: this.form.manufacturer,
|
|
1195
|
+ dealer_id: this.form.dealer
|
|
1196
|
+ };
|
|
1197
|
+ this.propForm.goods = []
|
|
1198
|
+
|
|
1199
|
+ GetAllGoodInfoByID(params).then(response => {
|
|
1200
|
+ if (response.data.state == 0) {
|
|
1201
|
+ this.$message.error(response.data.msg);
|
|
1202
|
+ return false;
|
|
1203
|
+ } else {
|
|
1204
|
+ if (response.data.data.goodInfo.length <= 0) {
|
|
1205
|
+ this.$message.error("该厂商或经销商没有物品信息");
|
|
1206
|
+ return;
|
|
1207
|
+ }
|
|
1208
|
+ this.$refs.dialog.show();
|
|
1209
|
+ for (let i = 0; i < response.data.data.goodInfo.length; i++) {
|
|
1210
|
+ this.propForm.goodType.push(
|
|
1211
|
+ response.data.data.goodInfo[i].type
|
|
1212
|
+ );
|
|
1213
|
+ }
|
|
1214
|
+ const obj = {};
|
|
1215
|
+ this.propForm.goodType = this.propForm.goodType.reduce(
|
|
1216
|
+ (cur, next) => {
|
|
1217
|
+ obj[next.id] ? "" : (obj[next.id] = true && cur.push(next));
|
|
1218
|
+ return cur;
|
|
1219
|
+ },
|
|
1220
|
+ []
|
|
1221
|
+ ); // 设置cur默认类型为数组,并且初始值为空的数组
|
|
1222
|
+ }
|
|
1223
|
+
|
|
1224
|
+ for (let i = 0; i < this.propForm.goodType.length; i++) {
|
|
1225
|
+ let goodInfo = [];
|
|
1226
|
+ let goodObj = {};
|
|
1227
|
+
|
|
1228
|
+ for (let a = 0; a < response.data.data.goodInfo.length; a++) {
|
|
1229
|
+ var respObj = response.data.data.goodInfo[a];
|
|
1230
|
+ respObj["isSelected"] = false;
|
|
1231
|
+ if (respObj.type.id == this.propForm.goodType[i].id) {
|
|
1232
|
+ goodInfo.push(respObj);
|
|
1233
|
+ }
|
|
1234
|
+ }
|
|
1235
|
+ const obj = {};
|
|
1236
|
+ goodInfo = goodInfo.reduce((cur, next) => {
|
|
1237
|
+ obj[next.id] ? "" : (obj[next.id] = true && cur.push(next));
|
|
1238
|
+ return cur;
|
|
1239
|
+ }, []); // 设置cur默认类型为数组,并且初始值为空的数组
|
|
1240
|
+
|
|
1241
|
+ this.$set(goodObj, this.propForm.goodType[i].id, goodInfo);
|
|
1242
|
+ this.propForm.goods.push(goodObj);
|
|
1243
|
+ }
|
|
1244
|
+ loading.close();
|
|
1245
|
+ });
|
|
1246
|
+ },
|
|
1247
|
+
|
|
1248
|
+ comfirm: function(val) {
|
|
1249
|
+ this.$refs.dialog.hide();
|
|
1250
|
+ this.propForm.goodType = [];
|
|
1251
|
+ this.propForm.goods = [];
|
|
1252
|
+
|
|
1253
|
+ if (val.selectedGoodInfo.length > 0) {
|
|
1254
|
+ for (let i = val.selectedGoodInfo.length - 1; ; i--) {
|
|
1255
|
+ if (i == 0) {
|
|
1256
|
+ this.recordInfo.recordData[this.currentIndex].good_type_id =
|
|
1257
|
+ val.selectedGoodInfo[i].good_type_id;
|
|
1258
|
+ this.recordInfo.recordData[this.currentIndex].good_id =
|
|
1259
|
+ val.selectedGoodInfo[i].id;
|
|
1260
|
+ this.recordInfo.recordData[
|
|
1261
|
+ this.currentIndex
|
|
1262
|
+ ].price = val.selectedGoodInfo[i].buy_price.toString();
|
|
1263
|
+ } else {
|
|
1264
|
+ const tempForm = {};
|
|
1265
|
+ tempForm["id"] = 0;
|
|
1266
|
+ tempForm["good_type_id"] = val.selectedGoodInfo[i].good_type_id;
|
|
1267
|
+ tempForm["good_id"] = val.selectedGoodInfo[i].id;
|
|
1268
|
+ tempForm["count"] = "";
|
|
1269
|
+ tempForm["price"] = val.selectedGoodInfo[i].buy_price.toString();
|
|
1270
|
+ tempForm["remark"] = "";
|
|
1271
|
+ this.recordInfo.recordData.splice(
|
|
1272
|
+ this.currentIndex + 1,
|
|
1273
|
+ 0,
|
|
1274
|
+ tempForm
|
|
1275
|
+ );
|
|
1276
|
+ }
|
|
1277
|
+ }
|
|
1278
|
+ }
|
|
1279
|
+ this.currentIndex = -1;
|
|
1280
|
+ },
|
|
1281
|
+ cancle: function() {
|
|
1282
|
+ this.$refs.dialog.hide()
|
|
1283
|
+ this.propForm.goods = [];
|
|
1284
|
+
|
|
1285
|
+ this.propForm.goodType = [];
|
|
1286
|
+ },
|
|
1287
|
+
|
|
1288
|
+ submit() {
|
|
1289
|
+ this.$refs['tableForm'].validate((valid) => {
|
|
1290
|
+ if (valid) {
|
|
1291
|
+ const array = this.recordInfo.recordData
|
|
1292
|
+ console.log("$arr3333333333",array)
|
|
1293
|
+ for (let i = 0; i < array.length; i++) {
|
|
1294
|
+ if (array[i].good_type_id == 0) {
|
|
1295
|
+ this.$message.error('商品类型不能为空')
|
|
1296
|
+ return
|
|
1297
|
+ }
|
|
1298
|
+ if (array[i].good_id == 0) {
|
|
1299
|
+ this.$message.error('规格名称不能为空')
|
|
1300
|
+ return
|
|
1301
|
+ }
|
|
1302
|
+ }
|
|
1303
|
+
|
|
1304
|
+ const params = {
|
|
1305
|
+ 'stockOut': this.recordInfo.recordData
|
|
1306
|
+ }
|
|
1307
|
+ editWarehouseoutInfo(params, this.warehouse_out_time,this.good_type_id, 1, this.form.manufacturer, this.form.dealer).then(response => {
|
|
1308
|
+ if (response.data.state == 0) {
|
|
1309
|
+ this.$message.error(response.data.msg)
|
|
1310
|
+ return false
|
|
1311
|
+ } else {
|
|
1312
|
+ this.$message.success('保存成功')
|
|
1313
|
+ this.editDialogVisible = false
|
|
1314
|
+ this.warehousingOutInfo.info = []
|
|
1315
|
+ this.warehousingOutInfo.warehousingOutData = []
|
|
1316
|
+ this.GetOrderDetailOne(this.good_type_id)
|
|
1317
|
+ }
|
|
1318
|
+ })
|
|
1319
|
+ } else {
|
|
1320
|
+ return false
|
|
1321
|
+ }
|
|
1322
|
+ })
|
|
1323
|
+ },
|
855
|
1324
|
}
|
856
|
1325
|
};
|
857
|
1326
|
</script>
|