index.vue
38.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
<template>
<div class="app-container">
<el-tabs v-model="activeName" type="card">
<el-tab-pane label="主表" name="first">
<el-form :model="queryHeaderParams" ref="queryHeaderForm" :inline="true" v-show="showHeaderSearch">
<el-form-item label="出库单号" prop="code">
<el-input
v-model="queryHeaderParams.code"
clearable
size="small"
style="width: 240px"
@keyup.enter.native="headerQuery"
/>
</el-form-item>
<el-form-item label="出库类型" prop="shipmentType">
<el-select v-model="queryHeaderParams.shipmentType" placeholder="所有" clearable size="small">
<el-option
v-for="attr in typeOptions"
:key="attr.id"
:value="attr.code"
:label="attr.name"
/>
</el-select>
</el-form-item>
<el-form-item label="上游订单号" prop="referCode">
<el-input
v-model="queryHeaderParams.referCode"
clearable
size="small"
style="width: 240px"
@keyup.enter.native="headerQuery"
/>
</el-form-item>
<el-form-item label="上游订单类型" prop="referCodeType">
<el-input
v-model="queryHeaderParams.referCodeType"
clearable
size="small"
style="width: 240px"
@keyup.enter.native="headerQuery"
/>
</el-form-item>
<!--<el-form-item label="客户编码" prop="customerCode">
<el-input
v-model="queryHeaderParams.customerCode"
clearable
size="small"
style="width: 240px"
@keyup.enter.native="headerQuery"
/>
</el-form-item>-->
<el-form-item label="客户编码:" prop="customerCode">
<el-select v-model="queryHeaderParams.customerCode" placeholder="所有" clearable size="small">
<el-option
v-for="attr in customerOptions"
:key="attr.id"
:value="attr.code"
:label="attr.code"/>
</el-select>
</el-form-item>
<el-form-item label="头状态" prop="firstStatus">
<el-select v-model="queryHeaderParams.firstStatus" placeholder="所有" clearable size="small">
<el-option
v-for="dict in firstOptions"
:key="dict.dictValue"
:label="dict.dictLabel"
:value="dict.dictValue"
/>
</el-select>
</el-form-item>
<el-form-item label="尾状态" prop="lastStatus">
<el-select v-model="queryHeaderParams.lastStatus" placeholder="所有" clearable size="small">
<el-option
v-for="dict in lastOptions"
:key="dict.dictValue"
:label="dict.dictLabel"
:value="dict.dictValue"
/>
</el-select>
</el-form-item>
<el-form-item label="创建时间">
<el-date-picker
v-model="dateRange"
size="small"
style="width: 240px"
value-format="yyyy-MM-dd"
type="daterange"
range-separator="-"
start-placeholder="开始日期"
end-placeholder="结束日期"
></el-date-picker>
</el-form-item>
<el-form-item>
<el-button type="cyan" icon="el-icon-search" size="small" @click="headerQuery">搜索</el-button>
<el-button icon="el-icon-refresh" size="small" @click="resetHeaderQuery">重置</el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="danger"
icon="el-icon-delete"
size="mini"
:disabled="headerMultiple"
@click="headerDelete"
v-hasPermi="['shipment:bill:remove']"
>删除</el-button>
</el-col>
<right-toolbar :showSearch.sync="showHeaderSearch" @queryTable="getHeaderList" :col-data="colData" @selectData="selectData"></right-toolbar>
</el-row>
<el-table v-loading="headerLoading" :data="HeaderList" @selection-change="headerSelectionChange" highlight-current-row ref="table" >
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="出库单id" align="center" prop="id" width="100" sortable v-if="colData[0].istrue"/>
<el-table-column label="出库单号" align="center" sortable prop="code" width="160" v-if="colData[1].istrue" :show-overflow-tooltip="true"/>
<el-table-column label="仓库" align="center" prop="warehouseCode" width="100" v-if="colData[2].istrue" :show-overflow-tooltip="true">
<template slot-scope="scope">
{{warehouseCodeFormat(scope.row, scope.column)}}
</template>
</el-table-column>
<el-table-column label="货主" align="center" prop="companyCode" width="200" v-if="colData[3].istrue">
<template slot-scope="scope">
{{companyCodeFormat(scope.row, scope.column)}}
</template>
</el-table-column>
<el-table-column label="上游订单号" align="center" sortable width="130" prop="referCode" v-if="colData[4].istrue" :show-overflow-tooltip="true" />
<el-table-column label="上游订单类型" align="center" prop="referCodeType" v-if="colData[5].istrue" width="130" />
<el-table-column label="上游订单内部号" align="center" prop="referId" width="120" v-if="colData[6].istrue" :show-overflow-tooltip="true" />
<el-table-column label="上游订单行id" align="center" prop="referLineId" width="100" v-if="colData[7].istrue" />
<el-table-column label="订单平台" align="center" prop="referPlatform" width="100" v-if="colData[8].istrue" :show-overflow-tooltip="true" />
<el-table-column label="类型" align="center" prop="shipmentType" width="130" v-if="colData[9].istrue">
<template slot-scope="scope">
{{shipmentTypeFormat(scope.row, scope.column)}}
</template>
</el-table-column>
<el-table-column label="客户编码" align="center" prop="customerCode" v-if="colData[10].istrue" :show-overflow-tooltip="true"/>
<el-table-column label="客户名称" align="center" prop="customerName" width="100" v-if="colData[11].istrue" :show-overflow-tooltip="true" />
<el-table-column label="优先级" align="center" prop="priority" v-if="colData[12].istrue" />
<el-table-column label="路线" align="center" sortable prop="route" v-if="colData[13].istrue" :show-overflow-tooltip="true" />
<el-table-column label="头状态" align="center" sortable prop="firstStatus" v-if="colData[14].istrue" width="90">
<template slot-scope="scope">
{{firstFormat(scope.row, scope.column)}}
</template>
</el-table-column>
<el-table-column label="尾状态" align="center" sortable prop="lastStatus" v-if="colData[15].istrue" width="90">
<template slot-scope="scope">
{{lastFormat(scope.row, scope.column)}}
</template>
</el-table-column>
<el-table-column label="要求到货时间" align="center" prop="requestedDeliveryDate" sortable width="160" v-if="colData[16].istrue">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.requestedDeliveryDate) }}</span>
</template>
</el-table-column>
<el-table-column label="计划发车日期" align="center" prop="scheduledShipDate" sortable width="160" v-if="colData[17].istrue">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.scheduledShipDate) }}</span>
</template>
</el-table-column>
<el-table-column label="实际发车时间" align="center" prop="actualShipDateTime" sortable width="160" v-if="colData[18].istrue">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.actualShipDateTime) }}</span>
</template>
</el-table-column>
<el-table-column label="实际到货时间" align="center" prop="actualDeliveryDate" sortable width="160" v-if="colData[19].istrue">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.actualDeliveryDate) }}</span>
</template>
</el-table-column>
<el-table-column label="配送要求" align="center" prop="deliveryNote" v-if="colData[20].istrue" :show-overflow-tooltip="true" />
<el-table-column label="失败原因" align="center" prop="rejectionNote" v-if="colData[21].istrue" :show-overflow-tooltip="true" />
<el-table-column label="波次号" align="center" prop="waveId" v-if="colData[22].istrue" :show-overflow-tooltip="true"/>
<el-table-column label="发货月台" align="center" prop="shipDock" v-if="colData[23].istrue" :show-overflow-tooltip="true" />
<el-table-column label="分配完成" align="center" prop="allocateComplete" v-if="colData[24].istrue" />
<el-table-column label="总重量" align="center" prop="totalWeight" v-if="colData[25].istrue" />
<el-table-column label="总数量" align="center" prop="totalQty" v-if="colData[26].istrue" />
<el-table-column label="总体积" align="center" prop="totalVolume" v-if="colData[27].istrue" />
<el-table-column label="总行数" align="center" prop="totalLines" v-if="colData[28].istrue" />
<el-table-column label="处理类型" align="center" prop="processType" v-if="colData[29].istrue" :show-overflow-tooltip="true" />
<el-table-column label="上次波次号" align="center" prop="lastWaveId" width="100" v-if="colData[30].istrue" />
<el-table-column label="特征值" align="center" prop="signValue" v-if="colData[31].istrue" :show-overflow-tooltip="true" />
<el-table-column label="承运人" align="center" prop="carrierCode" v-if="colData[32].istrue" :show-overflow-tooltip="true" />
<el-table-column label="承运人服务商" align="center" prop="carrierService" width="100" v-if="colData[33].istrue" :show-overflow-tooltip="true" />
<el-table-column label="订单备注" align="center" prop="shipmentNote" v-if="colData[34].istrue" :show-overflow-tooltip="true" />
<el-table-column label="承运商编码" align="center" prop="carrierServer" width="100" v-if="colData[35].istrue" />
<el-table-column label="承运商名称" align="center" prop="carrierServerName" width="100" v-if="colData[36].istrue" :show-overflow-tooltip="true" />
<el-table-column label="车牌号" align="center" prop="plateNumber" v-if="colData[37].istrue" />
<el-table-column label="车型" align="center" prop="carModel" v-if="colData[38].istrue" />
<el-table-column label="司机名称" align="center" prop="driverName" v-if="colData[39].istrue" :show-overflow-tooltip="true" />
<el-table-column label="司机联系方式" align="center" prop="driverTel" width="110" v-if="colData[40].istrue" />
<el-table-column label="创建时间" align="center" prop="created" v-if="colData[41].istrue" sortable width="160">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.created) }}</span>
</template>
</el-table-column>
<el-table-column label="创建用户" align="center" prop="createdBy" v-if="colData[42].istrue" :show-overflow-tooltip="true"/>
<el-table-column label="最后修改时间" align="center" prop="lastUpdated" sortable width="160" v-if="colData[43].istrue">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.lastUpdated) }}</span>
</template>
</el-table-column>
<el-table-column label="更新用户" align="center" prop="lastUpdatedBy" :show-overflow-tooltip="true" v-if="colData[44].istrue" />
<el-table-column label="自定义字段1" align="center" prop="userDef1" width="100" v-if="colData[45].istrue" :show-overflow-tooltip="true" />
<el-table-column label="自定义字段2" align="center" prop="userDef2" width="100" v-if="colData[46].istrue" :show-overflow-tooltip="true" />
<el-table-column label="自定义字段3" align="center" prop="userDef3" width="100" v-if="colData[47].istrue" :show-overflow-tooltip="true" />
<el-table-column fixed="right" label="操作" align="center" class-name="small-padding fixed-width" min-width="150" v-if="colData[48].istrue">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-printer"
@click="headerPrint(scope.row)"
v-hasPermi="['shipment:bill:report']"
>打印</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-my-detail"
@click="handleDetail(scope.row)"
v-hasPermi="['shipment:bill:open']"
>明细</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="headerDelete(scope.row)"
v-hasPermi="['shipment:bill:remove']"
>删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="headerTotal > 0"
:total="headerTotal"
:page.sync="queryHeaderParams.pageNum"
:limit.sync="queryHeaderParams.pageSize"
@pagination="getHeaderList"
/>
</el-tab-pane>
<el-tab-pane label="明细" name="second" v-if="queryDetailParams.id !== undefined">
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="danger"
icon="el-icon-delete"
size="mini"
:disabled="detailMultiple"
@click="detailDelete"
v-hasPermi="['shipment:bill:remove']"
>删除</el-button>
</el-col>
<right-toolbar @queryTable="getDetailList" :col-data="colDataDetail" @selectData="selectDataDetail" :no-search="noSearch"></right-toolbar>
</el-row>
<el-table v-loading="detailLoading" :data="DetailList" @selection-change="detailSelectionChange" ref="table" >
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="明细id" align="center" prop="id" v-if="colDataDetail[0].istrue"/>
<el-table-column label="出库单内部号" align="center" prop="shipmentId" width="120" v-if="colDataDetail[1].istrue" />
<el-table-column label="仓库" align="center" prop="warehouseCode" width="85" v-if="colDataDetail[2].istrue">
<template slot-scope="scope">
{{warehouseCodeFormat(scope.row, scope.column)}}
</template>
</el-table-column>
<el-table-column label="货主" align="center" prop="companyCode" width="200" v-if="colDataDetail[3].istrue" :show-overflow-tooltip="true">
<template slot-scope="scope">
{{companyCodeFormat(scope.row, scope.column)}}
</template>
</el-table-column>
<el-table-column label="出库单号" align="center" prop="shipmentCode" width="150" v-if="colDataDetail[4].istrue" :show-overflow-tooltip="true" />
<el-table-column label="上游订单号" align="center" prop="referCode" width="120" v-if="colDataDetail[5].istrue" :show-overflow-tooltip="true" />
<el-table-column label="上游订单内部号" align="center" prop="referId" width="120" v-if="colDataDetail[6].istrue" :show-overflow-tooltip="true" />
<el-table-column label="上游订单行号" align="center" prop="referLineNum" width="120" v-if="colDataDetail[7].istrue" :show-overflow-tooltip="true" />
<el-table-column label="物料编码" align="center" prop="materialCode" width="115px" v-if="colDataDetail[8].istrue" :show-overflow-tooltip="true"/>
<el-table-column label="物料名称" align="center" prop="materialName" width="200" v-if="colDataDetail[9].istrue" :show-overflow-tooltip="true" />
<el-table-column label="物料规格" align="center" prop="materialSpec" width="130" v-if="colDataDetail[10].istrue" :show-overflow-tooltip="true" />
<el-table-column label="物料单位" align="center" prop="materialUnit" v-if="colDataDetail[11].istrue" />
<el-table-column label="发货数量" align="center" prop="shipQty" v-if="colDataDetail[12].istrue" />
<el-table-column label="已出数量" align="center" prop="requestQty" v-if="colDataDetail[13].istrue" />
<el-table-column label="库存数量" align="center" prop="inventoryQty" v-if="colDataDetail[14].istrue" />
<el-table-column label="分配规则" align="center" prop="allocationRule" v-if="colDataDetail[15].istrue" :show-overflow-tooltip="true" />
<el-table-column label="补货规则" align="center" prop="replenishmentRule" v-if="colDataDetail[16].istrue" :show-overflow-tooltip="true" />
<el-table-column label="拣货规则" align="center" prop="pickingRule" v-if="colDataDetail[17].istrue" :show-overflow-tooltip="true" />
<el-table-column label="拣货货位" align="center" prop="pickLocs" v-if="colDataDetail[18].istrue" :show-overflow-tooltip="true" />
<el-table-column label="属性1" align="center" prop="attribute1" v-if="colDataDetail[19].istrue" :show-overflow-tooltip="true" />
<el-table-column label="属性2" align="center" prop="attribute2" v-if="colDataDetail[20].istrue" :show-overflow-tooltip="true" />
<el-table-column label="属性3" align="center" prop="attribute3" v-if="colDataDetail[21].istrue" :show-overflow-tooltip="true" />
<el-table-column label="属性4" align="center" prop="attribute4" v-if="colDataDetail[22].istrue" :show-overflow-tooltip="true" />
<el-table-column label="批次" align="center" prop="batch" v-if="colDataDetail[23].istrue" :show-overflow-tooltip="true"/>
<el-table-column label="批号" align="center" prop="lot" v-if="colDataDetail[24].istrue" :show-overflow-tooltip="true" />
<el-table-column label="项目号" align="center" prop="projectNo" v-if="colDataDetail[25].istrue" :show-overflow-tooltip="true" />
<el-table-column label="生产日期" align="center" prop="manufactureDate" sortable width="160" v-if="colDataDetail[26].istrue">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.manufactureDate) }}</span>
</template>
</el-table-column>
<el-table-column label="失效日期" align="center" prop="expirationDate" sortable width="160" v-if="colDataDetail[27].istrue">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.expirationDate) }}</span>
</template>
</el-table-column>
<el-table-column label="入库日期" align="center" prop="agingDate" sortable width="160" v-if="colDataDetail[28].istrue">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.agingDate) }}</span>
</template>
</el-table-column>
<el-table-column label="库存状态" align="center" prop="inventorySts" v-if="colDataDetail[29].istrue">
<template slot-scope="scope">
<el-button size="mini" type="primary" round>{{
kcstatusFormat(scope.row, scope.column)
}}</el-button>
</template>
</el-table-column>
<el-table-column label="月台货位" align="center" prop="dockLoc" v-if="colDataDetail[30].istrue" />
<el-table-column label="包装分类" align="center" prop="packingClass" v-if="colDataDetail[31].istrue" />
<el-table-column label="出库站台" align="center" prop="stationCode" v-if="colDataDetail[32].istrue" :show-overflow-tooltip="true"/>
<el-table-column label="明细状态" align="center" prop="status" v-if="colDataDetail[33].istrue">
<template slot-scope="scope">
<el-button size="mini" type="success" round>{{
mxstatusFormat(scope.row, scope.column)
}}</el-button>
</template>
</el-table-column>
<el-table-column label="波次ID" align="center" prop="waveId" v-if="colDataDetail[34].istrue" />
<el-table-column label="创建时间" align="center" prop="created" width="160" v-if="colDataDetail[35].istrue">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.created) }}</span>
</template>
</el-table-column>
<el-table-column label="创建用户" align="center" prop="createdBy" sortable width="120" v-if="colDataDetail[36].istrue" :show-overflow-tooltip="true" />
<el-table-column label="最后修改时间" align="center" prop="lastUpdated" sortable width="160" v-if="colDataDetail[37].istrue">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.lastUpdated) }}</span>
</template>
</el-table-column>
<el-table-column label="更新用户" align="center" prop="lastUpdatedBy" v-if="colDataDetail[38].istrue" :show-overflow-tooltip="true" />
<el-table-column label="数据版本" align="center" prop="version" v-if="colDataDetail[39].istrue" />
<el-table-column label="自定义字段1" align="center" prop="userDef1" width="120" v-if="colDataDetail[40].istrue" :show-overflow-tooltip="true" />
<el-table-column label="自定义字段2" align="center" prop="userDef2" width="120" v-if="colDataDetail[41].istrue" :show-overflow-tooltip="true" />
<el-table-column label="自定义字段3" align="center" prop="userDef3" width="120" v-if="colDataDetail[42].istrue" :show-overflow-tooltip="true" />
<el-table-column fixed="right" label="操作" align="center" class-name="small-padding fixed-width" v-if="colDataDetail[43].istrue">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="detailDelete(scope.row)"
v-hasPermi="['shipment:bill:remove']"
>删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="detailTotal > 0"
:total="detailTotal"
:page.sync="queryDetailParams.pageNum"
:limit.sync="queryDetailParams.pageSize"
@pagination="getDetailList"
/>
</el-tab-pane>
</el-tabs>
<headerprint-dialog :showheaderprint.sync="showHeaderprint" :printlist="HeaderprintList" :code="code" :customerCode="customerCode" />
</div>
</template>
<script>
import {listHeader,delHeader} from "@/api/shipment/shipmentHeaderHistory/header";
import {listDetail,delDetail,} from "@/api/shipment/shipmentHeaderHistory/detail";
import {getTypeSelect} from "@/api/config/shipment/shipmentType";
import {listCustomer} from "@/api/config/shipment/customer";
import {getCompaniesByToken} from "@/api/system/company";
import {getWarehouseByUserCode} from "@/api/system/warehouse";
import headerprintDialog from "./dialog/headerprintDialog";
export default {
name: "ShipmentHeaderHistory",
components: {
headerprintDialog,
},
data() {
return {
// 主表遮罩层
headerLoading: true,
// 主表选中数组
headerIds: [],
//弹出单独打印dialog(出库单打印)
showHeaderprint: false,
// 主表非单个禁用
headerSingle: true,
// 主表非多个禁用
headerMultiple: true,
// 主表显示搜索条件
showHeaderSearch: true,
// 主表总条数
headerTotal: 0,
//打印数据
HeaderprintList:[],
// 主表表格数据
HeaderList: [],
// 主表弹出层标题
headerTitle: "",
// 主表是否显示弹出层
headerOpen: false,
// 主表出库类型数据字典
typeOptions: [],
// 出库类型字典
shipmentTypeOptions:[],
// 货主数据
companyOptions:[],
// 仓库字典
warehouseOptions:[],
// 客户编码
customerOptions: [],
// 头状态、尾状态字典
firstOptions: [],
lastOptions: [],
// 创建时间
dateRange: [],
// 主表查询参数
queryHeaderParams: {
pageNum: 1,
pageSize: 10,
code: undefined,
shipmentType: undefined,
companyCode: undefined,
referCode: undefined,
referCodeType: undefined,
customerCode: undefined,
firstStatus: undefined,
lastStatus: undefined,
},
// 主表表单参数
headerForm: {},
// 主表表单校验
headerRules: {
},
// 明细遮罩层
detailLoading: true,
// 明细选中数组
detailIds: [],
// 明细非单个禁用
detailSingle: true,
// 明细非多个禁用
detailMultiple: true,
// 明细显示搜索条件
showDetailSearch: true,
// 明细总条数
detailTotal: 0,
// 明细表格数据
DetailList: [],
// 明细弹出层标题
detailTitle: "",
// 明细是否显示弹出层
detailOpen: false,
// 明细数据字典
materialOptions: [],
kcstatusOptions: [],
stationOptions: [],
ruleOptions: [],
pruleOptions: [],
mxstatusOptions: [],
// 明细查询参数
queryDetailParams: {
id:undefined,
pageNum: 1,
pageSize: 10,
shipmentCode:'',
},
// 明细表单参数
detailForm: {},
// 明细表单校验
detailRules: {},
activeName: "first",
noSearch:false,
colData: [
{ title: "出库单id", istrue: false },
{ title: "出库单号", istrue: true },
{ title: "仓库", istrue: false },
{ title: "货主", istrue: true },
{ title: "上游订单号", istrue: true },
{ title: "上游订单类型", istrue: false },
{ title: "上游订单内部号", istrue: false },
{ title: "上游订单行id", istrue: false },
{ title: "订单平台", istrue: false },
{ title: "类型", istrue: true },
{ title: "客户编码", istrue: true },
{ title: "客户名称", istrue: false },
{ title: "优先级", istrue: true },
{ title: "路线", istrue: true },
{ title: "头状态", istrue: true },
{ title: "尾状态", istrue: true },
{ title: "要求到货时间", istrue: false },
{ title: "计划发车日期", istrue: false },
{ title: "实际发车时间", istrue: false },
{ title: "实际到货时间", istrue: false },
{ title: "配送要求", istrue: false },
{ title: "失败原因", istrue: false },
{ title: "波次号", istrue: false },
{ title: "发货月台", istrue: false },
{ title: "分配完成", istrue: false },
{ title: "总重量", istrue: false },
{ title: "总数量", istrue: false },
{ title: "总体积", istrue: false },
{ title: "总行数", istrue: false },
{ title: "处理类型", istrue: false },
{ title: "上次波次号", istrue: false },
{ title: "特征值", istrue: false },
{ title: "承运人", istrue: false },
{ title: "承运人服务商", istrue: false },
{ title: "订单备注", istrue: false },
{ title: "承运商编码", istrue: false },
{ title: "承运商名称", istrue: false },
{ title: "车牌号", istrue: false },
{ title: "车型", istrue: false },
{ title: "司机名称", istrue: false },
{ title: "司机联系方式", istrue: false },
{ title: "创建时间", istrue: true },
{ title: "创建用户", istrue: true },
{ title: "最后修改时间", istrue: false },
{ title: "更新用户", istrue: false },
{ title: "自定义字段1", istrue: false },
{ title: "自定义字段2", istrue: false },
{ title: "自定义字段3", istrue: false },
{ title: "操作", istrue: true, disabled: true },
],
colDataDetail: [
{ title: "明细id", istrue: false },
{ title: "出库单内部号", istrue: false },
{ title: "仓库", istrue: false },
{ title: "货主", istrue: true },
{ title: "出库单号", istrue: false },
{ title: "上游订单号", istrue: false },
{ title: "上游订单内部号", istrue: false },
{ title: "上游订单行号", istrue: false },
{ title: "物料编码", istrue: true },
{ title: "物料名称", istrue: true },
{ title: "物料规格", istrue: true },
{ title: "物料单位", istrue: true },
{ title: "发货数量", istrue: true },
{ title: "已出数量", istrue: true },
{ title: "库存数量", istrue: true },
{ title: "分配规则", istrue: false },
{ title: "补货规则", istrue: false },
{ title: "拣货规则", istrue: false },
{ title: "拣货货位", istrue: false },
{ title: "属性1", istrue: false },
{ title: "属性2", istrue: false },
{ title: "属性3", istrue: false },
{ title: "属性4", istrue: false },
{ title: "批次", istrue: false },
{ title: "批号", istrue: false },
{ title: "项目号", istrue: true },
{ title: "生产日期", istrue: false },
{ title: "失效日期", istrue: false },
{ title: "入库日期", istrue: false },
{ title: "库存状态", istrue: true },
{ title: "月台货位", istrue: false },
{ title: "包装分类", istrue: false },
{ title: "出库站台", istrue: true },
{ title: "明细状态", istrue: true },
{ title: "波次ID", istrue: false },
{ title: "创建时间", istrue: true },
{ title: "创建用户", istrue: true },
{ title: "最后修改时间", istrue: true },
{ title: "更新用户", istrue: true },
{ title: "数据版本", istrue: false },
{ title: "自定义字段1", istrue: false },
{ title: "自定义字段2", istrue: false },
{ title: "自定义字段3", istrue: false },
{ title: "操作", istrue: true, disabled: true },
],
code:'',
customerCode:'',
};
},
created() {
this.getHeaderList();
//出库单类型select下拉接口获取
getTypeSelect().then(response => {
this.typeOptions = response.data;
});
//货主select下拉接口获取
getCompaniesByToken().then(response => {
this.companyOptions = response
});
//仓库select下拉接口获取
getWarehouseByUserCode(this.$store.getters.name).then((response) => {
this.warehouseOptions = response.data
});
//客户编码下拉接口获取
listCustomer().then(response => {
this.customerOptions = response.rows;
});
this.getDicts("shipmentHeaderStatus").then((response) => {
this.firstOptions = response.data;
});
this.getDicts("shipmentHeaderStatus").then(response => {
this.lastOptions = response.data;
});
// 明细库存状态字典下拉
this.getDicts("inventorySts").then(response => {
this.kcstatusOptions = response.data;
});
},
beforeUpdate() {
this.$nextTick(() => {
this.$refs["table"].doLayout();
});
},
methods: {
/** 查询主表列表 */
getHeaderList() {
this.headerLoading = true;
listHeader(
this.addDateRange(this.queryHeaderParams, this.dateRange)
)
.then((response) => {
this.HeaderList = response.rows;
this.headerTotal = response.total;
this.headerLoading = false;
});
},
//打印(dialog显示)
headerPrint(row) {
this.showHeaderprint=true;
this.queryDetailParams.id = row.id;
this.code = row.code;
this.customerCode = row.customerCode;
this.queryDetailParams.pageNum = undefined;
this.queryDetailParams.shipmentCode = row.code;
listDetail(this.queryDetailParams).then((response) => {
this.HeaderprintList = response.rows;
});
},
// 出库单类型字典翻译
shipmentTypeFormat(row, column) {
return this.selectCommonLabel(this.typeOptions, row.shipmentType);
},
// 货主字典翻译
companyCodeFormat(row, column) {
return this.selectCommonLabel(this.companyOptions, row.companyCode);
},
// 仓库字典翻译
warehouseCodeFormat(row, column) {
return this.selectCommonLabel(this.warehouseOptions, row.warehouseCode);
},
// 头状态字典翻译
firstFormat(row, column) {
return this.selectDictLabel(this.firstOptions, row.firstStatus);
},
// 尾状态字典翻译
lastFormat(row, column) {
return this.selectDictLabel(this.lastOptions, row.lastStatus);
},
// 明细字典翻译(库存状态、明细状态)
kcstatusFormat(row, column) {
return this.selectDictLabel(this.kcstatusOptions, row.inventorySts);
},
mxstatusFormat(row, column) {
return this.selectDictLabel(this.firstOptions, row.status);
},
// 主表取消按钮
headerCancel() {
this.headerOpen = false;
this.headerReset();
},
/** 主表搜索按钮操作 */
headerQuery() {
this.queryHeaderParams.pageNum = 1;
this.getHeaderList();
},
/** 主表重置按钮操作 */
resetHeaderQuery() {
this.dateRange = [];
this.resetForm("queryHeaderForm");
this.headerQuery();
},
// 主表多选框选中数据
headerSelectionChange(selection) {
this.headerIds = selection.map((item) => item.id);
// this.code = selection.map((item) => item.code);
this.headerSingle = selection.length != 1;
this.headerMultiple = !selection.length;
},
/** 主表删除按钮操作 */
headerDelete(row) {
const headerIds = row.id || this.headerIds;
this.$confirm(
row.id?'是否确认删除该条出库单历史信息吗?':'是否确认删除选中的' + this.headerIds.length + '条数据项项?',
"警告",
{
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
}
)
.then(function() {
return delHeader(headerIds);
})
.then(() => {
this.getHeaderList();
this.msgSuccess("删除成功");
})
.catch(function() {});
},
// 主表明细按钮操作
handleDetail(row) {
this.queryDetailParams.id = row.id; //选项卡切换隐藏
this.queryDetailParams.shipmentCode = row.code;
this.activeName = 'second'
this.detailLoading = true;
listDetail({shipmentCode:row.code}).then((response) => {
this.DetailList = response.rows;
this.detailTotal = response.total;
this.detailLoading = false;
});
},
/** 查询明细列表 */
getDetailList() {
this.detailLoading = true;
listDetail(this.queryDetailParams).then((response) => {
this.DetailList = response.rows;
this.DetailTotal = response.total;
this.detailLoading = false;
});
},
/** 明细搜索按钮操作 */
detailQuery() {
this.queryDetailParams.pageNum = 1;
this.getDetailList();
},
// 明细取消按钮
detailCancel() {
this.detailOpen = false;
this.detailReset();
},
// 明细多选框选中数据
detailSelectionChange(selection) {
this.detailIds = selection.map((item) => item.id);
this.materialCode = selection.map((item) => item.materialCode);
this.detailSingle = selection.length != 1;
this.detailMultiple = !selection.length;
},
/** 明细删除按钮操作 */
detailDelete(row) {
const detailIds = row.id || this.detailIds;
this.$confirm(
row.id?'是否确认删除该条出库单历史明细信息吗?':'是否确认删除选中的' + this.detailIds.length + '条数据项?',
"警告",
{
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
}
)
.then(function () {
return delDetail(detailIds);
})
.then(() => {
this.getDetailList();
this.msgSuccess("删除成功");
})
.catch(function () {});
},
/** 表格切换字段显示操作 */
selectData(val) {
if (val) {
this.colData.filter((i) => {
if (val.indexOf(i.title) !== -1) {
i.istrue = true;
} else {
i.istrue = false;
}
});
}
},
selectDataDetail(val) {
if (val) {
this.colDataDetail.filter((i) => {
if (val.indexOf(i.title) !== -1) {
i.istrue = true;
} else {
i.istrue = false;
}
});
}
},
},
};
</script>
<style lang="scss" scoped>
.el-form-item {
margin-bottom: 10px;
}
.el-form-item__error {
position: relative;
}
.el-dialog__body {
padding: 20px 20px 10px 20px;
}
/*.el-dialog__footer {
padding: 10px 50px 20px;
}*/
.el-button--mini.is-round {
padding: 5px 10px;
}
</style>