index.vue
66.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
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
<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"
placeholder=""
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="companyCode">
<el-select
v-model="queryHeaderParams.companyCode"
placeholder="所有"
clearable
size="small"
>
<el-option
v-for="attr in companyOptions"
: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"
placeholder=""
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"
placeholder=""
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="mini"
@click="headerQuery"
>搜索</el-button
>
<el-button
icon="el-icon-refresh"
size="mini"
@click="resetHeaderQuery"
>重置</el-button
>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
icon="el-icon-plus"
size="mini"
@click="headerAdd"
v-hasPermi="['shipment:bill:add']"
>新增</el-button
>
</el-col>
<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>
<el-col :span="1.5">
<el-button
type="success"
icon="el-icon-edit"
size="mini"
:disabled="headerMultiple"
@click="orderAudit"
v-hasPermi="['shipment:bill:edit']"
>订单审核</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
type="primary"
icon="el-icon-plus"
size="mini"
:disabled="headerMultiple"
@click="addwave"
v-hasPermi="['shipment:bill:wave']"
>加入波次</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"
sortable
width="100"
v-if="colData[0].istrue"
/>
<el-table-column
label="出库单号"
align="center"
prop="code"
sortable
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"
/>
<el-table-column
label="货主"
align="center"
prop="companyCode"
sortable
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"
prop="referCode"
sortable
width="110"
v-if="colData[4].istrue"
:show-overflow-tooltip="true"
/>
<el-table-column
label="上游订单类型"
align="center"
prop="referCodeType"
width="120"
v-if="colData[5].istrue"
:show-overflow-tooltip="true"
/>
<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="firstStatus"
width="100"
sortable
v-if="colData[9].istrue"
>
<template slot-scope="scope">
<el-button size="mini" type="primary" round>{{
firstFormat(scope.row, scope.column)
}}</el-button>
</template>
</el-table-column>
<el-table-column
label="尾状态"
align="center"
prop="lastStatus"
width="100"
sortable
v-if="colData[10].istrue"
>
<template slot-scope="scope">
<el-button size="mini" type="primary" round>{{
lastFormat(scope.row, scope.column)
}}</el-button>
</template>
</el-table-column>
<el-table-column
label="出库类型"
align="center"
prop="shipmentType"
sortable
width="130"
v-if="colData[11].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[12].istrue"
:show-overflow-tooltip="true"
/>
<el-table-column
label="客户名称"
align="center"
prop="customerName"
width="100"
v-if="colData[13].istrue"
:show-overflow-tooltip="true"
/>
<el-table-column
label="优先级"
align="center"
prop="priority"
v-if="colData[14].istrue"
/>
<el-table-column
label="路线"
align="center"
prop="route"
v-if="colData[15].istrue"
:show-overflow-tooltip="true"
/>
<el-table-column
label="要求到货时间"
align="center"
prop="requestedDeliveryDate"
sortable
width="160"
v-if="colData[16].istrue"
>
<template slot-scope="scope">
<span>{{ parseTime(scope.row.created) }}</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.created) }}</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.created) }}</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.created) }}</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"
sortable
width="160"
v-if="colData[41].istrue"
>
<template slot-scope="scope">
<span>{{ parseTime(scope.row.created) }}</span>
</template>
</el-table-column>
<el-table-column
label="创建用户"
align="center"
prop="createdBy"
:show-overflow-tooltip="true"
v-if="colData[42].istrue"
/>
<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
label="操作"
align="center"
class-name="small-padding fixed-width"
width="200"
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-edit"
v-if="scope.row.firstStatus == '0'"
@click="headerUpdate(scope.row)"
v-hasPermi="['shipment:bill:edit']"
>编辑</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"
v-if="
scope.row.firstStatus < '200' || scope.row.firstStatus > '300'
"
@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.shipmentId !== undefined"
>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
icon="el-icon-plus"
size="mini"
@click="detailAdd"
v-hasPermi="['shipment:bill:add']"
>新增</el-button
>
</el-col>
<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>
<el-col :span="1.5">
<el-button
type="success"
icon="el-icon-printer"
size="mini"
:disabled="detailMultiple"
@click="detailPrint"
v-hasPermi="['shipment:bill:report']"
>打印</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
type="primary"
icon="el-icon-thumb"
size="mini"
@click="handleGroupDisk"
v-hasPermi="['shipment:shippingCombination:combination']"
>手动组盘</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
type="primary"
icon="el-icon-copy-document"
size="mini"
@click="handleAutoGroupDisk"
v-hasPermi="['shipment:shippingCombination:combination']"
>自动组盘</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"
sortable
width="85"
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"
/>
<el-table-column
label="货主"
align="center"
prop="companyCode"
v-if="colDataDetail[3].istrue"
:show-overflow-tooltip="true"
/>
<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="120"
v-if="colDataDetail[8].istrue"
/>
<el-table-column
label="物料名称"
align="center"
prop="materialName"
v-if="colDataDetail[9].istrue"
:show-overflow-tooltip="true"
/>
<el-table-column
label="物料规格"
align="center"
prop="materialSpec"
v-if="colDataDetail[10].istrue"
:show-overflow-tooltip="true"
/>
<el-table-column
label="物料单位"
align="center"
prop="materialUnit"
v-if="colDataDetail[11].istrue"
:show-overflow-tooltip="true"
/>
<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="success" round>{{
inventoryStsFormat(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"
width="90"
v-if="colDataDetail[33].istrue"
>
<template slot-scope="scope">
<el-button size="mini" type="primary" 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"
sortable
width="160"
v-if="colDataDetail[35].istrue"
>
<template slot-scope="scope">
<!--<span>{{dateFormat('YYYY-mm-dd HH:MM',scope.row.created)}}</span>-->
<span>{{ parseTime(scope.row.created) }}</span>
</template>
</el-table-column>
<el-table-column
label="创建用户"
align="center"
prop="createdBy"
:show-overflow-tooltip="true"
v-if="colDataDetail[36].istrue"
/>
<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"
:show-overflow-tooltip="true"
v-if="colDataDetail[38].istrue"
/>
<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
label="操作"
align="center"
class-name="small-padding fixed-width"
width="100"
v-if="colDataDetail[43].istrue"
>
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
v-if="scope.row.status == '0'"
@click="detailUpdate(scope.row)"
v-hasPermi="['shipment:bill:edit']"
>编辑</el-button
>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
v-if="scope.row.status == '0'"
@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>
<!-- 添加或修改出库单主表对话框 -->
<el-dialog
:title="headerTitle"
:visible.sync="headerOpen"
width="520px"
append-to-body
>
<el-form
ref="headerForm"
:model="headerForm"
:rules="headerRules"
label-width="120px"
>
<el-form-item label="出库单类型:" prop="shipmentType">
<el-select
v-model="headerForm.shipmentType"
placeholder="请选择"
:style="{ width: '100%' }"
>
<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="companyCode">
<el-select
v-model="headerForm.companyCode"
placeholder="请选择"
:style="{ width: '100%' }"
>
<el-option
v-for="attr in companyOptions"
:key="attr.id"
:value="attr.code"
:label="attr.name"
/>
</el-select>
</el-form-item>
<el-form-item label="上游订单号:" prop="referCode">
<el-input
v-model="headerForm.referCode"
placeholder="请输入上游订单号"
/>
</el-form-item>
<el-form-item label="上游平台:" prop="referPlatform">
<el-input
v-model="headerForm.referPlatform"
placeholder="请输入上游平台"
/>
</el-form-item>
<el-form-item label="客户编码:" prop="customerCode">
<el-select
v-model="headerForm.customerCode"
filterable
clearable
placeholder="请选择"
:style="{ width: '100%' }"
>
<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="优先级(0-99):" prop="priority">
<el-input
v-model="headerForm.priority"
placeholder="请输入优先级(0-99)"
/>
</el-form-item>
<el-form-item
label="要求到货时间:"
prop="requestedDeliveryDate"
size="medium"
>
<el-date-picker
v-model="headerForm.requestedDeliveryDate"
type="datetime"
placeholder="请选择要求到货时间"
style="width: 100%"
>
</el-date-picker>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitHeaderForm">确定</el-button>
<el-button @click="headerCancel">取消</el-button>
</div>
</el-dialog>
<!-- 添加或修改出库单明细对话框 -->
<el-dialog
:title="detailTitle"
:visible.sync="detailOpen"
width="700px"
append-to-body
>
<el-form
ref="detailForm"
:model="detailForm"
:rules="detailRules"
label-width="120px"
>
<el-row gutter="20">
<el-col span="12">
<el-form-item label="出库单id:" prop="shipmentId">
<el-input
v-model="detailForm.shipmentId"
placeholder=""
disabled
/>
</el-form-item>
</el-col>
<el-col span="12">
<el-form-item label="出库单编码:" prop="shipmentCode">
<el-input
v-model="detailForm.shipmentCode"
placeholder=""
disabled
/>
</el-form-item>
</el-col>
</el-row>
<el-row gutter="20">
<el-col span="12">
<el-form-item label="物料编码:" prop="materialCode">
<el-select
v-model="detailForm.materialCode"
filterable
placeholder="请选择"
:style="{ width: '100%' }"
>
<el-option
v-for="attr in materialCodeOptions"
:key="attr.id"
:value="attr.code"
:label="attr.name"
/>
</el-select>
</el-form-item>
</el-col>
<el-col span="12">
<el-form-item label="库存状态:" prop="inventorySts">
<el-select
v-model="detailForm.inventorySts"
placeholder="请选择"
:style="{ width: '100%' }"
>
<el-option
v-for="dict in inventoryStsOptions"
:key="dict.dictValue"
:label="dict.dictLabel"
:value="dict.dictValue"
></el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
<el-row gutter="20">
<el-col span="12">
<el-form-item label="发货数量:" prop="shipQty">
<el-input
v-model="detailForm.shipQty"
placeholder="请输入发货数量"
/>
</el-form-item>
</el-col>
<el-col span="12">
<el-form-item label="出库站台:" prop="stationCode">
<el-select
v-model="detailForm.stationCode"
filterable
placeholder="请选择"
:style="{ width: '100%' }"
>
<el-option
v-for="attr in stationCodeOptions"
:key="attr.code"
:value="attr.name"
:label="attr.name"
/>
</el-select>
</el-form-item>
</el-col>
</el-row>
<el-row gutter="20">
<el-col span="12">
<el-form-item label="批次:" prop="batch">
<el-input v-model="detailForm.batch" placeholder="请输入批次" />
</el-form-item>
</el-col>
<el-col span="12">
<el-form-item label="批号:" prop="lot">
<el-input v-model="detailForm.lot" placeholder="请输入批号" />
</el-form-item>
</el-col>
</el-row>
<el-row gutter="20">
<el-col span="12">
<el-form-item label="项目号:" prop="projectNo">
<el-input
v-model="detailForm.projectNo"
placeholder="请输入项目号"
/>
</el-form-item>
</el-col>
<el-col span="12">
<el-form-item label="上游系统行号:" prop="referLineNum">
<el-input
v-model="detailForm.referLineNum"
placeholder="请输入上游系统行号"
/>
</el-form-item>
</el-col>
</el-row>
<el-row gutter="20">
<el-col span="12">
<el-form-item label="分配规则:" prop="allocationRule">
<el-select
v-model="detailForm.allocationRule"
placeholder="请选择"
:style="{ width: '100%' }"
>
<el-option
v-for="item in allocationRuleOptions"
:key="item.id"
:label="item.description"
:value="item.filterCode"
/>
</el-select>
</el-form-item>
</el-col>
<el-col span="12">
<el-form-item label="补货规则:" prop="replenishmentRule">
<el-input
v-model="detailForm.replenishmentRule"
placeholder="请输入补货规则"
/>
</el-form-item>
</el-col>
</el-row>
<el-row gutter="20">
<el-col span="12">
<el-form-item label="拣货规则:" prop="pickingRule">
<el-select
v-model="detailForm.pickingRule"
placeholder="请选择"
:style="{ width: '100%' }"
>
<el-option
v-for="item in pickingRuleOptions"
:key="item.id"
:label="item.filterName"
:value="item.filterCode"
/>
</el-select>
</el-form-item>
</el-col>
<el-col span="12">
<el-form-item
label="生产日期:"
prop="manufactureDate"
size="medium"
>
<el-date-picker
v-model="detailForm.manufactureDate"
type="datetime"
placeholder="选择日期时间"
style="width: 100%"
>
</el-date-picker>
</el-form-item>
</el-col>
</el-row>
<el-row gutter="20">
<el-col span="12">
<el-form-item
label="失效日期:"
prop="expirationDate"
size="medium"
>
<el-date-picker
v-model="detailForm.expirationDate"
type="datetime"
placeholder="选择日期时间"
style="width: 100%"
>
</el-date-picker>
</el-form-item>
</el-col>
<el-col span="12">
<el-form-item
label="货主:"
prop="companyCode"
style="display: none"
>
<el-input
v-model="detailForm.companyCode"
placeholder="请输入货主"
/>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitDetailForm">确 定</el-button>
<el-button @click="detailCancel">取 消</el-button>
</div>
</el-dialog>
<wave-dialog :showaddwave.sync="showAddwave" :id="id" />
<headerprint-dialog
:showheaderprint.sync="showHeaderprint"
:printlist="HeaderprintList"
:code="code"
:customerCode="customerCode"
/>
<detailprint-dialog
:showdetailprint.sync="showDetailprint"
:printlist="DetailprintList"
/>
</div>
</template>
<script>
import {
listHeader,
addHeader,
getHeader,
updateHeader,
delHeader,
auditHeader,
} from "@/api/shipment/shipmentHeader/header";
import {
listDetail,
addDetail,
getDetail,
updateDetail,
delDetail,
getAutoGroupdisk,
} from "@/api/shipment/shipmentHeader/detail";
import { getTypeSelect } from "@/api/config/shipment/shipmentType";
import {
getCustomerSelect,
listCustomer,
} from "@/api/config/shipment/customer";
import { getCompaniesByToken } from "@/api/system/company";
import { queryList } from "@/api/config/InventoryInfo/material";
import { queryList as stationList } from "@/api/config/InventoryInfo/station";
import { listFilterHeader } from "@/api/config/shipment/filterConfigHeader/header";
import waveDialog from "./dialog/waveDialog";
import headerprintDialog from "./dialog/headerprintDialog";
import detailprintDialog from "@/views/shipment/shipmentHeader/dialog/detailprintDialog";
export default {
name: "ShipmentHeader",
components: {
waveDialog,
headerprintDialog,
detailprintDialog,
},
data() {
return {
//弹出单独加入波次dialog
showAddwave: false,
//加入波次 id 【来源列表 选中的id】
id: "",
//弹出单独打印dialog(出库单打印及出库单铭牌打印)
showHeaderprint: false,
showDetailprint: false,
// 主表遮罩层
headerLoading: true,
// 主表选中数组
headerIds: [],
// 主表非单个禁用
headerSingle: true,
// 主表非多个禁用
headerMultiple: true,
// 主表显示搜索条件
showHeaderSearch: true,
// 主表总条数
headerTotal: 0,
// 主表表格数据
HeaderList: [],
/*code:'',
companyCode:'',*/
// 主表弹出层标题
headerTitle: "",
// 主表是否显示弹出层
headerOpen: false,
//单日期选择
headerForm: {},
// 出库类型数据
typeOptions: [],
// 货主数据
companyOptions: [],
// 客户编码字典
customerOptions: [],
// 头状态、尾状态字典
firstOptions: [],
lastOptions: [],
// 分配、拣货规则数据
allocationRuleOptions: [],
pickingRuleOptions: [],
// 创建时间
dateRange: [],
// 对话框日期范围
dateRange2: [],
// 主表查询参数
queryHeaderParams: {
pageNum: 0,
pageSize: 10,
code: undefined,
shipmentType: undefined,
companyCode: undefined,
referCode: undefined,
referCodeType: undefined,
customerCode: undefined,
firstStatus: undefined,
lastStatus: undefined,
},
// 主表表单参数
// headerForm: {},
// 主表表单校验
headerRules: {
shipmentType: [
{
required: true,
message: "出库单类型不能为空",
trigger: ["blur", "change"],
},
],
companyCode: [
{
required: true,
message: "货主不能为空",
trigger: ["blur", "change"],
},
],
priority: [
{
pattern: /^([1-9]\d|\d)$/,
message: "请输入0-99的正整数",
trigger: ["blur", "change"],
},
],
},
// 明细遮罩层
detailLoading: true,
// 明细选中数组
detailIds: [],
// 明细非单个禁用
detailSingle: true,
// 明细非多个禁用
detailMultiple: true,
// 明细总条数
detailTotal: 0,
//打印数据
HeaderprintList: [],
DetailprintList: [],
// 明细表格数据
DetailList: [],
// 明细弹出层标题
detailTitle: "",
// 明细是否显示弹出层
detailOpen: false,
// 明细数据字典
//物料编码、库存状态、出库站台、分配规则、拣货规则
materialCodeOptions: [],
inventoryStsOptions: [],
stationCodeOptions: [],
ruleOptions: [],
pruleOptions: [],
// 明细查询参数
queryDetailParams: {
id: undefined,
shipmentId: 0,
pageNum: 1,
pageSize: 10,
shipmentCode: "",
},
// 明细表单参数
detailForm: {},
// 明细表单校验
detailRules: {
materialCode: [
{
required: true,
message: "物料编码不能为空",
trigger: ["blur", "change"],
},
],
inventorySts: [
{
required: true,
message: "库存状态不能为空",
trigger: ["blur", "change"],
},
],
shipQty: [
{
required: true,
message: "发货数量不能为空",
trigger: ["blur", "change"],
},
{
pattern: /^(1|[1-9][0-9]*)$/,
message: "请输入正确的正整数",
trigger: ["blur", "change"],
},
],
},
activeName: "first",
shipmentCode: "",
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: 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: true },
{ title: "发货月台", istrue: false },
{ title: "分配完成", istrue: false },
{ title: "总重量", istrue: false },
{ title: "总数量", istrue: true },
{ title: "总体积", istrue: false },
{ 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: 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 },
],
};
},
created() {
this.getHeaderList();
//出库单类型select下拉接口获取
getTypeSelect().then((response) => {
this.typeOptions = response.data;
});
//货主select下拉接口获取
getCompaniesByToken().then((response) => {
this.companyOptions = response;
});
//客户编码下拉接口获取
// getCustomerSelect().then(response => {
// this.customerOptions = 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.getDetailList();
//物料编码select下拉接口获取
queryList().then((response) => {
this.materialCodeOptions = response.rows;
});
//出库站台下拉接口获取
stationList().then((response) => {
this.stationCodeOptions = response.rows;
});
//分配拣货规则
listFilterHeader({ moduleType: "shipment" }).then((response) => {
response.rows.forEach((item) => {
if (item.recordType == "allocationRule") {
this.allocationRuleOptions.push(item);
}
if (item.recordType == "shipmentPickingRule") {
this.pickingRuleOptions.push(item);
}
});
});
//库存状态字典
this.getDicts("inventorySts").then((response) => {
this.inventoryStsOptions = response.data;
});
},
//加了右边勾选的表格字段后,防止表格数据切换抖动
beforeUpdate() {
this.$nextTick(() => {
this.$refs["table"].doLayout();
});
},
methods: {
//跳转到出库组盘
handleGroupDisk(row) {
this.$router.push({
path: "/shipment/shippingCombination",
query: { shipmentCode: this.code },
});
},
//加入波次(dialog显示)
addwave() {
//debugger
this.id = this.headerIds.join(",");
this.showAddwave = true;
},
//打印(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.shipmentId = row.id;
listDetail(this.queryDetailParams).then((response) => {
this.HeaderprintList = response.rows;
});
},
detailPrint() {
this.showDetailprint = true;
},
/** 查询主表列表 */
getHeaderList() {
this.headerLoading = true;
listHeader(
this.addDateRange(this.queryHeaderParams, this.dateRange)
).then((response) => {
this.HeaderList = response.rows;
this.headerTotal = response.total;
this.headerLoading = false;
});
},
// 出库单类型字典翻译
shipmentTypeFormat(row, column) {
return this.selectCommonLabel(this.typeOptions, row.shipmentType);
},
// 货主字典翻译
companyCodeFormat(row, column) {
return this.selectCommonLabel(this.companyOptions, row.companyCode);
},
// 头状态字典翻译
firstFormat(row, column) {
return this.selectDictLabel(this.firstOptions, row.firstStatus);
},
// 尾状态字典翻译
lastFormat(row, column) {
return this.selectDictLabel(this.lastOptions, row.lastStatus);
},
// 明细字典翻译(库存状态、明细状态)
inventoryStsFormat(row, column) {
return this.selectDictLabel(this.inventoryStsOptions, row.inventorySts);
},
mxstatusFormat(row, column) {
return this.selectDictLabel(this.firstOptions, row.status);
},
// 主表取消按钮
headerCancel() {
this.headerOpen = false;
this.headerReset();
},
// 主表表单重置
headerReset() {
this.headerForm = {
shipmentType: undefined,
companyCode: undefined,
referCode: undefined,
referPlatform: undefined,
customerCode: undefined,
priority: undefined,
requestedDeliveryDate: undefined,
};
this.resetForm("headerForm");
},
/** 主表搜索按钮操作 */
headerQuery() {
this.queryHeaderParams.pageNum = 1;
this.getHeaderList();
},
/** 主表重置按钮操作 */
resetHeaderQuery() {
this.dateRange = [];
this.resetForm("queryHeaderForm");
this.headerQuery();
},
/** 主表新增按钮操作 */
headerAdd() {
this.headerReset();
this.headerOpen = true;
this.headerTitle = "添加出库单";
},
// 主表多选框选中数据
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;
},
/** 主表修改按钮操作 */
headerUpdate(row) {
this.headerReset();
const headerId = row.id || this.headerIds;
getHeader(headerId).then((response) => {
delete response.data.created;
delete response.data.lastUpdated;
this.headerForm = response.data;
this.headerOpen = true;
this.headerTitle = "修改出库单";
});
},
/** 主表提交按钮 */
submitHeaderForm: function () {
this.$refs["headerForm"].validate((valid) => {
if (valid) {
if (this.headerForm.id != undefined) {
updateHeader(this.headerForm).then((response) => {
if (response.code === 200) {
this.msgSuccess("修改成功");
this.headerOpen = false;
this.getHeaderList();
}
});
} else {
addHeader(this.addDateRange(this.headerForm, this.dateRange2)).then(
(response) => {
if (response.code === 200) {
this.msgSuccess("新增成功");
this.headerOpen = false;
this.getHeaderList();
}
}
);
}
}
});
},
/** 主表删除按钮操作 */
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.detailForm.shipmentId = row.id;
this.detailForm.shipmentCode = row.code;
this.code = row.code;
this.detailForm.companyCode = row.companyCode;
this.companyCode = row.companyCode;
this.queryDetailParams.shipmentId = row.id; //选项卡切换隐藏
this.shipmentId = row.id;
this.queryDetailParams.shipmentCode = row.code;
this.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;
});
// this.getDetailList();
},
// 查询明细列表
getDetailList() {
this.detailLoading = true;
listDetail(this.queryDetailParams).then((response) => {
this.DetailList = response.rows;
this.detailTotal = response.total;
this.detailLoading = false;
});
},
//主表订单审核
orderAudit() {
auditHeader(this.headerIds).then((response) => {
if (response.code == 200) {
this.msgSuccess(response.msg);
this.getHeaderList();
} else {
this.msgError(response.msg);
}
});
},
// 明细取消按钮
detailCancel() {
this.detailOpen = false;
this.detailReset();
},
// 明细表单重置
detailReset() {
this.detailForm = {
shipmentId: undefined,
shipmentCode: undefined,
materialCode: undefined,
inventorySts: undefined,
shipQty: undefined,
stationCode: undefined,
batch: undefined,
lot: undefined,
project: undefined,
referLineNum: undefined,
allocationRule: undefined,
replenishmentRule: undefined,
pickingRule: undefined,
manufactureDate: undefined,
expirationDate: undefined,
companyCode: undefined,
};
this.resetForm("detailForm");
},
/** 明细新增按钮操作 */
detailAdd() {
this.detailReset();
this.detailForm.shipmentId = this.shipmentId;
this.detailForm.shipmentCode = this.code;
this.detailForm.companyCode = this.companyCode;
this.detailOpen = true;
this.detailTitle = "添加明细";
},
// 明细多选框选中数据
detailSelectionChange(selection) {
this.DetailprintList = selection;
//明细打印title货主
const companyArr = this.companyOptions.filter(
(item) => item.code == this.companyCode
);
this.DetailprintList.forEach((item) => {
item.companyName = companyArr[0].name;
});
// this.shipmentCode = selection[0].shipmentCode;
this.detailIds = selection.map((item) => item.id);
this.materialCode = selection.map((item) => item.materialCode);
this.detailSingle = selection.length != 1;
this.detailMultiple = !selection.length;
},
/** 明细修改按钮操作 */
detailUpdate(row) {
this.detailReset();
this.detailForm.shipmentId = this.queryDetailParams.id;
this.detailForm.shipmentCode = this.code;
const detailId = row.id || this.detailIds;
getDetail(detailId).then((response) => {
delete response.data.created;
delete response.data.lastUpdated;
this.detailForm = response.data;
this.detailOpen = true;
this.detailTitle = "修改明细";
});
},
/** 明细提交按钮 */
submitDetailForm: function () {
this.$refs["detailForm"].validate((valid) => {
if (valid) {
if (this.detailForm.id != undefined) {
updateDetail(this.detailForm).then((response) => {
if (response.code === 200) {
this.msgSuccess("修改成功");
this.detailOpen = false;
this.getDetailList();
this.getHeaderList();
}
});
} else {
addDetail(this.detailForm).then((response) => {
if (response.code === 200) {
this.msgSuccess("新增成功");
this.detailOpen = false;
this.getDetailList();
this.getHeaderList();
}
});
}
}
});
},
/** 明细删除按钮操作 */
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("删除成功");
this.getHeaderList();
})
.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;
}
});
}
},
//明细自动组盘
handleAutoGroupDisk() {
getAutoGroupdisk(this.detailIds).then((response) => {
if (response.code == 200) {
this.msgSuccess(response.msg);
this.getDetailList();
} else {
this.msgError(response.msg);
}
});
},
},
};
</script>
<style lang="scss" scoped>
.el-form-item {
margin-bottom: 16px;
}
.el-dialog__body {
padding: 20px 20px 10px 20px;
}
.el-dialog__footer {
padding: 10px 50px 20px;
}
.pagination-container {
margin-bottom: 20px;
}
.el-button--mini.is-round {
padding: 5px 10px;
}
</style>