1
huanghongfeng
2024-11-21 4cfeced9bc8985cdd89fdb540e6fe984f8469481
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
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
--------------------------------
2024/11/16 12:54:28|
响应数据 -  响应数据类型:System.String
{"total":49,"rows":[{"id":134,"palletCode":"FK240806D1#13","materialType":1,"locationCode":"R01-001-004-001-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-16 10:24:12","modifier":"admin","modifyDate":"2024-11-16 11:48:08"},{"id":133,"palletCode":"KTP1115165738","materialType":0,"locationCode":"R01-002-003-001-01","isFull":true,"stockStatus":5,"materialweight":7.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 16:57:26","modifier":null,"modifyDate":"2024-11-15 16:57:28"},{"id":131,"palletCode":"FK240806D1#17","materialType":0,"locationCode":"R02-004-006-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 16:47:55","modifier":null,"modifyDate":"2024-11-15 16:51:05"},{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":null,"modifyDate":"2024-11-15 10:59:10"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"}],"summary":null}
--------------------------------
2024/11/16 12:54:40|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/16 12:54:40|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[{\\\"name\\\":\\\"palletCode\\\",\\\"value\\\":\\\"FK240806D1#13\\\"}]\"}"}
--------------------------------
2024/11/16 12:54:40|
响应数据 -  响应数据类型:System.String
{"total":1,"rows":[{"id":134,"palletCode":"FK240806D1#13","materialType":1,"locationCode":"R01-001-004-001-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-16 10:24:12","modifier":"admin","modifyDate":"2024-11-16 11:48:08"}],"summary":null}
--------------------------------
2024/11/16 12:54:45|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/16 12:54:45|
响应数据 -  响应数据类型:System.String
{"total":49,"rows":[{"id":134,"palletCode":"FK240806D1#13","materialType":1,"locationCode":"R01-001-004-001-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-16 10:24:12","modifier":"admin","modifyDate":"2024-11-16 11:48:08"},{"id":133,"palletCode":"KTP1115165738","materialType":0,"locationCode":"R01-002-003-001-01","isFull":true,"stockStatus":5,"materialweight":7.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 16:57:26","modifier":null,"modifyDate":"2024-11-15 16:57:28"},{"id":131,"palletCode":"FK240806D1#17","materialType":0,"locationCode":"R02-004-006-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 16:47:55","modifier":null,"modifyDate":"2024-11-15 16:51:05"},{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":null,"modifyDate":"2024-11-15 10:59:10"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"}],"summary":null}
--------------------------------
2024/11/16 12:54:52|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/16 12:54:52|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/16 12:54:52|
响应数据 -  响应数据类型:System.String
{"total":49,"rows":[{"id":134,"palletCode":"FK240806D1#13","materialType":1,"locationCode":"R01-001-004-001-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-16 10:24:12","modifier":"admin","modifyDate":"2024-11-16 11:48:08"},{"id":133,"palletCode":"KTP1115165738","materialType":0,"locationCode":"R01-002-003-001-01","isFull":true,"stockStatus":5,"materialweight":7.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 16:57:26","modifier":null,"modifyDate":"2024-11-15 16:57:28"},{"id":131,"palletCode":"FK240806D1#17","materialType":0,"locationCode":"R02-004-006-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 16:47:55","modifier":null,"modifyDate":"2024-11-15 16:51:05"},{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":null,"modifyDate":"2024-11-15 10:59:10"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"}],"summary":null}
--------------------------------
2024/11/16 12:55:23|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/16 12:55:23|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/16 12:55:23|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"inventoryMaterialType\",\"yesno\",\"stockStatusEmun\"]"}
--------------------------------
2024/11/16 12:55:23|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/16 12:55:23|
响应数据 -  响应数据类型:System.String
[{"dicNo":"yesno","config":null,"data":[{"key":"true","value":"是"},{"key":"false","value":"否"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/16 12:55:23|
响应数据 -  响应数据类型:System.String
{"total":49,"rows":[{"id":134,"palletCode":"FK240806D1#13","materialType":1,"locationCode":"R01-001-004-001-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-16 10:24:12","modifier":"admin","modifyDate":"2024-11-16 11:48:08"},{"id":133,"palletCode":"KTP1115165738","materialType":0,"locationCode":"R01-002-003-001-01","isFull":true,"stockStatus":5,"materialweight":7.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 16:57:26","modifier":null,"modifyDate":"2024-11-15 16:57:28"},{"id":131,"palletCode":"FK240806D1#17","materialType":0,"locationCode":"R02-004-006-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 16:47:55","modifier":null,"modifyDate":"2024-11-15 16:51:05"},{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":null,"modifyDate":"2024-11-15 10:59:10"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"}],"summary":null}
--------------------------------
2024/11/16 12:55:28|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/16 12:55:28|
响应数据 -  响应数据类型:System.String
{"total":49,"rows":[{"id":134,"palletCode":"FK240806D1#13","materialType":1,"locationCode":"R01-001-004-001-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-16 10:24:12","modifier":"admin","modifyDate":"2024-11-16 11:48:08"},{"id":133,"palletCode":"KTP1115165738","materialType":0,"locationCode":"R01-002-003-001-01","isFull":true,"stockStatus":5,"materialweight":7.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 16:57:26","modifier":null,"modifyDate":"2024-11-15 16:57:28"},{"id":131,"palletCode":"FK240806D1#17","materialType":0,"locationCode":"R02-004-006-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 16:47:55","modifier":null,"modifyDate":"2024-11-15 16:51:05"},{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":null,"modifyDate":"2024-11-15 10:59:10"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"}],"summary":null}
--------------------------------
2024/11/16 12:58:38|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/16 12:58:38|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/16 12:58:38|
响应数据 -  响应数据类型:System.String
[{"id":29,"name":"库存信息","url":"/stockInfo","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfo","permission":["Search","Add","Delete","Update","Import","Export","HandOutbound"]},{"id":25,"name":"入库单","url":"/inboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_InboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-notebook-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":30,"name":"库存信息明细","url":"stockInfoDetail","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfoDetail","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":32,"name":"库存视图","url":"/stockView","parentId":20,"icon":"","enable":1,"tableName":"StockView","permission":["Search"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-shopping-bag-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":27,"name":"出库单","url":"/outboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_OutboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":23,"name":"货位信息","url":"/locationInfo","parentId":17,"icon":"","enable":1,"tableName":"Dt_LocationInfo","permission":["Search","Update","Export","Enable","Disable"]},{"id":19,"name":"单据管理","url":"","parentId":0,"icon":"el-icon-document","enable":1,"tableName":"/","permission":["Search"]},{"id":20,"name":"库存管理","url":"","parentId":0,"icon":"el-icon-discount","enable":1,"tableName":"/","permission":["Search"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":null,"enable":1,"tableName":"Dt_Task","permission":["Search","Export"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]
--------------------------------
2024/11/16 12:58:40|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/16 12:58:40|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/16 12:58:40|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"taskTypeEnum\",\"taskStatusEnum\"]"}
--------------------------------
2024/11/16 12:58:40|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/16 12:58:40|
响应数据 -  响应数据类型:System.String
[{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]}]
--------------------------------
2024/11/16 12:58:40|
响应数据 -  响应数据类型:System.String
{"total":0,"rows":[],"summary":null}
--------------------------------
2024/11/16 12:58:48|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/16 12:58:48|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/16 12:58:48|
响应数据 -  响应数据类型:System.String
{"total":49,"rows":[{"id":134,"palletCode":"FK240806D1#13","materialType":1,"locationCode":"R01-001-004-001-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-16 10:24:12","modifier":"admin","modifyDate":"2024-11-16 11:48:08"},{"id":133,"palletCode":"KTP1115165738","materialType":0,"locationCode":"R01-002-003-001-01","isFull":true,"stockStatus":5,"materialweight":7.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 16:57:26","modifier":null,"modifyDate":"2024-11-15 16:57:28"},{"id":131,"palletCode":"FK240806D1#17","materialType":0,"locationCode":"R02-004-006-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 16:47:55","modifier":null,"modifyDate":"2024-11-15 16:51:05"},{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":null,"modifyDate":"2024-11-15 10:59:10"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"}],"summary":null}
--------------------------------
2024/11/16 12:58:52|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/16 12:58:52|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/16 12:58:52|
响应数据 -  响应数据类型:System.String
[{"id":29,"name":"库存信息","url":"/stockInfo","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfo","permission":["Search","Add","Delete","Update","Import","Export","HandOutbound"]},{"id":25,"name":"入库单","url":"/inboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_InboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-notebook-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":30,"name":"库存信息明细","url":"stockInfoDetail","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfoDetail","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":32,"name":"库存视图","url":"/stockView","parentId":20,"icon":"","enable":1,"tableName":"StockView","permission":["Search"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-shopping-bag-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":27,"name":"出库单","url":"/outboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_OutboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":23,"name":"货位信息","url":"/locationInfo","parentId":17,"icon":"","enable":1,"tableName":"Dt_LocationInfo","permission":["Search","Update","Export","Enable","Disable"]},{"id":19,"name":"单据管理","url":"","parentId":0,"icon":"el-icon-document","enable":1,"tableName":"/","permission":["Search"]},{"id":20,"name":"库存管理","url":"","parentId":0,"icon":"el-icon-discount","enable":1,"tableName":"/","permission":["Search"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":null,"enable":1,"tableName":"Dt_Task","permission":["Search","Export"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]
--------------------------------
2024/11/16 12:58:53|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/16 12:58:53|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/16 12:58:53|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"stockStatusEmun\",\"inventoryMaterialType\",\"yesno\"]"}
--------------------------------
2024/11/16 12:58:53|
响应数据 -  响应数据类型:System.String
{"total":49,"rows":[{"id":134,"palletCode":"FK240806D1#13","materialType":1,"locationCode":"R01-001-004-001-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-16 10:24:12","modifier":"admin","modifyDate":"2024-11-16 11:48:08"},{"id":133,"palletCode":"KTP1115165738","materialType":0,"locationCode":"R01-002-003-001-01","isFull":true,"stockStatus":5,"materialweight":7.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 16:57:26","modifier":null,"modifyDate":"2024-11-15 16:57:28"},{"id":131,"palletCode":"FK240806D1#17","materialType":0,"locationCode":"R02-004-006-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 16:47:55","modifier":null,"modifyDate":"2024-11-15 16:51:05"},{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":null,"modifyDate":"2024-11-15 10:59:10"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"}],"summary":null}
--------------------------------
2024/11/16 12:58:53|
响应数据 -  响应数据类型:System.String
[{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"yesno","config":null,"data":[{"key":"true","value":"是"},{"key":"false","value":"否"}]},{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/16 12:59:03|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/16 12:59:03|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/16 12:59:03|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"stockStatusEmun\",\"inventoryMaterialType\",\"yesno\"]"}
--------------------------------
2024/11/16 12:59:03|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/16 12:59:03|
响应数据 -  响应数据类型:System.String
[{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"yesno","config":null,"data":[{"key":"true","value":"是"},{"key":"false","value":"否"}]},{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/16 12:59:03|
响应数据 -  响应数据类型:System.String
{"total":49,"rows":[{"id":134,"palletCode":"FK240806D1#13","materialType":1,"locationCode":"R01-001-004-001-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-16 10:24:12","modifier":"admin","modifyDate":"2024-11-16 11:48:08"},{"id":133,"palletCode":"KTP1115165738","materialType":0,"locationCode":"R01-002-003-001-01","isFull":true,"stockStatus":5,"materialweight":7.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 16:57:26","modifier":null,"modifyDate":"2024-11-15 16:57:28"},{"id":131,"palletCode":"FK240806D1#17","materialType":0,"locationCode":"R02-004-006-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 16:47:55","modifier":null,"modifyDate":"2024-11-15 16:51:05"},{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":null,"modifyDate":"2024-11-15 10:59:10"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"}],"summary":null}
--------------------------------
2024/11/16 12:59:09|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/16 12:59:09|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfoDetail/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/16 12:59:09|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"stockStatusEmun\"]"}
--------------------------------
2024/11/16 12:59:09|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfoDetail/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/16 12:59:09|
响应数据 -  响应数据类型:System.String
[{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]}]
--------------------------------
2024/11/16 12:59:09|
响应数据 -  响应数据类型:System.String
{"total":21,"rows":[{"id":65,"stockId":134,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#13","batchNo":"240806D1","serialNumber":"13","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-16 10:24:13","modifier":"admin","modifyDate":"2024-11-16 11:48:08"},{"id":64,"stockId":131,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#17","batchNo":"240806D1","serialNumber":"17","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-15 16:47:55","modifier":null,"modifyDate":"2024-11-15 16:51:05"},{"id":63,"stockId":130,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#12","batchNo":"240806D1","serialNumber":"12","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":62,"stockId":129,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#28","batchNo":"240806D1","serialNumber":"28","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":null,"modifyDate":"2024-11-15 10:59:10"},{"id":61,"stockId":127,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#21","batchNo":"240806D1","serialNumber":"21","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":60,"stockId":126,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#32","batchNo":"240806D1","serialNumber":"32","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":59,"stockId":124,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#01","batchNo":"240806D1","serialNumber":"01","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":58,"stockId":90,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#03","batchNo":"240806D1","serialNumber":"03","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 15:35:30","modifier":null,"modifyDate":"2024-11-13 15:37:58"},{"id":57,"stockId":89,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#05","batchNo":"240806D1","serialNumber":"05","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 15:31:50","modifier":null,"modifyDate":"2024-11-13 15:35:00"},{"id":56,"stockId":88,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#07","batchNo":"240806D1","serialNumber":"07","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:54:36","modifier":null,"modifyDate":"2024-11-13 15:32:51"},{"id":55,"stockId":87,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#09","batchNo":"240806D1","serialNumber":"09","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:52:14","modifier":null,"modifyDate":"2024-11-13 15:30:46"},{"id":54,"stockId":86,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#26","batchNo":"240806D1","serialNumber":"26","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:51:08","modifier":null,"modifyDate":"2024-11-13 15:28:53"},{"id":53,"stockId":85,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#19","batchNo":"240806D1","serialNumber":"19","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:47:22","modifier":null,"modifyDate":"2024-11-13 14:51:52"},{"id":52,"stockId":84,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#15","batchNo":"240806D1","serialNumber":"15","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:43:21","modifier":null,"modifyDate":"2024-11-13 14:48:08"},{"id":51,"stockId":83,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#11","batchNo":"240806D1","serialNumber":"11","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:18:39","modifier":null,"modifyDate":"2024-11-13 14:43:52"},{"id":50,"stockId":82,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#14","batchNo":"240806D1","serialNumber":"14","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:16:05","modifier":null,"modifyDate":"2024-11-13 14:21:42"},{"id":49,"stockId":81,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#25","batchNo":"240806D1","serialNumber":"25","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:15:17","modifier":null,"modifyDate":"2024-11-13 14:17:56"},{"id":47,"stockId":79,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#27","batchNo":"240806D1","serialNumber":"27","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:00:49","modifier":null,"modifyDate":"2024-11-13 14:10:08"},{"id":46,"stockId":18,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#18","batchNo":"240806D1","serialNumber":"18","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:00:00","modifier":null,"modifyDate":"2024-11-13 14:04:39"},{"id":45,"stockId":77,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#23","batchNo":"240806D1","serialNumber":"23","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 13:44:48","modifier":null,"modifyDate":"2024-11-13 13:49:34"},{"id":44,"stockId":76,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#31","batchNo":"240806D1","serialNumber":"31","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 12:16:36","modifier":null,"modifyDate":"2024-11-15 16:49:15"}],"summary":null}
--------------------------------
2024/11/16 13:00:49|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/16 13:00:49|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Log/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/16 13:00:49|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"restatus\",\"roles\",\"log\"]"}
--------------------------------
2024/11/16 13:00:49|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Log/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"Id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/16 13:00:49|
响应数据 -  响应数据类型:System.String
Status Code: 404; Not Found                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
--------------------------------
2024/11/16 13:00:49|
响应数据 -  响应数据类型:System.String
[{"dicNo":"restatus","config":"{valueField: 'Success',\r\n textField: 'Success', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"1","value":"成功"},{"key":"2","value":"异常"},{"key":"0","value":"其他"},{"key":"3","value":"Info"}]},{"dicNo":"log","config":"{valueField: 'LogType',\r\n textField: 'LogType', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"ReplaceToeken","value":"刷新Token"},{"key":"System","value":"系统"},{"key":"Login","value":"登陆"},{"key":"Add","value":"新建"},{"key":"Del","value":"删除"},{"key":"Edit","value":"编辑"},{"key":"Exception","value":"异常"}]},{"dicNo":"roles","config":"{valueField: 'Role_Id',\r\n textField: 'RoleName', \r\n containField: ['Role_Id','RoleName'],\r\n handler: null }\r\n","data":[{"key":"1","value":"超级管理员"}]},{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/17 12:58:53|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 12:58:53|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 12:58:53|
响应数据 -  响应数据类型:System.String
{"message":"授权未通过","status":false,"code":401}
--------------------------------
2024/11/17 12:58:53|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/User/getVierificationCode","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 12:58:53|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/User/getVierificationCode","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 12:58:54|
响应数据 -  响应数据类型:System.String
{"img":"iVBORw0KGgoAAAANSUhEUgAAAEgAAAAgCAYAAACxSj5wAAAABHNCSVQICAgIfAhkiAAAAkZJREFUaIHtWdmSAyEIhNT+d8yXsw8ZDSICHpPMHl2VSqIjIjaHDhIRwQF8INC9/AXeDgBq35no6fNWHbiBfjqiBh0x/C068Ur/u7DbOAAbGHQFN1iFtYYQgyxcxTgrLM5r0GT8qhi0A5JNJoMQ8TLxJQqVBQNrkB6hGggRAREBEjw/xmSRyYu84/mRMXlcFD2Xz/Nq81v6fGmKFSRoDCQVsGKQXFz+b3m1ZhBENMdYWPWAikHqbqWYAvyb7zwRlY8Hiy2jTOI6SdCdqj5rk90s5i3MYpQ31tpdInI3Z1Y2QDz7Lqd5icatMrNye3r1cSU1hshFRFm0M7FUBoq6ggU5vtmp1B9X5u88E2HUrHF643QGBRSRaFyLyeDsCW1AAjWDNYxystFIEetW0pUrpLDcBvLkzxfpLdCCZtjKRYPGGa38i4HKwDQ03lSgKRmUZ3fEixXmeDKbo0a147O1xwYZUg4APF10gYUcZv3GjhunZrHdx7x3HYz5PE0lvYKecbwK+kyjapi6D+rVGFGFe0both80xkebFIiozWAThhuNTdq90A1gvcTnz+QbAO+gmRVR78AnjhWz8I4crxiUWCv7XblKJCAmUBlhoepPTn8Q0eDtsurTF2YarVdO77sxlcV6dzozKVfbwVXjbL3kIwWQ1OZp9OR58+T+XfpwOVHZVW9Ekd3Gs+SfOZcmW2v7eAy6OpoYJG8I/zoaA8n6JGqomcv83Qi9DOg80006pzl5EDNxZnTMSrA/LQatvJK+0uvs/yDt4BuofXp2XflVfQAAAABJRU5ErkJggg==","uuid":"f42682bb-0227-4b63-a92b-0164ef0e3fde"}
--------------------------------
2024/11/17 12:59:00|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/User/login","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 12:59:00|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/User/login","QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"f42682bb-0227-4b63-a92b-0164ef0e3fde\"}"}
--------------------------------
2024/11/17 12:59:01|
响应数据 -  响应数据类型:System.String
{"status":true,"code":0,"message":null,"data":{"token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTczMTgxOTU0MSIsIm5iZiI6IjE3MzE4MTk1NDEiLCJleHAiOiIxNzMxODI2NzQxIiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.kx4Vj93BVz0hcznOoy1vDkJT2xD86cRTJW1yQDpPBaM","userName":"超级管理员","img":""},"devMessage":null}
--------------------------------
2024/11/17 12:59:01|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 12:59:01|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 12:59:02|
响应数据 -  响应数据类型:System.String
[{"id":29,"name":"库存信息","url":"/stockInfo","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfo","permission":["Search","Add","Delete","Update","Import","Export","HandOutbound"]},{"id":25,"name":"入库单","url":"/inboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_InboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-notebook-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":30,"name":"库存信息明细","url":"stockInfoDetail","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfoDetail","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":32,"name":"库存视图","url":"/stockView","parentId":20,"icon":"","enable":1,"tableName":"StockView","permission":["Search"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-shopping-bag-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":27,"name":"出库单","url":"/outboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_OutboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":23,"name":"货位信息","url":"/locationInfo","parentId":17,"icon":"","enable":1,"tableName":"Dt_LocationInfo","permission":["Search","Update","Export","Enable","Disable"]},{"id":19,"name":"单据管理","url":"","parentId":0,"icon":"el-icon-document","enable":1,"tableName":"/","permission":["Search"]},{"id":20,"name":"库存管理","url":"","parentId":0,"icon":"el-icon-discount","enable":1,"tableName":"/","permission":["Search"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":null,"enable":1,"tableName":"Dt_Task","permission":["Search","Export"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]
--------------------------------
2024/11/17 12:59:05|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 12:59:05|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 12:59:05|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"taskTypeEnum\",\"taskStatusEnum\"]"}
--------------------------------
2024/11/17 12:59:05|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 12:59:05|
响应数据 -  响应数据类型:System.String
[{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/17 12:59:11|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 12:59:11|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 12:59:11|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 12:59:11|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"stockStatusEmun\",\"inventoryMaterialType\",\"yesno\"]"}
--------------------------------
2024/11/17 12:59:11|
响应数据 -  响应数据类型:System.String
[{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"yesno","config":null,"data":[{"key":"true","value":"是"},{"key":"false","value":"否"}]},{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/17 12:59:11|
响应数据 -  响应数据类型:System.String
{"total":49,"rows":[{"id":134,"palletCode":"FK240806D1#13","materialType":1,"locationCode":"R01-001-004-001-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-16 10:24:12","modifier":"admin","modifyDate":"2024-11-16 11:48:08"},{"id":133,"palletCode":"KTP1115165738","materialType":0,"locationCode":"R01-002-003-001-01","isFull":true,"stockStatus":5,"materialweight":7.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 16:57:26","modifier":null,"modifyDate":"2024-11-15 16:57:28"},{"id":131,"palletCode":"FK240806D1#17","materialType":0,"locationCode":"R02-004-006-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 16:47:55","modifier":null,"modifyDate":"2024-11-15 16:51:05"},{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":null,"modifyDate":"2024-11-15 10:59:10"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"}],"summary":null}
--------------------------------
2024/11/17 12:59:13|
响应数据 -  响应数据类型:System.String
{"total":0,"rows":[],"summary":null}
--------------------------------
2024/11/17 12:59:14|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 12:59:14|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getMenu","QueryString":"","BodyData":"{}"}
--------------------------------
2024/11/17 12:59:14|
响应数据 -  响应数据类型:System.String
[{"id":29,"parentId":20,"name":"库存信息","menuType":0,"orderNo":10000},{"id":25,"parentId":19,"name":"入库单","menuType":0,"orderNo":10000},{"id":21,"parentId":17,"name":"仓库信息","menuType":0,"orderNo":10000},{"id":17,"parentId":0,"name":"基础管理","menuType":0,"orderNo":10000},{"id":30,"parentId":20,"name":"库存信息明细","menuType":0,"orderNo":9000},{"id":32,"parentId":20,"name":"库存视图","menuType":0,"orderNo":9000},{"id":26,"parentId":19,"name":"入库单明细","menuType":0,"orderNo":9000},{"id":22,"parentId":17,"name":"区域信息","menuType":0,"orderNo":9000},{"id":12,"parentId":0,"name":"任务管理","menuType":0,"orderNo":9000},{"id":31,"parentId":17,"name":"巷道信息","menuType":0,"orderNo":8500},{"id":27,"parentId":19,"name":"出库单","menuType":0,"orderNo":8000},{"id":23,"parentId":17,"name":"货位信息","menuType":0,"orderNo":8000},{"id":19,"parentId":0,"name":"单据管理","menuType":0,"orderNo":8000},{"id":28,"parentId":19,"name":"出库单明细","menuType":0,"orderNo":7000},{"id":24,"parentId":17,"name":"物料信息","menuType":0,"orderNo":7000},{"id":20,"parentId":0,"name":"库存管理","menuType":0,"orderNo":7000},{"id":1,"parentId":0,"name":"用户管理","menuType":0,"orderNo":4000},{"id":2,"parentId":1,"name":"用户管理","menuType":0,"orderNo":2000},{"id":3,"parentId":1,"name":"权限管理","menuType":0,"orderNo":1000},{"id":4,"parentId":1,"name":"角色管理","menuType":0,"orderNo":900},{"id":13,"parentId":12,"name":"任务信息","menuType":0,"orderNo":500},{"id":8,"parentId":0,"name":"日志管理","menuType":0,"orderNo":500},{"id":6,"parentId":5,"name":"菜单设置","menuType":0,"orderNo":10},{"id":7,"parentId":5,"name":"下拉框绑定设置","menuType":0,"orderNo":10},{"id":9,"parentId":8,"name":"接口日志","menuType":0,"orderNo":0},{"id":5,"parentId":0,"name":"系统设置","menuType":0,"orderNo":0},{"id":41,"parentId":0,"name":"入库订单","menuType":1,"orderNo":0}]
--------------------------------
2024/11/17 12:59:16|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeItem","QueryString":"?menuId=20","BodyData":""}
--------------------------------
2024/11/17 12:59:16|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeItem","QueryString":"?menuId=20","BodyData":"{}"}
--------------------------------
2024/11/17 12:59:16|
响应数据 -  响应数据类型:System.String
{"menuId":20,"parentId":0,"menuName":"库存管理","url":"","auth":"[{\"text\":\"查询\",\"value\":\"Search\"}]","orderNo":7000,"icon":"el-icon-discount","enable":1,"menuType":0,"createDate":"2024-10-30 09:41:25","creater":"admin","tableName":"/","modifyDate":"2024-09-04 10:53:10"}
--------------------------------
2024/11/17 12:59:16|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeItem","QueryString":"?menuId=29","BodyData":""}
--------------------------------
2024/11/17 12:59:16|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeItem","QueryString":"?menuId=29","BodyData":"{}"}
--------------------------------
2024/11/17 12:59:17|
响应数据 -  响应数据类型:System.String
{"menuId":29,"parentId":20,"menuName":"库存信息","url":"/stockInfo","auth":"[{\"text\":\"查询\",\"value\":\"Search\"},{\"text\":\"新建\",\"value\":\"Add\"},{\"text\":\"删除\",\"value\":\"Delete\"},{\"text\":\"编辑\",\"value\":\"Update\"},{\"text\":\"导入\",\"value\":\"Import\"},{\"text\":\"导出\",\"value\":\"Export\"},{\"text\":\"手动出库\",\"value\":\"HandOutbound\"}]","orderNo":10000,"icon":"","enable":1,"menuType":0,"createDate":"2024-10-30 09:41:25","creater":"admin","tableName":"Dt_StockInfo","modifyDate":"2024-11-06 11:33:34"}
--------------------------------
2024/11/17 12:59:44|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/save","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 12:59:44|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/save","QueryString":"","BodyData":"{\"menuId\":29,\"parentId\":20,\"menuName\":\"库存信息\",\"tableName\":\"Dt_StockInfo\",\"url\":\"/stockInfo\",\"auth\":\"[{\\\"text\\\":\\\"查询\\\",\\\"value\\\":\\\"Search\\\"},{\\\"text\\\":\\\"新建\\\",\\\"value\\\":\\\"Add\\\"},{\\\"text\\\":\\\"删除\\\",\\\"value\\\":\\\"Delete\\\"},{\\\"text\\\":\\\"编辑\\\",\\\"value\\\":\\\"Update\\\"},{\\\"text\\\":\\\"导入\\\",\\\"value\\\":\\\"Import\\\"},{\\\"text\\\":\\\"导出\\\",\\\"value\\\":\\\"Export\\\"},{\\\"text\\\":\\\"手动出库\\\",\\\"value\\\":\\\"HandOutbound\\\"},{\\\"text\\\":\\\"人工出库库存\\\",\\\"value\\\":\\\"HandOutboundt\\\"}]\",\"icon\":\"\",\"orderNo\":10000,\"enable\":1,\"menuType\":0}"}
--------------------------------
2024/11/17 12:59:45|
响应数据 -  响应数据类型:System.String
{"status":true,"code":0,"message":"保存成功","data":{"menuId":29,"menuName":"库存信息","auth":"[{\"text\":\"查询\",\"value\":\"Search\"},{\"text\":\"新建\",\"value\":\"Add\"},{\"text\":\"删除\",\"value\":\"Delete\"},{\"text\":\"编辑\",\"value\":\"Update\"},{\"text\":\"导入\",\"value\":\"Import\"},{\"text\":\"导出\",\"value\":\"Export\"},{\"text\":\"手动出库\",\"value\":\"HandOutbound\"},{\"text\":\"人工出库库存\",\"value\":\"HandOutboundt\"}]","icon":"","description":null,"enable":1,"tableName":"Dt_StockInfo","parentId":20,"url":"/stockInfo","orderNo":10000,"menuType":0,"creater":null,"createDate":"2024-11-17 12:59:44","modifier":"admin","modifyDate":"2024-11-17 12:59:45"},"devMessage":null}
--------------------------------
2024/11/17 12:59:47|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 12:59:47|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 12:59:47|
响应数据 -  响应数据类型:System.String
[{"id":29,"name":"库存信息","url":"/stockInfo","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfo","permission":["Search","Add","Delete","Update","Import","Export","HandOutbound","HandOutboundt"]},{"id":25,"name":"入库单","url":"/inboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_InboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-notebook-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":30,"name":"库存信息明细","url":"stockInfoDetail","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfoDetail","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":32,"name":"库存视图","url":"/stockView","parentId":20,"icon":"","enable":1,"tableName":"StockView","permission":["Search"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-shopping-bag-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":27,"name":"出库单","url":"/outboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_OutboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":23,"name":"货位信息","url":"/locationInfo","parentId":17,"icon":"","enable":1,"tableName":"Dt_LocationInfo","permission":["Search","Update","Export","Enable","Disable"]},{"id":19,"name":"单据管理","url":"","parentId":0,"icon":"el-icon-document","enable":1,"tableName":"/","permission":["Search"]},{"id":20,"name":"库存管理","url":"","parentId":0,"icon":"el-icon-discount","enable":1,"tableName":"/","permission":["Search"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":null,"enable":1,"tableName":"Dt_Task","permission":["Search","Export"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]
--------------------------------
2024/11/17 12:59:48|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 12:59:48|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getMenu","QueryString":"","BodyData":"{}"}
--------------------------------
2024/11/17 12:59:48|
响应数据 -  响应数据类型:System.String
[{"id":29,"parentId":20,"name":"库存信息","menuType":0,"orderNo":10000},{"id":25,"parentId":19,"name":"入库单","menuType":0,"orderNo":10000},{"id":21,"parentId":17,"name":"仓库信息","menuType":0,"orderNo":10000},{"id":17,"parentId":0,"name":"基础管理","menuType":0,"orderNo":10000},{"id":30,"parentId":20,"name":"库存信息明细","menuType":0,"orderNo":9000},{"id":32,"parentId":20,"name":"库存视图","menuType":0,"orderNo":9000},{"id":26,"parentId":19,"name":"入库单明细","menuType":0,"orderNo":9000},{"id":22,"parentId":17,"name":"区域信息","menuType":0,"orderNo":9000},{"id":12,"parentId":0,"name":"任务管理","menuType":0,"orderNo":9000},{"id":31,"parentId":17,"name":"巷道信息","menuType":0,"orderNo":8500},{"id":27,"parentId":19,"name":"出库单","menuType":0,"orderNo":8000},{"id":23,"parentId":17,"name":"货位信息","menuType":0,"orderNo":8000},{"id":19,"parentId":0,"name":"单据管理","menuType":0,"orderNo":8000},{"id":28,"parentId":19,"name":"出库单明细","menuType":0,"orderNo":7000},{"id":24,"parentId":17,"name":"物料信息","menuType":0,"orderNo":7000},{"id":20,"parentId":0,"name":"库存管理","menuType":0,"orderNo":7000},{"id":1,"parentId":0,"name":"用户管理","menuType":0,"orderNo":4000},{"id":2,"parentId":1,"name":"用户管理","menuType":0,"orderNo":2000},{"id":3,"parentId":1,"name":"权限管理","menuType":0,"orderNo":1000},{"id":4,"parentId":1,"name":"角色管理","menuType":0,"orderNo":900},{"id":13,"parentId":12,"name":"任务信息","menuType":0,"orderNo":500},{"id":8,"parentId":0,"name":"日志管理","menuType":0,"orderNo":500},{"id":6,"parentId":5,"name":"菜单设置","menuType":0,"orderNo":10},{"id":7,"parentId":5,"name":"下拉框绑定设置","menuType":0,"orderNo":10},{"id":9,"parentId":8,"name":"接口日志","menuType":0,"orderNo":0},{"id":5,"parentId":0,"name":"系统设置","menuType":0,"orderNo":0},{"id":41,"parentId":0,"name":"入库订单","menuType":1,"orderNo":0}]
--------------------------------
2024/11/17 12:59:50|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 12:59:50|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 12:59:50|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"stockStatusEmun\",\"inventoryMaterialType\",\"yesno\"]"}
--------------------------------
2024/11/17 12:59:50|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 12:59:50|
响应数据 -  响应数据类型:System.String
[{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"yesno","config":null,"data":[{"key":"true","value":"是"},{"key":"false","value":"否"}]},{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/17 12:59:50|
响应数据 -  响应数据类型:System.String
{"total":49,"rows":[{"id":134,"palletCode":"FK240806D1#13","materialType":1,"locationCode":"R01-001-004-001-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-16 10:24:12","modifier":"admin","modifyDate":"2024-11-16 11:48:08"},{"id":133,"palletCode":"KTP1115165738","materialType":0,"locationCode":"R01-002-003-001-01","isFull":true,"stockStatus":5,"materialweight":7.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 16:57:26","modifier":null,"modifyDate":"2024-11-15 16:57:28"},{"id":131,"palletCode":"FK240806D1#17","materialType":0,"locationCode":"R02-004-006-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 16:47:55","modifier":null,"modifyDate":"2024-11-15 16:51:05"},{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":null,"modifyDate":"2024-11-15 10:59:10"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"}],"summary":null}
--------------------------------
2024/11/17 12:59:53|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 12:59:53|
响应数据 -  响应数据类型:System.String
{"total":49,"rows":[{"id":134,"palletCode":"FK240806D1#13","materialType":1,"locationCode":"R01-001-004-001-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-16 10:24:12","modifier":"admin","modifyDate":"2024-11-16 11:48:08"},{"id":133,"palletCode":"KTP1115165738","materialType":0,"locationCode":"R01-002-003-001-01","isFull":true,"stockStatus":5,"materialweight":7.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 16:57:26","modifier":null,"modifyDate":"2024-11-15 16:57:28"},{"id":131,"palletCode":"FK240806D1#17","materialType":0,"locationCode":"R02-004-006-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 16:47:55","modifier":null,"modifyDate":"2024-11-15 16:51:05"},{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":null,"modifyDate":"2024-11-15 10:59:10"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"}],"summary":null}
--------------------------------
2024/11/17 12:59:56|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutboundDeleteinventory","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 12:59:56|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutboundDeleteinventory","QueryString":"","BodyData":"{\"DelKeys\":[\"FK240806D1#13\"],\"Extra\":true}"}
--------------------------------
2024/11/17 12:59:57|
响应数据 -  响应数据类型:System.String
{"status":false,"code":0,"message":"出库失败,该库存信息不可进行出库","data":null,"devMessage":null}
--------------------------------
2024/11/17 13:00:35|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutboundDeleteinventory","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:00:35|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutboundDeleteinventory","QueryString":"","BodyData":"{\"DelKeys\":[\"FK240806D1#13\"],\"Extra\":true}"}
--------------------------------
2024/11/17 13:00:48|
响应数据 -  响应数据类型:System.String
{"status":true,"code":0,"message":null,"data":null,"devMessage":null}
--------------------------------
2024/11/17 13:00:48|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:00:48|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 13:00:48|
响应数据 -  响应数据类型:System.String
{"total":48,"rows":[{"id":133,"palletCode":"KTP1115165738","materialType":0,"locationCode":"R01-002-003-001-01","isFull":true,"stockStatus":5,"materialweight":7.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 16:57:26","modifier":null,"modifyDate":"2024-11-15 16:57:28"},{"id":131,"palletCode":"FK240806D1#17","materialType":0,"locationCode":"R02-004-006-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 16:47:55","modifier":null,"modifyDate":"2024-11-15 16:51:05"},{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":null,"modifyDate":"2024-11-15 10:59:10"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"}],"summary":null}
--------------------------------
2024/11/17 13:00:51|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 13:00:51|
响应数据 -  响应数据类型:System.String
{"total":48,"rows":[{"id":133,"palletCode":"KTP1115165738","materialType":0,"locationCode":"R01-002-003-001-01","isFull":true,"stockStatus":5,"materialweight":7.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 16:57:26","modifier":null,"modifyDate":"2024-11-15 16:57:28"},{"id":131,"palletCode":"FK240806D1#17","materialType":0,"locationCode":"R02-004-006-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 16:47:55","modifier":null,"modifyDate":"2024-11-15 16:51:05"},{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":null,"modifyDate":"2024-11-15 10:59:10"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"}],"summary":null}
--------------------------------
2024/11/17 13:12:02|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutboundDeleteinventory","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:12:03|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutboundDeleteinventory","QueryString":"","BodyData":"{\"DelKeys\":[\"KTP1115165738\"],\"Extra\":true}"}
--------------------------------
2024/11/17 13:13:15|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutboundDeleteinventory","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:13:15|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutboundDeleteinventory","QueryString":"","BodyData":"{\"DelKeys\":[\"KTP1115165738\"],\"Extra\":true}"}
--------------------------------
2024/11/17 13:13:29|
响应数据 -  响应数据类型:System.String
{"status":false,"code":0,"message":"手动出库信息失败,报错信息:Non-static method requires a target.","data":null,"devMessage":null}
--------------------------------
2024/11/17 13:13:35|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutboundDeleteinventory","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:13:35|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutboundDeleteinventory","QueryString":"","BodyData":"{\"DelKeys\":[\"KTP1115165738\"],\"Extra\":true}"}
--------------------------------
2024/11/17 13:13:39|
响应数据 -  响应数据类型:System.String
{"status":false,"code":0,"message":"手动出库信息失败,报错信息:Non-static method requires a target.","data":null,"devMessage":null}
--------------------------------
2024/11/17 13:13:50|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutboundDeleteinventory","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:13:50|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutboundDeleteinventory","QueryString":"","BodyData":"{\"DelKeys\":[\"KTP1115165738\"],\"Extra\":true}"}
--------------------------------
2024/11/17 13:15:58|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutboundDeleteinventory","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:15:58|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutboundDeleteinventory","QueryString":"","BodyData":"{\"DelKeys\":[\"KTP1115165738\"],\"Extra\":true}"}
--------------------------------
2024/11/17 13:16:11|
响应数据 -  响应数据类型:System.String
{"status":false,"code":0,"message":"手动出库信息失败,报错信息:Non-static method requires a target.","data":null,"devMessage":null}
--------------------------------
2024/11/17 13:16:29|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutboundDeleteinventory","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:16:29|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutboundDeleteinventory","QueryString":"","BodyData":"{\"DelKeys\":[\"KTP1115165738\"],\"Extra\":true}"}
--------------------------------
2024/11/17 13:18:01|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutboundDeleteinventory","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:18:01|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutboundDeleteinventory","QueryString":"","BodyData":"{\"DelKeys\":[\"KTP1115165738\"],\"Extra\":true}"}
--------------------------------
2024/11/17 13:20:12|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutboundDeleteinventory","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:20:12|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutboundDeleteinventory","QueryString":"","BodyData":"{\"DelKeys\":[\"KTP1115165738\"],\"Extra\":true}"}
--------------------------------
2024/11/17 13:20:26|
响应数据 -  响应数据类型:System.String
{"status":true,"code":0,"message":null,"data":null,"devMessage":null}
--------------------------------
2024/11/17 13:20:26|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:20:26|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 13:20:26|
响应数据 -  响应数据类型:System.String
{"total":47,"rows":[{"id":131,"palletCode":"FK240806D1#17","materialType":0,"locationCode":"R02-004-006-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 16:47:55","modifier":null,"modifyDate":"2024-11-15 16:51:05"},{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":null,"modifyDate":"2024-11-15 10:59:10"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"}],"summary":null}
--------------------------------
2024/11/17 13:23:50|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutboundDeleteinventory","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:23:50|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutboundDeleteinventory","QueryString":"","BodyData":"{\"DelKeys\":[\"FK240806D1#17\"],\"Extra\":true}"}
--------------------------------
2024/11/17 13:24:43|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutboundDeleteinventory","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:24:43|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutboundDeleteinventory","QueryString":"","BodyData":"{\"DelKeys\":[\"FK240806D1#17\"],\"Extra\":true}"}
--------------------------------
2024/11/17 13:24:58|
响应数据 -  响应数据类型:System.String
{"status":true,"code":0,"message":null,"data":null,"devMessage":null}
--------------------------------
2024/11/17 13:24:58|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:24:58|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 13:24:58|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":null,"modifyDate":"2024-11-15 10:59:10"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/17 13:25:01|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/Export","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:25:01|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/Export","QueryString":"","BodyData":"{\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 13:25:02|
响应数据 -  响应数据类型:System.String
PK!kqY�H��3[Content_Types].xml���J1�_e�U��D���U�>���vC�̴�oo6+"��z�$����3_�k����Њ�����ƆM+�֏�[�C0�b�V��r1_RSf��gNwJ���ɘ0����kިz T����10���!�{�`�Y��u+ %g5p�R�L4�"���]�an�    �� Dft��z���4��4$<�����"b�Y�&�/#�RF0�#�w�V���1�2?�/����G�����j"����*��evA�C:G1*���!�y�\��<�φoU�~�    PK�H��3PK!kqY��닮' _rels/.rels����0 �WYz��c ��1�j��V�e�
o�b<xl���Ӳ^�=ч���"ˁ�U�k����,Di��Ȣ��Uy�I�t��� �1��A�8ː�C�6�Y�4zÝT�4��y~��Ӏ��-�7�֮�����gR�m�Q�H����e�/��h�
�*���� PK��닮'PK!kqY�;C��Xxl/workbook.xml�P;N�0��5=�@�P�d hVB���8㍵�';,7���+гH�f��
8ElI5o��}4?��j��x@��B ��M� ��dN.`�T[��=�F��K��K�/���C��z �3�^���Z�1V���cH�(�%�S)'���&��xŞQ��CL�MV^�M5�����%�UȦ�G�A:O���o�������� ��j�@pi3�U��h4��r�������&\���՜��PK�;C��XPK!kqY�b���4xl/_rels/workbook.xml.rels���j�0 �_��8�`�Q��1�@�J�������k6VR(c���d��>���kԉ2�1h�]:����+( ���D ��rKJYa�'V�؀IoZ��4"W1Q(/m�#Jis��#v�u����L�q��5��S���c���ޣ�)ȝ}��ȞH
sGb�:b�]��PAߗY<R�e�_^M~����1��I.��[�ǿ2��ګ PK�b���4PK!kqY���å Ixl/worksheets/sheet1.xml���r���_E���3��뒴���x�Q�VR�\+e�VU$m�>[.�Hy�$M`�4�@_ȶ��xf4������O���}[�7ϫ�˙=7���������������/y����������r�=k�o�����v��a>��?-_�6���[���Z��m�����W����ˏ����˷������ݶ=����}3ۻM�ڼ��w�Sx}�[��=�ͮ.v��m}u���}y~[��>�{���?_�����ͯ.�G��s{6ݧ=[//g?��>�4;�?���7��u�߫���~y�����P�iw�����w__�_}��|��mO!��ܯ^6��g��o�{��c������嬜[o�k��_7����߶����;ts�n6�S6%8cS�)g�?�S�ߝ'�]ǯ��?�ޠ�¡C8��C��Ǟ�b|�!P�&R �� ��<�Jv�uj�|�O;�r�VN�f͏�`N�x�H�Lr    ��m��n�T�L'�N<�ydi�Q����ݏ�ǻ����z��l��Z��?w=v���M��oW�b���zP4���b�
W+>��j�5*|����P+���X+>�"Պ_P�k� *J��u��ab,Կ    ��To�>�y;���t��t�>f�&>�?Z�lC���Н�ѵ a��ix>���ok6���%n?{BlW/�-Q
�6#o%��ŖTl r�t̙�9;6� ᩲi� %g�;��ׂ��LJ���ok�3av!Ĝm�޳c�J┢+%�<�?���Y ��sec��U    �;�Ƶp�W�����,�-7��}�_=�לG�|��|(�-.�b��H��H�j$�|n�)_Z�2��|iA    �DPFB9��`ͧ|��B{I���!�Q���9�,��)�*evMĘ��QIY�Ύp�H9*)+G��y�QH9��E4������x#ٱɜ�1�*f�)��9��;)ˊН��(���s_Vnks��>d��0�-��&9�ޅ"眏9�*g�#�d �/�Y��؝_�\�r�J���ok�sƜ�/���<gI����`�W9�c�ep���s�W�E��Bw&�F    �\���2�ks��L �η���e��O�c���%3��P�`V� V�I�/��Ү�d��%w�A31qA}{Q#@c|j��-O�b`�$V��`�����ĭ����!q{R�\m�)����l�Țm{��Errj,���XY@�/��#�P�j��'��儨G�<Im��ƶ�.q�z��@i+�4�3G*#^*+ � </��3װ�j�#��Hg�R?c˟&�lF����i+�4��"�y�9��d�����a� �*z#�C��Z�"�&��?vk���i+�4���"�y��A�\0�;�6���U#d>8�@�J�s��iwm3yO���N��XD7~�gQY@��    �i5��!�    �i�T"G�>r��[�{��~?�"�y(��JPd'`��8�j *�C��*��,|(�ؑ�{��~3�"�y��Y� ��    Dj5$�!�    Pj�T"G�>��"�1`��Ԗ*s~��"�(��JP@'����j�*�C�'!���2o/[:����zHu��GOͱy<� U2�A �:<
� Ur��A'A���g^�sc��zJu��Gy�C� ��:�R%^@ F�Q��(Ur��O�TA�E�^)�hl��uV�j9�:d��+��0U2�T�`��O S%w��$L����G�u�=���R����!�^A�F��A�T�`��:�Ro$w��$�]�9���H�=���@���!�E^@�F��/��#��i*�C�'���E^ �!������!�E���JP?'���i*�C�'��n#�fw�8r��zu��si��p�JP?'���i*�C�'���En��8BC�PW(��8���SP���u�: @%w��$�]���ȎM�@]E�|WO��"�O�@��s�:�@�F��;d~�
�}�(�<�p=��
@����!�%���JP?'���i*�C�'���"w���-���*��[��c� 1^?+ �d�맠�rV�<r�6ɝğ�z�N��2��*�VBzK�����/��3��4��!�TPw�S�sΎ�Ԣ�?��O�1�!���@5�� `��$�?I�O�"?�?�>r������z�-PBzK�����A�T�`���[ @%w��$�]�>�P��5 �JCv+��#�e^?+��,��)h0q�?�F��Yr��Q�r}�!�n�\K|Onx��T��-Gt�'� m��d�s}�F�U#>�>)�'�^M$� ϭ(.�N�dhd���I��rBp������ �tN`O�سj��'�'E��YRw�Wx��ط���y2cKJ��TQ'OBl�E�� P8'�'i�Y5B�ȓfhK�$�E!�}�v
я]���I���+���םi;q^)� &�qg��O�N�B�9�jz?$.�}[fsi!��=xR�l�&"!���E�\0��9�;I�Ϊ"���T�ȣ#�r��4oEq+ �u|$q�s�����)?�ㅳr��K�p
|_H�Ϊ^����!R���x#HR�Cw�|����W�Ư�=[ᕳr��^9 &�Ag��O�No!�P�ۯ��A�On��^H�<��=t���8sz��Kg�� �t
L\cΪ����    ��ks�^��K���s�����W��o�x��/ j�z
�V��$��5�!�    ��I��og��e�V�T|���� ��7>�������^NсWNI��/~j�)�C�����p����qi�|{�{��CZ���/�ߠ��r�P:'0�ט�k�)�C䈑�;q^\�%m;26�ݬ�=p�!�񛂍h��^x�8E(���k��5��!o�Ȑ\Je�@<qI�~��׏q�갇N?6~ ����M� �Q���svz ;����;�� � ����N[{����FO�w��g�iy��\Z�����������PK���å IPK!kqYe:��� xl/styles.xml�TKn�0�
��V�l�
C��dѠ��Ȗ�(�?9
�� 7��ޠ�"�����
�G�i�@j�B>�{3����O��    ��6L�O/'QY���6�=4��� �n������x �-��T[*��T���QZ�[ݦ�Ӕ�ƑOg��U*���d/� �T/��C(,7������i��$�J�$�?�:y��3A� !�`�Y:�Y��A~�`o��    ��S�/��X�J͂J� ��!����:`�w`�"��rm7h�� ���T��:>��V�a:�3�b+�J�������8m�14k�>չ�TJ��f�U�p��F�]Q�7n�&rn�|�o��iA$��O�I���%�k?�L���*�G�&��j��0Ͼ����%���#���g� =�>�w�"7�9�u5y�[����<����`�x|���PKe:���PK!kqY�� xl/sharedStrings.xml���j1�_e����ͷb;�CH!v�Zت=d.�Gn�]7�>@����ݔB�E_&1�[T&Q5��h�����$��&M��bU�y6�!
�M�Y��������ٌ'y&�(��h�/
(4+�B���(*� ���0_�LE^櫔Ku��G�r%��X!�$"����YL�u&UZ� �u�Z�c3���þ����������O!��Fι��'��e-�,�r�ʴq��h�$�ѱ̧Wc�庀]�x�������:z"$��ڣ�������y���m~��|���~�}�y����͗ݧ����0�E����fD��j�K}��_�>~��8;���=    q$9�\`�ԇ2J�8VX�UQ��Nk�. ��Ȍ�Z�N�&�G�`}�@Ub�����J��Ͼ���uv�:6�e�^�[ ���)�m;N �n�w`k��cj�z�=;NM�]�1�q�G�'n1�ƙ�V/M8���n�w<p�u{�����=p��1���1?��u���R��\njm�8�:fl���1c'���8q�u��Ɖ�c�6Nps,��]��y��1`�+�֑�mvX�:��8����Smo�8]�n{au��Y�m�ӵ����@�2M�-� 1hc��N���<_:U5�<�y�S<�y�y,t��5<R���PK�� PK-!kqY�H��3[Content_Types].xmlPK-!kqY��닮' Y_rels/.relsPK-!kqY�;C��X@xl/workbook.xmlPK-!kqY�b���4exl/_rels/workbook.xml.relsPK-!kqY���å I�xl/worksheets/sheet1.xmlPK-!kqYe:��� nxl/styles.xmlPK-!kqY�� _xl/sharedStrings.xmlPK�D
--------------------------------
2024/11/17 13:25:12|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfoDetail/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:25:12|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:25:12|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"stockStatusEmun\"]"}
--------------------------------
2024/11/17 13:25:12|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfoDetail/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 13:25:12|
响应数据 -  响应数据类型:System.String
{"total":20,"rows":[{"id":64,"stockId":131,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#17","batchNo":"240806D1","serialNumber":"17","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-15 16:47:55","modifier":null,"modifyDate":"2024-11-15 16:51:05"},{"id":63,"stockId":130,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#12","batchNo":"240806D1","serialNumber":"12","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":62,"stockId":129,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#28","batchNo":"240806D1","serialNumber":"28","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":null,"modifyDate":"2024-11-15 10:59:10"},{"id":61,"stockId":127,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#21","batchNo":"240806D1","serialNumber":"21","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":60,"stockId":126,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#32","batchNo":"240806D1","serialNumber":"32","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":59,"stockId":124,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#01","batchNo":"240806D1","serialNumber":"01","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":58,"stockId":90,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#03","batchNo":"240806D1","serialNumber":"03","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 15:35:30","modifier":null,"modifyDate":"2024-11-13 15:37:58"},{"id":57,"stockId":89,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#05","batchNo":"240806D1","serialNumber":"05","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 15:31:50","modifier":null,"modifyDate":"2024-11-13 15:35:00"},{"id":56,"stockId":88,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#07","batchNo":"240806D1","serialNumber":"07","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:54:36","modifier":null,"modifyDate":"2024-11-13 15:32:51"},{"id":55,"stockId":87,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#09","batchNo":"240806D1","serialNumber":"09","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:52:14","modifier":null,"modifyDate":"2024-11-13 15:30:46"},{"id":54,"stockId":86,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#26","batchNo":"240806D1","serialNumber":"26","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:51:08","modifier":null,"modifyDate":"2024-11-13 15:28:53"},{"id":53,"stockId":85,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#19","batchNo":"240806D1","serialNumber":"19","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:47:22","modifier":null,"modifyDate":"2024-11-13 14:51:52"},{"id":52,"stockId":84,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#15","batchNo":"240806D1","serialNumber":"15","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:43:21","modifier":null,"modifyDate":"2024-11-13 14:48:08"},{"id":51,"stockId":83,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#11","batchNo":"240806D1","serialNumber":"11","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:18:39","modifier":null,"modifyDate":"2024-11-13 14:43:52"},{"id":50,"stockId":82,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#14","batchNo":"240806D1","serialNumber":"14","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:16:05","modifier":null,"modifyDate":"2024-11-13 14:21:42"},{"id":49,"stockId":81,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#25","batchNo":"240806D1","serialNumber":"25","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:15:17","modifier":null,"modifyDate":"2024-11-13 14:17:56"},{"id":47,"stockId":79,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#27","batchNo":"240806D1","serialNumber":"27","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:00:49","modifier":null,"modifyDate":"2024-11-13 14:10:08"},{"id":46,"stockId":18,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#18","batchNo":"240806D1","serialNumber":"18","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:00:00","modifier":null,"modifyDate":"2024-11-13 14:04:39"},{"id":45,"stockId":77,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#23","batchNo":"240806D1","serialNumber":"23","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 13:44:48","modifier":null,"modifyDate":"2024-11-13 13:49:34"},{"id":44,"stockId":76,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#31","batchNo":"240806D1","serialNumber":"31","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 12:16:36","modifier":null,"modifyDate":"2024-11-15 16:49:15"}],"summary":null}
--------------------------------
2024/11/17 13:25:13|
响应数据 -  响应数据类型:System.String
[{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/17 13:25:31|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/DownLoadTemplate","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:25:31|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/DownLoadTemplate","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:25:31|
响应数据 -  响应数据类型:System.String
PK/kqY�H��3[Content_Types].xml���J1�_e�U��D���U�>���vC�̴�oo6+"��z�$����3_�k����Њ�����ƆM+�֏�[�C0�b�V��r1_RSf��gNwJ���ɘ0����kިz T����10���!�{�`�Y��u+ %g5p�R�L4�"���]�an�    �� Dft��z���4��4$<�����"b�Y�&�/#�RF0�#�w�V���1�2?�/����G�����j"����*��evA�C:G1*���!�y�\��<�φoU�~�    PK�H��3PK/kqY��닮' _rels/.rels����0 �WYz��c ��1�j��V�e�
o�b<xl���Ӳ^�=ч���"ˁ�U�k����,Di��Ȣ��Uy�I�t��� �1��A�8ː�C�6�Y�4zÝT�4��y~��Ӏ��-�7�֮�����gR�m�Q�H����e�/��h�
�*���� PK��닮'PK/kqY�;C��Xxl/workbook.xml�P;N�0��5=�@�P�d hVB���8㍵�';,7���+гH�f��
8ElI5o��}4?��j��x@��B ��M� ��dN.`�T[��=�F��K��K�/���C��z �3�^���Z�1V���cH�(�%�S)'���&��xŞQ��CL�MV^�M5�����%�UȦ�G�A:O���o�������� ��j�@pi3�U��h4��r�������&\���՜��PK�;C��XPK/kqY�b���4xl/_rels/workbook.xml.rels���j�0 �_��8�`�Q��1�@�J�������k6VR(c���d��>���kԉ2�1h�]:����+( ���D ��rKJYa�'V�؀IoZ��4"W1Q(/m�#Jis��#v�u����L�q��5��S���c���ޣ�)ȝ}��ȞH
sGb�:b�]��PAߗY<R�e�_^M~����1��I.��[�ǿ2��ګ PK�b���4PK/kqY�5 �xl/worksheets/sheet1.xml���n�0�o�|�~#��e��J�&�� L@�l'i�m���Œ!    �*;1�<��ϟ?���«�2����5@&mR���6;���U��Px#V<���ʲDZ�:&ki���׉T]��X��)]�tW�FZB��J��Je+@��/^��4�tu�[�Iـ8�c�<�NVeC﹑�m��S�TTy#`Xqh���T�t�58�#p�Vw=��������V�����s�E����F�&�h��*��nh�-���њ�UB�F]6:�:y��C��"��l�bE�;!Y��#`�dx�� A�E������_ԓAO�zlz�ƾsj/؃�}6 & L<���'�l� β����=ϋL�n�q��C7  ���;�K2�zY��  ��<�\(<ָ�F��Z�`��te5�:V� �8�"��՟}�։L␳��;NMԽ\w
�S�L��} Ck�I��@S�Ӝ�Sb='Ȕ�<'�)��Δ�2'�)q3'�)q;'�)�uNS�[O�q��$��;I}�ջw\�i��F��~g u�S�aLR�����&� PK�5 �PK/kqYe:��� xl/styles.xml�TKn�0�
��V�l�
C��dѠ��Ȗ�(�?9
�� 7��ޠ�"�����
�G�i�@j�B>�{3����O��    ��6L�O/'QY���6�=4��� �n������x �-��T[*��T���QZ�[ݦ�Ӕ�ƑOg��U*���d/� �T/��C(,7������i��$�J�$�?�:y��3A� !�`�Y:�Y��A~�`o��    ��S�/��X�J͂J� ��!����:`�w`�"��rm7h�� ���T��:>��V�a:�3�b+�J�������8m�14k�>չ�TJ��f�U�p��F�]Q�7n�&rn�|�o��iA$��O�I���%�k?�L���*�G�&��j��0Ͼ����%���#���g� =�>�w�"7�9�u5y�[����<����`�x|���PKe:���PK/kqY㜽c�xl/sharedStrings.xmlu��J�@�_eٻݨ "Iz�
 
b� ɘ,���݉ڛ�rP��Փƃ/�} W�4��㟟�    ���b�h�4:⛃�3ԉI��"~2o�r�t
�h��g�8t���j���%9��D�ɩ���6�����Pb+vDRs��J�������ѯ�+dR<ICAq(�ՏsJ!�L�]r�V��-�5v` �d_n�ƕR]wJ&�O    �r�]��r��c;��H �ڨ��������m��Y?w�����}]6M?h�����    ��� PK㜽c�PK-/kqY�H��3[Content_Types].xmlPK-/kqY��닮' Y_rels/.relsPK-/kqY�;C��X@xl/workbook.xmlPK-/kqY�b���4exl/_rels/workbook.xml.relsPK-/kqY�5 ��xl/worksheets/sheet1.xmlPK-/kqYe:��� �xl/styles.xmlPK-/kqY㜽c��xl/sharedStrings.xmlPK�-
 
--------------------------------
2024/11/17 13:27:01|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/DownLoadTemplate","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:27:01|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/DownLoadTemplate","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:27:01|
响应数据 -  响应数据类型:System.String
PK`kqY�H��3[Content_Types].xml���J1�_e�U��D���U�>���vC�̴�oo6+"��z�$����3_�k����Њ�����ƆM+�֏�[�C0�b�V��r1_RSf��gNwJ���ɘ0����kިz T����10���!�{�`�Y��u+ %g5p�R�L4�"���]�an�    �� Dft��z���4��4$<�����"b�Y�&�/#�RF0�#�w�V���1�2?�/����G�����j"����*��evA�C:G1*���!�y�\��<�φoU�~�    PK�H��3PK`kqY��닮' _rels/.rels����0 �WYz��c ��1�j��V�e�
o�b<xl���Ӳ^�=ч���"ˁ�U�k����,Di��Ȣ��Uy�I�t��� �1��A�8ː�C�6�Y�4zÝT�4��y~��Ӏ��-�7�֮�����gR�m�Q�H����e�/��h�
�*���� PK��닮'PK`kqY�;C��Xxl/workbook.xml�P;N�0��5=�@�P�d hVB���8㍵�';,7���+гH�f��
8ElI5o��}4?��j��x@��B ��M� ��dN.`�T[��=�F��K��K�/���C��z �3�^���Z�1V���cH�(�%�S)'���&��xŞQ��CL�MV^�M5�����%�UȦ�G�A:O���o�������� ��j�@pi3�U��h4��r�������&\���՜��PK�;C��XPK`kqY�b���4xl/_rels/workbook.xml.rels���j�0 �_��8�`�Q��1�@�J�������k6VR(c���d��>���kԉ2�1h�]:����+( ���D ��rKJYa�'V�؀IoZ��4"W1Q(/m�#Jis��#v�u����L�q��5��S���c���ޣ�)ȝ}��ȞH
sGb�:b�]��PAߗY<R�e�_^M~����1��I.��[�ǿ2��ګ PK�b���4PK`kqY�5 �xl/worksheets/sheet1.xml���n�0�o�|�~#��e��J�&�� L@�l'i�m���Œ!    �*;1�<��ϟ?���«�2����5@&mR���6;���U��Px#V<���ʲDZ�:&ki���׉T]��X��)]�tW�FZB��J��Je+@��/^��4�tu�[�Iـ8�c�<�NVeC﹑�m��S�TTy#`Xqh���T�t�58�#p�Vw=��������V�����s�E����F�&�h��*��nh�-���њ�UB�F]6:�:y��C��"��l�bE�;!Y��#`�dx�� A�E������_ԓAO�zlz�ƾsj/؃�}6 & L<���'�l� β����=ϋL�n�q��C7  ���;�K2�zY��  ��<�\(<ָ�F��Z�`��te5�:V� �8�"��՟}�։L␳��;NMԽ\w
�S�L��} Ck�I��@S�Ӝ�Sb='Ȕ�<'�)��Δ�2'�)q3'�)q;'�)�uNS�[O�q��$��;I}�ջw\�i��F��~g u�S�aLR�����&� PK�5 �PK`kqYe:��� xl/styles.xml�TKn�0�
��V�l�
C��dѠ��Ȗ�(�?9
�� 7��ޠ�"�����
�G�i�@j�B>�{3����O��    ��6L�O/'QY���6�=4��� �n������x �-��T[*��T���QZ�[ݦ�Ӕ�ƑOg��U*���d/� �T/��C(,7������i��$�J�$�?�:y��3A� !�`�Y:�Y��A~�`o��    ��S�/��X�J͂J� ��!����:`�w`�"��rm7h�� ���T��:>��V�a:�3�b+�J�������8m�14k�>չ�TJ��f�U�p��F�]Q�7n�&rn�|�o��iA$��O�I���%�k?�L���*�G�&��j��0Ͼ����%���#���g� =�>�w�"7�9�u5y�[����<����`�x|���PKe:���PK`kqY㜽c�xl/sharedStrings.xmlu��J�@�_eٻݨ "Iz�
 
b� ɘ,���݉ڛ�rP��Փƃ/�} W�4��㟟�    ���b�h�4:⛃�3ԉI��"~2o�r�t
�h��g�8t���j���%9��D�ɩ���6�����Pb+vDRs��J�������ѯ�+dR<ICAq(�ՏsJ!�L�]r�V��-�5v` �d_n�ƕR]wJ&�O    �r�]��r��c;��H �ڨ��������m��Y?w�����}]6M?h�����    ��� PK㜽c�PK-`kqY�H��3[Content_Types].xmlPK-`kqY��닮' Y_rels/.relsPK-`kqY�;C��X@xl/workbook.xmlPK-`kqY�b���4exl/_rels/workbook.xml.relsPK-`kqY�5 ��xl/worksheets/sheet1.xmlPK-`kqYe:��� �xl/styles.xmlPK-`kqY㜽c��xl/sharedStrings.xmlPK�-
 
--------------------------------
2024/11/17 13:29:47|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:29:47|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:29:47|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"stockStatusEmun\",\"inventoryMaterialType\",\"yesno\"]"}
--------------------------------
2024/11/17 13:29:47|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 13:29:47|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":null,"modifyDate":"2024-11-15 10:59:10"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/17 13:29:47|
响应数据 -  响应数据类型:System.String
[{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"yesno","config":null,"data":[{"key":"true","value":"是"},{"key":"false","value":"否"}]},{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/17 13:30:11|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:30:11|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:30:11|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"stockStatusEmun\",\"inventoryMaterialType\",\"yesno\"]"}
--------------------------------
2024/11/17 13:30:11|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 13:30:11|
响应数据 -  响应数据类型:System.String
[{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"yesno","config":null,"data":[{"key":"true","value":"是"},{"key":"false","value":"否"}]},{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/17 13:30:11|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":null,"modifyDate":"2024-11-15 10:59:10"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/17 13:30:21|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/update","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:30:21|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/update","QueryString":"","BodyData":"{\"mainData\":{\"deviceCode\":\"\",\"deviceName\":\"\",\"deviceType\":\"\",\"deviceStatus\":\"\",\"deviceIp\":\"\",\"devicePort\":\"\",\"devicePlcType\":\"\",\"deviceRemark\":\"\",\"id\":\"130\",\"palletCode\":\"FK240806D1#12\",\"materialType\":\"0\",\"locationCode\":\"R02-003-005-002-01\",\"stockStatus\":\"6\"},\"detailData\":null,\"delKeys\":null}"}
--------------------------------
2024/11/17 13:30:21|
响应数据 -  响应数据类型:System.String
{"status":false,"code":0,"message":"重量为必须提交项","data":null,"devMessage":null}
--------------------------------
2024/11/17 13:30:25|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/update","QueryString":"","BodyData":"{\"mainData\":{\"deviceCode\":\"\",\"deviceName\":\"\",\"deviceType\":\"\",\"deviceStatus\":\"\",\"deviceIp\":\"\",\"devicePort\":\"\",\"devicePlcType\":\"\",\"deviceRemark\":\"\",\"id\":\"130\",\"palletCode\":\"FK240806D1#12\",\"materialType\":\"0\",\"locationCode\":\"R02-003-005-002-01\",\"stockStatus\":\"6\"},\"detailData\":null,\"delKeys\":null}"}
--------------------------------
2024/11/17 13:30:25|
响应数据 -  响应数据类型:System.String
{"status":false,"code":0,"message":"重量为必须提交项","data":null,"devMessage":null}
--------------------------------
2024/11/17 13:31:17|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:31:17|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:31:17|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"stockStatusEmun\",\"inventoryMaterialType\",\"yesno\"]"}
--------------------------------
2024/11/17 13:31:17|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 13:31:17|
响应数据 -  响应数据类型:System.String
[{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"yesno","config":null,"data":[{"key":"true","value":"是"},{"key":"false","value":"否"}]},{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/17 13:31:17|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":null,"modifyDate":"2024-11-15 10:59:10"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/17 13:31:21|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"stockStatusEmun\",\"inventoryMaterialType\",\"yesno\"]"}
--------------------------------
2024/11/17 13:31:21|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 13:31:21|
响应数据 -  响应数据类型:System.String
[{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"yesno","config":null,"data":[{"key":"true","value":"是"},{"key":"false","value":"否"}]},{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/17 13:31:21|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":null,"modifyDate":"2024-11-15 10:59:10"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/17 13:31:38|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/update","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:31:38|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/update","QueryString":"","BodyData":"{\"mainData\":{\"deviceCode\":\"\",\"deviceName\":\"\",\"deviceType\":\"\",\"deviceStatus\":\"\",\"deviceIp\":\"\",\"devicePort\":\"\",\"devicePlcType\":\"\",\"deviceRemark\":\"\",\"id\":\"130\",\"palletCode\":\"FK240806D1#12\",\"materialType\":\"0\",\"locationCode\":\"R02-003-005-002-01\",\"stockStatus\":\"6\",\"materialweight\":\"1\"},\"detailData\":null,\"delKeys\":null}"}
--------------------------------
2024/11/17 13:31:38|
响应数据 -  响应数据类型:System.String
{"status":true,"code":0,"message":null,"data":null,"devMessage":null}
--------------------------------
2024/11/17 13:31:38|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:31:38|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 13:31:38|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":6,"materialweight":1.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":null,"modifyDate":"2024-11-15 10:59:10"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/17 13:31:46|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/update","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:31:46|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/update","QueryString":"","BodyData":"{\"mainData\":{\"deviceCode\":\"\",\"deviceName\":\"\",\"deviceType\":\"\",\"deviceStatus\":\"\",\"deviceIp\":\"\",\"devicePort\":\"\",\"devicePlcType\":\"\",\"deviceRemark\":\"\",\"id\":\"130\",\"palletCode\":\"FK240806D1#12\",\"materialType\":\"0\",\"locationCode\":\"R02-003-005-002-01\",\"stockStatus\":\"5\",\"materialweight\":\"1\"},\"detailData\":null,\"delKeys\":null}"}
--------------------------------
2024/11/17 13:31:46|
响应数据 -  响应数据类型:System.String
{"status":true,"code":0,"message":null,"data":null,"devMessage":null}
--------------------------------
2024/11/17 13:31:46|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:31:46|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 13:31:46|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":null,"modifyDate":"2024-11-15 10:59:10"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/17 13:31:56|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:31:56|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 13:31:56|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"stockStatusEmun\",\"inventoryMaterialType\",\"yesno\"]"}
--------------------------------
2024/11/17 13:31:56|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 13:31:56|
响应数据 -  响应数据类型:System.String
[{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"yesno","config":null,"data":[{"key":"true","value":"是"},{"key":"false","value":"否"}]},{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/17 13:31:56|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":null,"modifyDate":"2024-11-15 10:59:10"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/17 22:43:20|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 22:43:20|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 22:43:20|
响应数据 -  响应数据类型:System.String
{"message":"授权未通过","status":false,"code":401}
--------------------------------
2024/11/17 22:43:20|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/User/getVierificationCode","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 22:43:20|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/User/getVierificationCode","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 22:43:22|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/User/login","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 22:43:22|
响应数据 -  响应数据类型:System.String
{"img":"iVBORw0KGgoAAAANSUhEUgAAAEgAAAAgCAYAAACxSj5wAAAABHNCSVQICAgIfAhkiAAAAlJJREFUaIHdWkuSgyAQbaycBu+TRXIYJ4chi9zHXKdnkcIBpNuHgpp5VVnIp+l+9gcwhpmZvgDPvqfbOM7aiGjWXhXcCM5a9RntQ+aUrFWKZgQx11W0Fkp1ggg6o6Gt4W2m8OFbsKe+q0LsCEJr5zBUDmmdaxVy1laVdyQMs17mfSn1QEuqMUaqmtj8x998HtbvRHL657YMEroS4QiMMSI5vl9bwzxMRI5vW9IR0dWTUrJvmhH07PvpJy0gITXeWTsbk7aFMiUi3MuKfZrRORtK21QP2orbOBJ/8tzUdn+/obnuZafQul+xOaGhkkfliNTaIoLWhFQOztqIFC3kpjGJh+SU1kItnLNkR4mdF0kpSYiW4HIJGFUGScTImJJchOCyPCQWWiI85zlIFVvyFAkaOZLeSxWtCwfWglTJ0BKfAw8801HLOeiLXBo3eRASXghqExMi1VEyrub1R9UknSMnV+o1PPueeOBZvtGSeM6zNG/LrSkhImjpjWguHZLjrJ0qmd+5oih9+zVSA5SDtghNPec2jlH/Ekl+91wzDyJA1pvOYqhyuTyA7HOI5FwUho972Y/MJKRKz2OhPSVemea2LhVWAnRhn4cQIu/X9+oy77HFE1Obmh41iD7k+OOF5EE8MLlXnMzD5y2neQ0Qka3vU9bc9dAPrlbru6TiK9czX27VhLezI6r/XWnvaoQAOemHmCrvwS8KRmsvz10TO2vPf2l/dEivurQvxdFGrkH0XayV8D1QYy3t03X0VUM7Ie/yR4Ezoibz3wRU938VYi3W/QUHz13OH8QLRQAAAABJRU5ErkJggg==","uuid":"eaaaa015-adb6-4232-9c6e-624523e9ee2e"}
--------------------------------
2024/11/17 22:43:22|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/User/login","QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\"}"}
--------------------------------
2024/11/17 22:43:23|
响应数据 -  响应数据类型:System.String
{"status":true,"code":0,"message":null,"data":{"token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTczMTg1NDYwMyIsIm5iZiI6IjE3MzE4NTQ2MDMiLCJleHAiOiIxNzMxODYxODAzIiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.NjWTRlMT4J3vWsRjvMwAtfQinZxN_VI0XeqQxGXgWQI","userName":"超级管理员","img":""},"devMessage":null}
--------------------------------
2024/11/17 22:43:23|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 22:43:23|
响应数据 -  响应数据类型:System.String
[{"id":29,"name":"库存信息","url":"/stockInfo","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfo","permission":["Search","Add","Delete","Update","Import","Export","HandOutbound","HandOutboundt"]},{"id":25,"name":"入库单","url":"/inboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_InboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-notebook-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":30,"name":"库存信息明细","url":"stockInfoDetail","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfoDetail","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":32,"name":"库存视图","url":"/stockView","parentId":20,"icon":"","enable":1,"tableName":"StockView","permission":["Search"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-shopping-bag-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":27,"name":"出库单","url":"/outboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_OutboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":23,"name":"货位信息","url":"/locationInfo","parentId":17,"icon":"","enable":1,"tableName":"Dt_LocationInfo","permission":["Search","Update","Export","Enable","Disable"]},{"id":19,"name":"单据管理","url":"","parentId":0,"icon":"el-icon-document","enable":1,"tableName":"/","permission":["Search"]},{"id":20,"name":"库存管理","url":"","parentId":0,"icon":"el-icon-discount","enable":1,"tableName":"/","permission":["Search"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":null,"enable":1,"tableName":"Dt_Task","permission":["Search","Export"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]
--------------------------------
2024/11/17 22:43:26|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 22:43:26|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 22:43:26|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"taskTypeEnum\",\"taskStatusEnum\"]"}
--------------------------------
2024/11/17 22:43:26|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 22:43:27|
响应数据 -  响应数据类型:System.String
[{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/17 22:43:35|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 22:43:35|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getMenu","QueryString":"","BodyData":"{}"}
--------------------------------
2024/11/17 22:43:35|
响应数据 -  响应数据类型:System.String
[{"id":29,"parentId":20,"name":"库存信息","menuType":0,"orderNo":10000},{"id":25,"parentId":19,"name":"入库单","menuType":0,"orderNo":10000},{"id":21,"parentId":17,"name":"仓库信息","menuType":0,"orderNo":10000},{"id":17,"parentId":0,"name":"基础管理","menuType":0,"orderNo":10000},{"id":30,"parentId":20,"name":"库存信息明细","menuType":0,"orderNo":9000},{"id":32,"parentId":20,"name":"库存视图","menuType":0,"orderNo":9000},{"id":26,"parentId":19,"name":"入库单明细","menuType":0,"orderNo":9000},{"id":22,"parentId":17,"name":"区域信息","menuType":0,"orderNo":9000},{"id":12,"parentId":0,"name":"任务管理","menuType":0,"orderNo":9000},{"id":31,"parentId":17,"name":"巷道信息","menuType":0,"orderNo":8500},{"id":27,"parentId":19,"name":"出库单","menuType":0,"orderNo":8000},{"id":23,"parentId":17,"name":"货位信息","menuType":0,"orderNo":8000},{"id":19,"parentId":0,"name":"单据管理","menuType":0,"orderNo":8000},{"id":28,"parentId":19,"name":"出库单明细","menuType":0,"orderNo":7000},{"id":24,"parentId":17,"name":"物料信息","menuType":0,"orderNo":7000},{"id":20,"parentId":0,"name":"库存管理","menuType":0,"orderNo":7000},{"id":1,"parentId":0,"name":"用户管理","menuType":0,"orderNo":4000},{"id":2,"parentId":1,"name":"用户管理","menuType":0,"orderNo":2000},{"id":3,"parentId":1,"name":"权限管理","menuType":0,"orderNo":1000},{"id":4,"parentId":1,"name":"角色管理","menuType":0,"orderNo":900},{"id":13,"parentId":12,"name":"任务信息","menuType":0,"orderNo":500},{"id":8,"parentId":0,"name":"日志管理","menuType":0,"orderNo":500},{"id":6,"parentId":5,"name":"菜单设置","menuType":0,"orderNo":10},{"id":7,"parentId":5,"name":"下拉框绑定设置","menuType":0,"orderNo":10},{"id":9,"parentId":8,"name":"接口日志","menuType":0,"orderNo":0},{"id":5,"parentId":0,"name":"系统设置","menuType":0,"orderNo":0},{"id":41,"parentId":0,"name":"入库订单","menuType":1,"orderNo":0}]
--------------------------------
2024/11/17 22:43:35|
响应数据 -  响应数据类型:System.String
{"total":0,"rows":[],"summary":null}
--------------------------------
2024/11/17 22:43:36|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeItem","QueryString":"?menuId=41","BodyData":""}
--------------------------------
2024/11/17 22:43:36|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeItem","QueryString":"?menuId=41","BodyData":"{}"}
--------------------------------
2024/11/17 22:43:36|
响应数据 -  响应数据类型:System.String
{"menuId":41,"parentId":0,"menuName":"入库订单","url":"/pages/materielGroup/inboundOrder","auth":"","orderNo":0,"icon":"","enable":1,"menuType":1,"createDate":"2024-10-30 09:41:25","creater":"admin","tableName":"/","modifyDate":"2024-09-30 16:34:47"}
--------------------------------
2024/11/17 22:43:41|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeItem","QueryString":"?menuId=12","BodyData":""}
--------------------------------
2024/11/17 22:43:41|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeItem","QueryString":"?menuId=12","BodyData":"{}"}
--------------------------------
2024/11/17 22:43:41|
响应数据 -  响应数据类型:System.String
{"menuId":12,"parentId":0,"menuName":"任务管理","url":"/","auth":"[{\"text\":\"查询\",\"value\":\"Search\"},{\"text\":\"新建\",\"value\":\"Add\"},{\"text\":\"删除\",\"value\":\"Delete\"},{\"text\":\"编辑\",\"value\":\"Update\"},{\"text\":\"导入\",\"value\":\"Import\"},{\"text\":\"导出\",\"value\":\"Export\"}]","orderNo":9000,"icon":"el-icon-shopping-bag-2","enable":1,"menuType":0,"createDate":"2024-10-30 09:41:25","creater":"admin","tableName":"/","modifyDate":"2024-09-04 10:44:31"}
--------------------------------
2024/11/17 22:43:42|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeItem","QueryString":"?menuId=13","BodyData":""}
--------------------------------
2024/11/17 22:43:42|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeItem","QueryString":"?menuId=13","BodyData":"{}"}
--------------------------------
2024/11/17 22:43:42|
响应数据 -  响应数据类型:System.String
{"menuId":13,"parentId":12,"menuName":"任务信息","url":"/task","auth":"[{\"text\":\"查询\",\"value\":\"Search\"},{\"text\":\"导出\",\"value\":\"Export\"}]","orderNo":500,"icon":null,"enable":1,"menuType":0,"createDate":"2024-10-30 09:41:25","creater":"admin","tableName":"Dt_Task","modifyDate":"2024-09-20 09:15:35"}
--------------------------------
2024/11/17 22:44:16|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/save","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 22:44:16|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/save","QueryString":"","BodyData":"{\"menuId\":13,\"parentId\":12,\"menuName\":\"任务信息\",\"tableName\":\"Dt_Task\",\"url\":\"/task\",\"auth\":\"[{\\\"text\\\":\\\"查询\\\",\\\"value\\\":\\\"Search\\\"},{\\\"text\\\":\\\"导出\\\",\\\"value\\\":\\\"Export\\\"},{\\\"text\\\":\\\"任务取消\\\",\\\"value\\\":\\\"TaskCancellation\\\"},{\\\"text\\\":\\\"任务完成\\\",\\\"value\\\":\\\"TaskHandCompleted\\\"}]\",\"icon\":null,\"orderNo\":500,\"enable\":1,\"menuType\":0}"}
--------------------------------
2024/11/17 22:44:17|
响应数据 -  响应数据类型:System.String
{"status":true,"code":0,"message":"保存成功","data":{"menuId":13,"menuName":"任务信息","auth":"[{\"text\":\"查询\",\"value\":\"Search\"},{\"text\":\"导出\",\"value\":\"Export\"},{\"text\":\"任务取消\",\"value\":\"TaskCancellation\"},{\"text\":\"任务完成\",\"value\":\"TaskHandCompleted\"}]","icon":null,"description":null,"enable":1,"tableName":"Dt_Task","parentId":12,"url":"/task","orderNo":500,"menuType":0,"creater":null,"createDate":"2024-11-17 22:44:16","modifier":"admin","modifyDate":"2024-11-17 22:44:17"},"devMessage":null}
--------------------------------
2024/11/17 22:44:19|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 22:44:19|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 22:44:19|
响应数据 -  响应数据类型:System.String
[{"id":29,"name":"库存信息","url":"/stockInfo","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfo","permission":["Search","Add","Delete","Update","Import","Export","HandOutbound","HandOutboundt"]},{"id":25,"name":"入库单","url":"/inboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_InboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-notebook-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":30,"name":"库存信息明细","url":"stockInfoDetail","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfoDetail","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":32,"name":"库存视图","url":"/stockView","parentId":20,"icon":"","enable":1,"tableName":"StockView","permission":["Search"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-shopping-bag-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":27,"name":"出库单","url":"/outboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_OutboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":23,"name":"货位信息","url":"/locationInfo","parentId":17,"icon":"","enable":1,"tableName":"Dt_LocationInfo","permission":["Search","Update","Export","Enable","Disable"]},{"id":19,"name":"单据管理","url":"","parentId":0,"icon":"el-icon-document","enable":1,"tableName":"/","permission":["Search"]},{"id":20,"name":"库存管理","url":"","parentId":0,"icon":"el-icon-discount","enable":1,"tableName":"/","permission":["Search"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":null,"enable":1,"tableName":"Dt_Task","permission":["Search","Export","TaskCancellation","TaskHandCompleted"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]
--------------------------------
2024/11/17 22:44:19|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 22:44:19|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getMenu","QueryString":"","BodyData":"{}"}
--------------------------------
2024/11/17 22:44:19|
响应数据 -  响应数据类型:System.String
[{"id":29,"parentId":20,"name":"库存信息","menuType":0,"orderNo":10000},{"id":25,"parentId":19,"name":"入库单","menuType":0,"orderNo":10000},{"id":21,"parentId":17,"name":"仓库信息","menuType":0,"orderNo":10000},{"id":17,"parentId":0,"name":"基础管理","menuType":0,"orderNo":10000},{"id":30,"parentId":20,"name":"库存信息明细","menuType":0,"orderNo":9000},{"id":32,"parentId":20,"name":"库存视图","menuType":0,"orderNo":9000},{"id":26,"parentId":19,"name":"入库单明细","menuType":0,"orderNo":9000},{"id":22,"parentId":17,"name":"区域信息","menuType":0,"orderNo":9000},{"id":12,"parentId":0,"name":"任务管理","menuType":0,"orderNo":9000},{"id":31,"parentId":17,"name":"巷道信息","menuType":0,"orderNo":8500},{"id":27,"parentId":19,"name":"出库单","menuType":0,"orderNo":8000},{"id":23,"parentId":17,"name":"货位信息","menuType":0,"orderNo":8000},{"id":19,"parentId":0,"name":"单据管理","menuType":0,"orderNo":8000},{"id":28,"parentId":19,"name":"出库单明细","menuType":0,"orderNo":7000},{"id":24,"parentId":17,"name":"物料信息","menuType":0,"orderNo":7000},{"id":20,"parentId":0,"name":"库存管理","menuType":0,"orderNo":7000},{"id":1,"parentId":0,"name":"用户管理","menuType":0,"orderNo":4000},{"id":2,"parentId":1,"name":"用户管理","menuType":0,"orderNo":2000},{"id":3,"parentId":1,"name":"权限管理","menuType":0,"orderNo":1000},{"id":4,"parentId":1,"name":"角色管理","menuType":0,"orderNo":900},{"id":13,"parentId":12,"name":"任务信息","menuType":0,"orderNo":500},{"id":8,"parentId":0,"name":"日志管理","menuType":0,"orderNo":500},{"id":6,"parentId":5,"name":"菜单设置","menuType":0,"orderNo":10},{"id":7,"parentId":5,"name":"下拉框绑定设置","menuType":0,"orderNo":10},{"id":9,"parentId":8,"name":"接口日志","menuType":0,"orderNo":0},{"id":5,"parentId":0,"name":"系统设置","menuType":0,"orderNo":0},{"id":41,"parentId":0,"name":"入库订单","menuType":1,"orderNo":0}]
--------------------------------
2024/11/17 22:44:21|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 22:44:21|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 22:44:21|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 22:44:21|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"taskTypeEnum\",\"taskStatusEnum\"]"}
--------------------------------
2024/11/17 22:44:21|
响应数据 -  响应数据类型:System.String
[{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]}]
--------------------------------
2024/11/17 22:44:21|
响应数据 -  响应数据类型:System.String
{"total":0,"rows":[],"summary":null}
--------------------------------
2024/11/17 22:45:46|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 22:45:46|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 22:45:46|
响应数据 -  响应数据类型:System.String
[{"id":29,"name":"库存信息","url":"/stockInfo","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfo","permission":["Search","Add","Delete","Update","Import","Export","HandOutbound","HandOutboundt"]},{"id":25,"name":"入库单","url":"/inboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_InboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-notebook-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":30,"name":"库存信息明细","url":"stockInfoDetail","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfoDetail","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":32,"name":"库存视图","url":"/stockView","parentId":20,"icon":"","enable":1,"tableName":"StockView","permission":["Search"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-shopping-bag-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":27,"name":"出库单","url":"/outboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_OutboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":23,"name":"货位信息","url":"/locationInfo","parentId":17,"icon":"","enable":1,"tableName":"Dt_LocationInfo","permission":["Search","Update","Export","Enable","Disable"]},{"id":19,"name":"单据管理","url":"","parentId":0,"icon":"el-icon-document","enable":1,"tableName":"/","permission":["Search"]},{"id":20,"name":"库存管理","url":"","parentId":0,"icon":"el-icon-discount","enable":1,"tableName":"/","permission":["Search"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":null,"enable":1,"tableName":"Dt_Task","permission":["Search","Export","TaskCancellation","TaskHandCompleted"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]
--------------------------------
2024/11/17 22:45:53|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 22:45:53|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 22:45:53|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 22:45:53|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"taskTypeEnum\",\"taskStatusEnum\"]"}
--------------------------------
2024/11/17 22:45:53|
响应数据 -  响应数据类型:System.String
[{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]}]
--------------------------------
2024/11/17 22:45:53|
响应数据 -  响应数据类型:System.String
{"total":0,"rows":[],"summary":null}
--------------------------------
2024/11/17 22:45:58|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"stockStatusEmun\",\"inventoryMaterialType\",\"yesno\"]"}
--------------------------------
2024/11/17 22:45:58|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 22:45:58|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 22:45:58|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":null,"modifyDate":"2024-11-15 10:59:10"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/17 22:45:58|
响应数据 -  响应数据类型:System.String
[{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"yesno","config":null,"data":[{"key":"true","value":"是"},{"key":"false","value":"否"}]},{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/17 22:46:02|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutbound","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 22:46:02|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutbound","QueryString":"","BodyData":"{\"DelKeys\":[\"FK240806D1#12\"],\"Extra\":true}"}
--------------------------------
2024/11/17 22:46:03|
响应数据 -  响应数据类型:System.String
{"status":false,"code":0,"message":"出库失败,该库存信息不可进行出库","data":null,"devMessage":null}
--------------------------------
2024/11/17 22:46:10|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutbound","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 22:46:10|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutbound","QueryString":"","BodyData":"{\"DelKeys\":[\"FK240806D1#28\"],\"Extra\":true}"}
--------------------------------
2024/11/17 22:46:11|
响应数据 -  响应数据类型:System.String
{"status":false,"code":0,"message":"出库失败,该库存信息不可进行出库","data":null,"devMessage":null}
--------------------------------
2024/11/17 22:48:02|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutbound","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 22:48:02|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutbound","QueryString":"","BodyData":"{\"DelKeys\":[\"FK240806D1#28\"],\"Extra\":true}"}
--------------------------------
2024/11/17 22:48:36|
响应数据 -  响应数据类型:System.String
{"status":false,"code":0,"message":"出库失败,报错信息:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:10.50.11.65]:8099 (10.50.11.65:8099)","data":null,"devMessage":null}
--------------------------------
2024/11/17 22:51:16|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 22:51:16|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 22:51:16|
响应数据 -  响应数据类型:System.String
{"total":0,"rows":[],"summary":null}
--------------------------------
2024/11/17 22:51:20|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutbound","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 22:51:20|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutbound","QueryString":"","BodyData":"{\"DelKeys\":[\"FK240806D1#28\"],\"Extra\":true}"}
--------------------------------
2024/11/17 22:51:44|
响应数据 -  响应数据类型:System.String
{"status":false,"code":0,"message":"出库失败,报错信息:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:10.50.11.65]:8099 (10.50.11.65:8099)","data":null,"devMessage":null}
--------------------------------
2024/11/17 22:54:44|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutbound","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 22:54:45|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutbound","QueryString":"","BodyData":"{\"DelKeys\":[\"FK240806D1#28\"],\"Extra\":true}"}
--------------------------------
2024/11/17 22:54:58|
响应数据 -  响应数据类型:System.String
{"status":true,"code":0,"message":null,"data":null,"devMessage":null}
--------------------------------
2024/11/17 22:54:58|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 22:54:58|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 22:54:58|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":7,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"","modifyDate":"2024-11-17 22:54:57"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/17 22:55:05|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 22:55:05|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 22:55:05|
响应数据 -  响应数据类型:System.String
{"total":1,"rows":[{"taskId":130,"taskNum":66,"palletCode":"FK240806D1#28","roadway":"2","taskType":100,"taskStatus":200,"sourceAddress":"R02-002-005-002-01","targetAddress":"R02-003-027-011-01","currentAddress":"R02-002-005-002-01","nextAddress":"R02-003-027-011-01","depth":1,"orderNo":null,"grade":1,"sourceKey":0,"dispatchertime":null,"remark":null,"palletCodequantity":0,"plcTo":0,"creater":"","createDate":"2024-11-17 22:54:58","modifier":null,"modifyDate":null}],"summary":null}
--------------------------------
2024/11/17 22:55:08|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=","BodyData":""}
--------------------------------
2024/11/17 22:55:08|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=","BodyData":""}
--------------------------------
2024/11/17 22:55:08|
响应数据 -  响应数据类型:System.String
{"status":false,"code":0,"message":"未找到任务号","data":null,"devMessage":null}
--------------------------------
2024/11/17 22:55:33|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=","BodyData":""}
--------------------------------
2024/11/17 22:55:33|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=","BodyData":""}
--------------------------------
2024/11/17 22:57:06|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 22:57:06|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 22:57:14|
响应数据 -  响应数据类型:System.String
{"total":1,"rows":[{"taskId":130,"taskNum":66,"palletCode":"FK240806D1#28","roadway":"2","taskType":100,"taskStatus":200,"sourceAddress":"R02-002-005-002-01","targetAddress":"R02-003-027-011-01","currentAddress":"R02-002-005-002-01","nextAddress":"R02-003-027-011-01","depth":1,"orderNo":null,"grade":1,"sourceKey":0,"dispatchertime":null,"remark":null,"palletCodequantity":0,"plcTo":0,"creater":"","createDate":"2024-11-17 22:54:58","modifier":null,"modifyDate":null}],"summary":null}
--------------------------------
2024/11/17 23:00:47|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=","BodyData":""}
--------------------------------
2024/11/17 23:00:47|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=","BodyData":""}
--------------------------------
2024/11/17 23:06:38|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 23:06:38|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 23:06:38|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 23:06:38|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 23:06:38|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 23:06:38|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 23:06:39|
响应数据 -  响应数据类型:System.String
{"status":false,"code":0,"message":"未找到任务号","data":null,"devMessage":null}
--------------------------------
2024/11/17 23:06:39|
响应数据 -  响应数据类型:System.String
[{"id":29,"name":"库存信息","url":"/stockInfo","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfo","permission":["Search","Add","Delete","Update","Import","Export","HandOutbound","HandOutboundt"]},{"id":25,"name":"入库单","url":"/inboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_InboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-notebook-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":30,"name":"库存信息明细","url":"stockInfoDetail","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfoDetail","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":32,"name":"库存视图","url":"/stockView","parentId":20,"icon":"","enable":1,"tableName":"StockView","permission":["Search"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-shopping-bag-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":27,"name":"出库单","url":"/outboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_OutboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":23,"name":"货位信息","url":"/locationInfo","parentId":17,"icon":"","enable":1,"tableName":"Dt_LocationInfo","permission":["Search","Update","Export","Enable","Disable"]},{"id":19,"name":"单据管理","url":"","parentId":0,"icon":"el-icon-document","enable":1,"tableName":"/","permission":["Search"]},{"id":20,"name":"库存管理","url":"","parentId":0,"icon":"el-icon-discount","enable":1,"tableName":"/","permission":["Search"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":null,"enable":1,"tableName":"Dt_Task","permission":["Search","Export","TaskCancellation","TaskHandCompleted"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]
--------------------------------
2024/11/17 23:06:40|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"taskTypeEnum\",\"taskStatusEnum\"]"}
--------------------------------
2024/11/17 23:06:40|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 23:06:40|
响应数据 -  响应数据类型:System.String
{"total":1,"rows":[{"taskId":130,"taskNum":66,"palletCode":"FK240806D1#28","roadway":"2","taskType":100,"taskStatus":200,"sourceAddress":"R02-002-005-002-01","targetAddress":"R02-003-027-011-01","currentAddress":"R02-002-005-002-01","nextAddress":"R02-003-027-011-01","depth":1,"orderNo":null,"grade":1,"sourceKey":0,"dispatchertime":null,"remark":null,"palletCodequantity":0,"plcTo":0,"creater":"","createDate":"2024-11-17 22:54:58","modifier":null,"modifyDate":null}],"summary":null}
--------------------------------
2024/11/17 23:06:40|
响应数据 -  响应数据类型:System.String
[{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/17 23:06:44|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=66","BodyData":""}
--------------------------------
2024/11/17 23:06:44|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=66","BodyData":""}
--------------------------------
2024/11/17 23:09:18|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=66","BodyData":""}
--------------------------------
2024/11/17 23:09:18|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=66","BodyData":""}
--------------------------------
2024/11/17 23:10:37|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 23:10:37|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 23:10:45|
响应数据 -  响应数据类型:System.String
{"total":1,"rows":[{"taskId":130,"taskNum":66,"palletCode":"FK240806D1#28","roadway":"2","taskType":100,"taskStatus":200,"sourceAddress":"R02-002-005-002-01","targetAddress":"R02-003-027-011-01","currentAddress":"R02-002-005-002-01","nextAddress":"R02-003-027-011-01","depth":1,"orderNo":null,"grade":1,"sourceKey":0,"dispatchertime":null,"remark":null,"palletCodequantity":0,"plcTo":0,"creater":"","createDate":"2024-11-17 22:54:58","modifier":null,"modifyDate":null}],"summary":null}
--------------------------------
2024/11/17 23:10:53|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=66","BodyData":""}
--------------------------------
2024/11/17 23:10:53|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=66","BodyData":""}
--------------------------------
2024/11/17 23:15:49|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 23:15:49|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 23:15:58|
响应数据 -  响应数据类型:System.String
{"total":1,"rows":[{"taskId":130,"taskNum":66,"palletCode":"FK240806D1#28","roadway":"2","taskType":100,"taskStatus":200,"sourceAddress":"R02-002-005-002-01","targetAddress":"R02-003-027-011-01","currentAddress":"R02-002-005-002-01","nextAddress":"R02-003-027-011-01","depth":1,"orderNo":null,"grade":1,"sourceKey":0,"dispatchertime":null,"remark":null,"palletCodequantity":0,"plcTo":0,"creater":"","createDate":"2024-11-17 22:54:58","modifier":null,"modifyDate":null}],"summary":null}
--------------------------------
2024/11/17 23:16:19|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=66","BodyData":""}
--------------------------------
2024/11/17 23:16:19|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=66","BodyData":""}
--------------------------------
2024/11/17 23:16:25|
响应数据 -  响应数据类型:System.String
{"status":false,"code":0,"message":"出库任务取消成功","data":null,"devMessage":null}
--------------------------------
2024/11/17 23:16:30|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 23:16:30|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 23:16:30|
响应数据 -  响应数据类型:System.String
{"total":1,"rows":[{"taskId":130,"taskNum":66,"palletCode":"FK240806D1#28","roadway":"2","taskType":100,"taskStatus":200,"sourceAddress":"R02-002-005-002-01","targetAddress":"R02-003-027-011-01","currentAddress":"R02-002-005-002-01","nextAddress":"R02-003-027-011-01","depth":1,"orderNo":null,"grade":1,"sourceKey":0,"dispatchertime":null,"remark":null,"palletCodequantity":0,"plcTo":0,"creater":"","createDate":"2024-11-17 22:54:58","modifier":null,"modifyDate":null}],"summary":null}
--------------------------------
2024/11/17 23:16:30|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 23:16:30|
响应数据 -  响应数据类型:System.String
{"total":1,"rows":[{"taskId":130,"taskNum":66,"palletCode":"FK240806D1#28","roadway":"2","taskType":100,"taskStatus":200,"sourceAddress":"R02-002-005-002-01","targetAddress":"R02-003-027-011-01","currentAddress":"R02-002-005-002-01","nextAddress":"R02-003-027-011-01","depth":1,"orderNo":null,"grade":1,"sourceKey":0,"dispatchertime":null,"remark":null,"palletCodequantity":0,"plcTo":0,"creater":"","createDate":"2024-11-17 22:54:58","modifier":null,"modifyDate":null}],"summary":null}
--------------------------------
2024/11/17 23:16:53|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 23:16:53|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 23:16:53|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 23:16:53|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"stockStatusEmun\",\"inventoryMaterialType\",\"yesno\"]"}
--------------------------------
2024/11/17 23:16:53|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-17 23:16:23"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/17 23:16:54|
响应数据 -  响应数据类型:System.String
[{"dicNo":"yesno","config":null,"data":[{"key":"true","value":"是"},{"key":"false","value":"否"}]},{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/17 23:16:54|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 23:16:55|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-17 23:16:23"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/17 23:16:55|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 23:16:55|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-17 23:16:23"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/17 23:16:58|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":2,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 23:16:58|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":100,"palletCode":"KTP1114120705","materialType":2,"locationCode":"R01-001-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 15:27:00"},{"id":96,"palletCode":"KTP1114120701","materialType":2,"locationCode":"R01-001-040-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 12:08:00"},{"id":90,"palletCode":"FK240806D1#03","materialType":0,"locationCode":"R02-002-004-002-01","isFull":true,"stockStatus":5,"materialweight":1.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-13 15:35:30","modifier":null,"modifyDate":"2024-11-13 15:37:58"},{"id":89,"palletCode":"FK240806D1#05","materialType":0,"locationCode":"R02-004-004-002-02","isFull":true,"stockStatus":5,"materialweight":1.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-13 15:31:50","modifier":null,"modifyDate":"2024-11-13 15:35:00"},{"id":88,"palletCode":"FK240806D1#07","materialType":0,"locationCode":"R02-001-004-002-02","isFull":true,"stockStatus":5,"materialweight":1.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-13 14:54:36","modifier":null,"modifyDate":"2024-11-13 15:32:51"},{"id":87,"palletCode":"FK240806D1#09","materialType":0,"locationCode":"R02-003-003-002-01","isFull":true,"stockStatus":5,"materialweight":1.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-13 14:52:14","modifier":null,"modifyDate":"2024-11-13 15:30:46"},{"id":86,"palletCode":"FK240806D1#26","materialType":0,"locationCode":"R02-002-003-002-01","isFull":true,"stockStatus":5,"materialweight":1.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-13 14:51:08","modifier":null,"modifyDate":"2024-11-13 15:28:53"},{"id":85,"palletCode":"FK240806D1#19","materialType":0,"locationCode":"R02-004-003-002-02","isFull":true,"stockStatus":5,"materialweight":1.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-13 14:47:22","modifier":null,"modifyDate":"2024-11-13 14:51:52"},{"id":84,"palletCode":"FK240806D1#15","materialType":0,"locationCode":"R02-001-003-002-02","isFull":true,"stockStatus":5,"materialweight":1.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-13 14:43:21","modifier":null,"modifyDate":"2024-11-13 14:48:08"},{"id":83,"palletCode":"FK240806D1#11","materialType":0,"locationCode":"R02-003-002-002-01","isFull":true,"stockStatus":5,"materialweight":1.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-13 14:18:39","modifier":null,"modifyDate":"2024-11-13 14:43:52"},{"id":82,"palletCode":"FK240806D1#14","materialType":0,"locationCode":"R02-002-002-002-01","isFull":true,"stockStatus":5,"materialweight":1.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-13 14:16:05","modifier":null,"modifyDate":"2024-11-13 14:21:42"},{"id":81,"palletCode":"FK240806D1#25","materialType":0,"locationCode":"R02-004-002-002-02","isFull":true,"stockStatus":5,"materialweight":1.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-13 14:15:17","modifier":null,"modifyDate":"2024-11-13 14:17:56"},{"id":79,"palletCode":"FK240806D1#27","materialType":0,"locationCode":"R02-001-002-002-02","isFull":true,"stockStatus":5,"materialweight":1.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-13 14:00:49","modifier":null,"modifyDate":"2024-11-13 14:10:08"},{"id":78,"palletCode":"FK240806D1#18","materialType":0,"locationCode":"R02-003-001-002-01","isFull":true,"stockStatus":5,"materialweight":1.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-13 14:00:00","modifier":null,"modifyDate":"2024-11-13 14:04:39"},{"id":77,"palletCode":"FK240806D1#23","materialType":0,"locationCode":"R02-001-005-002-02","isFull":true,"stockStatus":5,"materialweight":1.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-13 13:44:48","modifier":null,"modifyDate":"2024-11-13 13:49:34"},{"id":76,"palletCode":"FK240806D1#31","materialType":0,"locationCode":"R02-001-006-002-02","isFull":true,"stockStatus":5,"materialweight":1.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-13 12:16:36","modifier":null,"modifyDate":"2024-11-15 16:49:15"}],"summary":null}
--------------------------------
2024/11/17 23:17:00|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/17 23:17:00|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/17 23:17:00|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-17 23:16:23"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/18 9:20:24|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/18 9:20:24|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/18 9:20:25|
响应数据 -  响应数据类型:System.String
{"message":"授权未通过","status":false,"code":401}
--------------------------------
2024/11/18 9:20:25|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/User/getVierificationCode","QueryString":"","BodyData":""}
--------------------------------
2024/11/18 9:20:25|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/User/getVierificationCode","QueryString":"","BodyData":""}
--------------------------------
2024/11/18 9:20:27|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/User/login","QueryString":"","BodyData":""}
--------------------------------
2024/11/18 9:20:27|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/User/login","QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\"}"}
--------------------------------
2024/11/18 9:20:27|
响应数据 -  响应数据类型:System.String
{"img":"iVBORw0KGgoAAAANSUhEUgAAAEgAAAAgCAYAAACxSj5wAAAABHNCSVQICAgIfAhkiAAAAl9JREFUaIHtWUFywyAMFJ28Bv6TQ/KYTB5jH/qf+Dv0kOBiWQgJRJO03RlPxo5BYlkJgSFmmLzf/P4FlMaanoO2ofadHuT9W0ze5L26/YYgqnGNYSu8qmqLCrLAswZtadfFGCO8OeYQ4HS7Den7Y0ivFcwhmPY3ihwARFDuuPUgcrQMSOpP6T3quaTPaoi5q9vcx4s+IpMjFDGl8HDu225PFsAkSHzI71eCKEcxOQA6gkozxCkoJ2Zjt4Ekyn7JdomknYIoUlYnETml2c8dw0Y5JzE5k/cAAHBelrt9BUm1yZEm9oPYImOs5f8aWYmMnDTpoCS5RZoHNwRx6pFCmiR34VwIrRznZYFTu2tN2Kxi8RLXSwpJEpS0jfeidb0oSEKMU49E0RjiOqhEWinHUM/x+1wucs6pS42WyZpDWEOXsmdSKNaW8QT8P3YI36fkDFBXT6uS88kky43J+6hZ3jVlPUcO935OzGqfIUirNE0aIAtFy/pHu6xu/ECJmyKppeLXTLAoxHrJoZySDCzVQRxGblvIQhGgvL3gVMDlAE2BmLsjURCHnhU2YVXQHAK4qyPDKz0/H/e5gXJCQ87O1oOU9JtU1Hsqk4c6BqeoA8BDMcdy59OnJ8lJhq1PAXLlUAm7B8lf6YR9ANwJoJCel8gBsCnra+qwPtMr7dzTPTYuxk8doSrdYtHrc9UTjYFXPXjXIh/HrziTtgQOObIO6t0DWUHSb227ogVedP4VVMFTvmpIoK1XWpQjafNUglrPbizelxK6C7GRH+HeETsFjSBn5Dc2S5B+SuuB1jri3fEFDesYQo9gNfoAAAAASUVORK5CYII=","uuid":"ece43565-7aa9-4d62-81c9-9a6d6eb666cc"}
--------------------------------
2024/11/18 9:20:28|
响应数据 -  响应数据类型:System.String
{"status":true,"code":0,"message":null,"data":{"token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTczMTg5MjgyOCIsIm5iZiI6IjE3MzE4OTI4MjgiLCJleHAiOiIxNzMxOTAwMDI4IiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.uARlgOGwGem4oWnv21pDUrwsN_hiYfZZyfBhxlui8hA","userName":"超级管理员","img":""},"devMessage":null}
--------------------------------
2024/11/18 9:20:28|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/18 9:20:28|
响应数据 -  响应数据类型:System.String
[{"id":29,"name":"库存信息","url":"/stockInfo","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfo","permission":["Search","Add","Delete","Update","Import","Export","HandOutbound","HandOutboundt"]},{"id":25,"name":"入库单","url":"/inboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_InboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-notebook-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":30,"name":"库存信息明细","url":"stockInfoDetail","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfoDetail","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":32,"name":"库存视图","url":"/stockView","parentId":20,"icon":"","enable":1,"tableName":"StockView","permission":["Search"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-shopping-bag-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":27,"name":"出库单","url":"/outboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_OutboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":23,"name":"货位信息","url":"/locationInfo","parentId":17,"icon":"","enable":1,"tableName":"Dt_LocationInfo","permission":["Search","Update","Export","Enable","Disable"]},{"id":19,"name":"单据管理","url":"","parentId":0,"icon":"el-icon-document","enable":1,"tableName":"/","permission":["Search"]},{"id":20,"name":"库存管理","url":"","parentId":0,"icon":"el-icon-discount","enable":1,"tableName":"/","permission":["Search"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":null,"enable":1,"tableName":"Dt_Task","permission":["Search","Export","TaskCancellation","TaskHandCompleted"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]
--------------------------------
2024/11/18 9:20:30|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/18 9:20:30|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/18 9:20:30|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"taskTypeEnum\",\"taskStatusEnum\"]"}
--------------------------------
2024/11/18 9:20:30|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/18 9:20:32|
响应数据 -  响应数据类型:System.String
[{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/18 9:20:43|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/18 9:20:43|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/18 9:20:43|
响应数据 -  响应数据类型:System.String
{"total":1,"rows":[{"taskId":131,"taskNum":98,"palletCode":"KTP1114120708","roadway":"1","taskType":104,"taskStatus":200,"sourceAddress":"R01-001-003-001-02","targetAddress":"R01-002-041-001-01","currentAddress":"R01-001-003-001-02","nextAddress":"R01-002-041-001-01","depth":2,"orderNo":null,"grade":1,"sourceKey":0,"dispatchertime":null,"remark":null,"palletCodequantity":8,"plcTo":0,"creater":"WMS","createDate":"2024-11-18 08:42:26","modifier":null,"modifyDate":null}],"summary":null}
--------------------------------
2024/11/18 9:20:43|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/18 9:20:43|
响应数据 -  响应数据类型:System.String
{"total":1,"rows":[{"taskId":131,"taskNum":98,"palletCode":"KTP1114120708","roadway":"1","taskType":104,"taskStatus":200,"sourceAddress":"R01-001-003-001-02","targetAddress":"R01-002-041-001-01","currentAddress":"R01-001-003-001-02","nextAddress":"R01-002-041-001-01","depth":2,"orderNo":null,"grade":1,"sourceKey":0,"dispatchertime":null,"remark":null,"palletCodequantity":8,"plcTo":0,"creater":"WMS","createDate":"2024-11-18 08:42:26","modifier":null,"modifyDate":null}],"summary":null}
--------------------------------
2024/11/18 9:20:43|
响应数据 -  响应数据类型:System.String
{"total":1,"rows":[{"taskId":131,"taskNum":98,"palletCode":"KTP1114120708","roadway":"1","taskType":104,"taskStatus":200,"sourceAddress":"R01-001-003-001-02","targetAddress":"R01-002-041-001-01","currentAddress":"R01-001-003-001-02","nextAddress":"R01-002-041-001-01","depth":2,"orderNo":null,"grade":1,"sourceKey":0,"dispatchertime":null,"remark":null,"palletCodequantity":8,"plcTo":0,"creater":"WMS","createDate":"2024-11-18 08:42:26","modifier":null,"modifyDate":null}],"summary":null}
--------------------------------
2024/11/18 9:20:43|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/18 9:20:43|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/18 9:20:43|
响应数据 -  响应数据类型:System.String
{"total":1,"rows":[{"taskId":131,"taskNum":98,"palletCode":"KTP1114120708","roadway":"1","taskType":104,"taskStatus":200,"sourceAddress":"R01-001-003-001-02","targetAddress":"R01-002-041-001-01","currentAddress":"R01-001-003-001-02","nextAddress":"R01-002-041-001-01","depth":2,"orderNo":null,"grade":1,"sourceKey":0,"dispatchertime":null,"remark":null,"palletCodequantity":8,"plcTo":0,"creater":"WMS","createDate":"2024-11-18 08:42:26","modifier":null,"modifyDate":null}],"summary":null}
--------------------------------
2024/11/18 9:20:43|
响应数据 -  响应数据类型:System.String
{"total":1,"rows":[{"taskId":131,"taskNum":98,"palletCode":"KTP1114120708","roadway":"1","taskType":104,"taskStatus":200,"sourceAddress":"R01-001-003-001-02","targetAddress":"R01-002-041-001-01","currentAddress":"R01-001-003-001-02","nextAddress":"R01-002-041-001-01","depth":2,"orderNo":null,"grade":1,"sourceKey":0,"dispatchertime":null,"remark":null,"palletCodequantity":8,"plcTo":0,"creater":"WMS","createDate":"2024-11-18 08:42:26","modifier":null,"modifyDate":null}],"summary":null}
--------------------------------
2024/11/18 9:20:46|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/TaskCompleted","QueryString":"?taskNum=98","BodyData":""}
--------------------------------
2024/11/18 9:20:46|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/TaskCompleted","QueryString":"?taskNum=98","BodyData":""}
--------------------------------
2024/11/18 9:20:49|
响应数据 -  响应数据类型:System.String
{"status":false,"code":0,"message":"Exception has been thrown by the target of an invocation.","data":null,"devMessage":null}
--------------------------------
2024/11/18 9:21:15|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/TaskCompleted","QueryString":"?taskNum=98","BodyData":""}
--------------------------------
2024/11/18 9:21:15|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/TaskCompleted","QueryString":"?taskNum=98","BodyData":""}
--------------------------------
2024/11/18 9:22:36|
响应数据 -  响应数据类型:System.String
{"status":false,"code":0,"message":"Exception has been thrown by the target of an invocation.","data":null,"devMessage":null}
--------------------------------
2024/11/18 9:23:13|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/TaskCompleted","QueryString":"?taskNum=98","BodyData":""}
--------------------------------
2024/11/18 9:23:13|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/TaskCompleted","QueryString":"?taskNum=98","BodyData":""}
--------------------------------
2024/11/18 9:23:33|
响应数据 -  响应数据类型:System.String
{"status":false,"code":0,"message":"Exception has been thrown by the target of an invocation.","data":null,"devMessage":null}
--------------------------------
2024/11/18 9:23:33|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/TaskCompleted","QueryString":"?taskNum=98","BodyData":""}
--------------------------------
2024/11/18 9:23:46|
响应数据 -  响应数据类型:System.String
{"status":false,"code":0,"message":"Exception has been thrown by the target of an invocation.","data":null,"devMessage":null}
--------------------------------
2024/11/18 9:23:58|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/TaskCompleted","QueryString":"?taskNum=98","BodyData":""}
--------------------------------
2024/11/18 9:23:58|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/TaskCompleted","QueryString":"?taskNum=98","BodyData":""}
--------------------------------
2024/11/18 9:24:06|
响应数据 -  响应数据类型:System.String
{"status":false,"code":0,"message":"Exception has been thrown by the target of an invocation.","data":null,"devMessage":null}
--------------------------------
2024/11/18 9:24:25|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/TaskCompleted","QueryString":"?taskNum=98","BodyData":""}
--------------------------------
2024/11/18 9:24:25|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/TaskCompleted","QueryString":"?taskNum=98","BodyData":""}
--------------------------------
2024/11/18 9:24:53|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/18 9:24:53|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/18 9:24:53|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"stockStatusEmun\",\"inventoryMaterialType\",\"yesno\"]"}
--------------------------------
2024/11/18 9:24:53|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/18 9:24:54|
响应数据 -  响应数据类型:System.String
{"status":false,"code":0,"message":"Exception has been thrown by the target of an invocation.","data":null,"devMessage":null}
--------------------------------
2024/11/18 9:24:54|
响应数据 -  响应数据类型:System.String
{"total":47,"rows":[{"id":133,"palletCode":"KTP1115165738","materialType":0,"locationCode":"R01-002-004-001-01","isFull":true,"stockStatus":5,"materialweight":7.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 16:57:26","modifier":null,"modifyDate":"2024-11-18 08:44:29"},{"id":131,"palletCode":"FK240806D1#17","materialType":0,"locationCode":"R02-004-006-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 16:47:55","modifier":null,"modifyDate":"2024-11-15 16:51:05"},{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":null,"modifyDate":"2024-11-15 10:59:10"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.0,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"}],"summary":null}
--------------------------------
2024/11/18 9:24:54|
响应数据 -  响应数据类型:System.String
[{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"yesno","config":null,"data":[{"key":"true","value":"是"},{"key":"false","value":"否"}]},{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/18 9:25:01|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/18 9:25:01|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[{\\\"name\\\":\\\"palletCode\\\",\\\"value\\\":\\\"KTP1114120708\\\"}]\"}"}
--------------------------------
2024/11/18 9:25:01|
响应数据 -  响应数据类型:System.String
{"total":0,"rows":[],"summary":null}
--------------------------------
2024/11/18 9:25:07|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfoDetail/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/18 9:25:07|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/18 9:25:07|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfoDetail/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/18 9:25:07|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"stockStatusEmun\"]"}
--------------------------------
2024/11/18 9:25:07|
响应数据 -  响应数据类型:System.String
[{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]}]
--------------------------------
2024/11/18 9:25:07|
响应数据 -  响应数据类型:System.String
{"total":21,"rows":[{"id":65,"stockId":134,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#13","batchNo":"240806D1","serialNumber":"13","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-16 10:24:13","modifier":"admin","modifyDate":"2024-11-16 11:48:08"},{"id":64,"stockId":131,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#17","batchNo":"240806D1","serialNumber":"17","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-15 16:47:55","modifier":null,"modifyDate":"2024-11-15 16:51:05"},{"id":63,"stockId":130,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#12","batchNo":"240806D1","serialNumber":"12","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":62,"stockId":129,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#28","batchNo":"240806D1","serialNumber":"28","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":null,"modifyDate":"2024-11-15 10:59:10"},{"id":61,"stockId":127,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#21","batchNo":"240806D1","serialNumber":"21","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":60,"stockId":126,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#32","batchNo":"240806D1","serialNumber":"32","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":59,"stockId":124,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#01","batchNo":"240806D1","serialNumber":"01","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":58,"stockId":90,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#03","batchNo":"240806D1","serialNumber":"03","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 15:35:30","modifier":null,"modifyDate":"2024-11-13 15:37:58"},{"id":57,"stockId":89,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#05","batchNo":"240806D1","serialNumber":"05","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 15:31:50","modifier":null,"modifyDate":"2024-11-13 15:35:00"},{"id":56,"stockId":88,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#07","batchNo":"240806D1","serialNumber":"07","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:54:36","modifier":null,"modifyDate":"2024-11-13 15:32:51"},{"id":55,"stockId":87,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#09","batchNo":"240806D1","serialNumber":"09","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:52:14","modifier":null,"modifyDate":"2024-11-13 15:30:46"},{"id":54,"stockId":86,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#26","batchNo":"240806D1","serialNumber":"26","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:51:08","modifier":null,"modifyDate":"2024-11-13 15:28:53"},{"id":53,"stockId":85,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#19","batchNo":"240806D1","serialNumber":"19","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:47:22","modifier":null,"modifyDate":"2024-11-13 14:51:52"},{"id":52,"stockId":84,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#15","batchNo":"240806D1","serialNumber":"15","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:43:21","modifier":null,"modifyDate":"2024-11-13 14:48:08"},{"id":51,"stockId":83,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#11","batchNo":"240806D1","serialNumber":"11","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:18:39","modifier":null,"modifyDate":"2024-11-13 14:43:52"},{"id":50,"stockId":82,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#14","batchNo":"240806D1","serialNumber":"14","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:16:05","modifier":null,"modifyDate":"2024-11-13 14:21:42"},{"id":49,"stockId":81,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#25","batchNo":"240806D1","serialNumber":"25","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:15:17","modifier":null,"modifyDate":"2024-11-13 14:17:56"},{"id":47,"stockId":79,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#27","batchNo":"240806D1","serialNumber":"27","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:00:49","modifier":null,"modifyDate":"2024-11-13 14:10:08"},{"id":46,"stockId":18,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#18","batchNo":"240806D1","serialNumber":"18","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:00:00","modifier":null,"modifyDate":"2024-11-13 14:04:39"},{"id":45,"stockId":77,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#23","batchNo":"240806D1","serialNumber":"23","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 13:44:48","modifier":null,"modifyDate":"2024-11-13 13:49:34"},{"id":44,"stockId":76,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#31","batchNo":"240806D1","serialNumber":"31","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 12:16:36","modifier":null,"modifyDate":"2024-11-15 16:49:15"}],"summary":null}
--------------------------------
2024/11/19 10:13:13|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/GenerateInventoryInformation","QueryString":"","BodyData":"{\"SourceAddress\":\"R02-003-043-001-01\",\"PalletCode\":\"KTP101044\"}"}
--------------------------------
2024/11/19 10:13:13|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Queryinventory","QueryString":"","BodyData":"{\"SourceAddress\":\"\",\"PalletCode\":\"KTP100907\"}"}
--------------------------------
2024/11/19 10:13:33|
响应数据 -  响应数据类型:System.String
{"status":false,"code":0,"message":"未找到该类型的解析","data":null,"devMessage":null}
--------------------------------
2024/11/19 10:13:33|
响应数据 -  响应数据类型:System.String
{"status":false,"code":0,"message":"组盘,请核对托盘号:KTP101044","data":null,"devMessage":null}
--------------------------------
2024/11/19 22:54:33|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 22:54:33|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 22:54:34|
响应数据 -  响应数据类型:System.String
{"message":"授权未通过","status":false,"code":401}
--------------------------------
2024/11/19 22:54:34|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/User/getVierificationCode","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 22:54:34|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/User/getVierificationCode","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 22:54:35|
响应数据 -  响应数据类型:System.String
{"img":"iVBORw0KGgoAAAANSUhEUgAAAEgAAAAgCAYAAACxSj5wAAAABHNCSVQICAgIfAhkiAAAAjBJREFUaIHVWtuWwyAIhJz+d7tf7j5sTQ0BM1ySZucpjQqII6Apt9YaEREzExHR++chmBnuezbOtGXpD621jZLuMAuWQXLckZwKdFvO0LVYDZ4VmRnmXdnMJDMssvQus0ZU4GhYluqR8RXMsfQus8aIwG+gtZZeZOu9ucXuim68nFzlIo/v/52DuvEyoVQF6F2S+dNle3+2UmN6naVa/nmXEM9Y4M9uZ815cDkzekdOMiOY6OOYnYyJoywmRJ2UlfeQgypS9uiY0RmWw9b2ie6+eNoiojXZapPD2afGoAhT1rGicO1j5Duvc7z2LEgnlyKDJfK9NnlIPtAvMo9pHTR20lbOY5DGGsTgUfcs/R4xpvq4sQnSmsLRuLASIyaZ/YOxQ7M5m2gex13iYGai1+e3J81LRJwTkSOhBukymr4+jxnnHMFiTkW8UrdYhOKbojGwpTTZFitkgRoByiQozSOBWzMYZY2X9lcelCEGVRWI7bkv9KS+WSWPsAyB6zQgr1yjwq3z1uq0F17UadkHKRoRuVY/q+2hCfJiZI55/lKOCaY8sG6qwkzWJdcdnVXR1KvFt8PsU3X9Mb3rMBRXrp4Vk+5yYwkxCLmbqUy3Fc6p+rriZlAl7sQUDcxcf5r34NvOQa5cdqf5qnuU6jFemZlMuEkG39xiUVRtTSRBuNP81dtQ04vWUp7P59Z/E27HIE8xiXxRySJVKHoKNxToRCs/d8+QcpDXyExtcuXWHnX9Ai+JsKVXDSADAAAAAElFTkSuQmCC","uuid":"f37b2f13-d028-4c6d-a0ff-7ef3df4871a1"}
--------------------------------
2024/11/19 22:54:36|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/User/login","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 22:54:36|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/User/login","QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"f37b2f13-d028-4c6d-a0ff-7ef3df4871a1\"}"}
--------------------------------
2024/11/19 22:54:37|
响应数据 -  响应数据类型:System.String
{"status":true,"code":0,"message":null,"data":{"token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTczMjAyODA3NyIsIm5iZiI6IjE3MzIwMjgwNzciLCJleHAiOiIxNzMyMDM1Mjc3IiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.GN52U0nLig_fL6S1awiYAPWgqmEfU1Sy6lp3LBUqpxQ","userName":"超级管理员","img":""},"devMessage":null}
--------------------------------
2024/11/19 22:54:37|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 22:54:37|
响应数据 -  响应数据类型:System.String
[{"id":29,"name":"库存信息","url":"/stockInfo","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfo","permission":["Search","Add","Delete","Update","Import","Export","HandOutbound","HandOutboundt"]},{"id":25,"name":"入库单","url":"/inboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_InboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-notebook-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":30,"name":"库存信息明细","url":"stockInfoDetail","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfoDetail","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":32,"name":"库存视图","url":"/stockView","parentId":20,"icon":"","enable":1,"tableName":"StockView","permission":["Search"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-shopping-bag-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":27,"name":"出库单","url":"/outboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_OutboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":23,"name":"货位信息","url":"/locationInfo","parentId":17,"icon":"","enable":1,"tableName":"Dt_LocationInfo","permission":["Search","Update","Export","Enable","Disable"]},{"id":19,"name":"单据管理","url":"","parentId":0,"icon":"el-icon-document","enable":1,"tableName":"/","permission":["Search"]},{"id":20,"name":"库存管理","url":"","parentId":0,"icon":"el-icon-discount","enable":1,"tableName":"/","permission":["Search"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":null,"enable":1,"tableName":"Dt_Task","permission":["Search","Export","TaskCancellation","TaskHandCompleted"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]
--------------------------------
2024/11/19 22:54:39|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 22:54:39|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 22:54:39|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"taskTypeEnum\",\"taskStatusEnum\"]"}
--------------------------------
2024/11/19 22:54:39|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 22:54:40|
响应数据 -  响应数据类型:System.String
[{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/19 22:54:42|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 22:54:47|
响应数据 -  响应数据类型:System.String
{"total":1,"rows":[{"taskId":130,"taskNum":66,"palletCode":"FK240806D1#28","roadway":"2","taskType":100,"taskStatus":200,"sourceAddress":"R02-002-005-002-01","targetAddress":"R02-003-027-011-01","currentAddress":"R02-002-005-002-01","nextAddress":"R02-003-027-011-01","depth":1,"orderNo":null,"grade":1,"sourceKey":0,"dispatchertime":null,"remark":null,"palletCodequantity":0,"plcTo":0,"creater":"","createDate":"2024-11-17 22:54:58","modifier":null,"modifyDate":null}],"summary":null}
--------------------------------
2024/11/19 22:54:47|
响应数据 -  响应数据类型:System.String
{"total":1,"rows":[{"taskId":130,"taskNum":66,"palletCode":"FK240806D1#28","roadway":"2","taskType":100,"taskStatus":200,"sourceAddress":"R02-002-005-002-01","targetAddress":"R02-003-027-011-01","currentAddress":"R02-002-005-002-01","nextAddress":"R02-003-027-011-01","depth":1,"orderNo":null,"grade":1,"sourceKey":0,"dispatchertime":null,"remark":null,"palletCodequantity":0,"plcTo":0,"creater":"","createDate":"2024-11-17 22:54:58","modifier":null,"modifyDate":null}],"summary":null}
--------------------------------
2024/11/19 22:54:56|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=66","BodyData":""}
--------------------------------
2024/11/19 22:54:56|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=66","BodyData":""}
--------------------------------
2024/11/19 22:56:44|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=66","BodyData":""}
--------------------------------
2024/11/19 22:56:44|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=66","BodyData":""}
--------------------------------
2024/11/19 22:56:55|
响应数据 -  响应数据类型:System.String
{"status":false,"code":0,"message":"未找到任务号","data":null,"devMessage":null}
--------------------------------
2024/11/19 22:57:12|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 22:57:12|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 22:57:12|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 22:57:12|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"taskTypeEnum\",\"taskStatusEnum\"]"}
--------------------------------
2024/11/19 22:57:13|
响应数据 -  响应数据类型:System.String
{"total":0,"rows":[],"summary":null}
--------------------------------
2024/11/19 22:57:13|
响应数据 -  响应数据类型:System.String
[{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/19 22:57:20|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 22:57:20|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 22:57:20|
响应数据 -  响应数据类型:System.String
{"total":0,"rows":[],"summary":null}
--------------------------------
2024/11/19 22:57:24|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 22:57:24|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 22:57:24|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"stockStatusEmun\",\"inventoryMaterialType\",\"yesno\"]"}
--------------------------------
2024/11/19 22:57:24|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 22:57:24|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 22:57:24|
响应数据 -  响应数据类型:System.String
[{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"yesno","config":null,"data":[{"key":"true","value":"是"},{"key":"false","value":"否"}]},{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/19 22:57:26|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutbound","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 22:57:26|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutbound","QueryString":"","BodyData":"{\"DelKeys\":[\"FK240806D1#12\"],\"Extra\":true}"}
--------------------------------
2024/11/19 22:57:33|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 22:57:33|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 22:57:33|
响应数据 -  响应数据类型:System.String
[{"id":29,"name":"库存信息","url":"/stockInfo","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfo","permission":["Search","Add","Delete","Update","Import","Export","HandOutbound","HandOutboundt"]},{"id":25,"name":"入库单","url":"/inboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_InboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-notebook-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":30,"name":"库存信息明细","url":"stockInfoDetail","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfoDetail","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":32,"name":"库存视图","url":"/stockView","parentId":20,"icon":"","enable":1,"tableName":"StockView","permission":["Search"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-shopping-bag-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":27,"name":"出库单","url":"/outboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_OutboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":23,"name":"货位信息","url":"/locationInfo","parentId":17,"icon":"","enable":1,"tableName":"Dt_LocationInfo","permission":["Search","Update","Export","Enable","Disable"]},{"id":19,"name":"单据管理","url":"","parentId":0,"icon":"el-icon-document","enable":1,"tableName":"/","permission":["Search"]},{"id":20,"name":"库存管理","url":"","parentId":0,"icon":"el-icon-discount","enable":1,"tableName":"/","permission":["Search"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":null,"enable":1,"tableName":"Dt_Task","permission":["Search","Export","TaskCancellation","TaskHandCompleted"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]
--------------------------------
2024/11/19 22:57:33|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 22:57:33|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 22:57:33|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"stockStatusEmun\",\"inventoryMaterialType\",\"yesno\"]"}
--------------------------------
2024/11/19 22:57:33|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 22:57:33|
响应数据 -  响应数据类型:System.String
[{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"yesno","config":null,"data":[{"key":"true","value":"是"},{"key":"false","value":"否"}]},{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/19 22:57:33|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":null,"modifyDate":"2024-11-15 11:37:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 22:57:36|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 22:57:36|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"taskTypeEnum\",\"taskStatusEnum\"]"}
--------------------------------
2024/11/19 22:57:36|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 22:57:36|
响应数据 -  响应数据类型:System.String
[{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]}]
--------------------------------
2024/11/19 22:57:36|
响应数据 -  响应数据类型:System.String
{"total":0,"rows":[],"summary":null}
--------------------------------
2024/11/19 22:59:37|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutbound","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 22:59:37|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutbound","QueryString":"","BodyData":"{\"DelKeys\":[\"FK240806D1#12\"],\"Extra\":true}"}
--------------------------------
2024/11/19 22:59:49|
响应数据 -  响应数据类型:System.String
{"status":true,"code":0,"message":null,"data":null,"devMessage":null}
--------------------------------
2024/11/19 22:59:49|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 22:59:49|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 22:59:50|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":7,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"","modifyDate":"2024-11-19 22:59:48"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 22:59:53|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 22:59:53|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 22:59:53|
响应数据 -  响应数据类型:System.String
{"total":1,"rows":[{"taskId":131,"taskNum":68,"palletCode":"FK240806D1#12","roadway":"2","taskType":100,"taskStatus":200,"sourceAddress":"R02-003-005-002-01","targetAddress":"R02-002-027-011-01","currentAddress":"R02-003-005-002-01","nextAddress":"R02-002-027-011-01","depth":1,"orderNo":null,"grade":1,"sourceKey":0,"dispatchertime":null,"remark":null,"palletCodequantity":0,"plcTo":0,"creater":"","createDate":"2024-11-19 22:59:49","modifier":null,"modifyDate":null}],"summary":null}
--------------------------------
2024/11/19 22:59:58|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=68","BodyData":""}
--------------------------------
2024/11/19 22:59:58|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=68","BodyData":""}
--------------------------------
2024/11/19 23:01:07|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=68","BodyData":""}
--------------------------------
2024/11/19 23:01:07|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=68","BodyData":""}
--------------------------------
2024/11/19 23:01:15|
响应数据 -  响应数据类型:System.String
{"status":false,"code":0,"message":"未找到任务号","data":null,"devMessage":null}
--------------------------------
2024/11/19 23:01:32|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=68","BodyData":""}
--------------------------------
2024/11/19 23:01:32|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=68","BodyData":""}
--------------------------------
2024/11/19 23:01:33|
响应数据 -  响应数据类型:System.String
{"status":false,"code":0,"message":"未找到任务号","data":null,"devMessage":null}
--------------------------------
2024/11/19 23:01:35|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:01:35|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:01:35|
响应数据 -  响应数据类型:System.String
{"total":0,"rows":[],"summary":null}
--------------------------------
2024/11/19 23:01:39|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:01:39|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:01:39|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:00:01"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:01:43|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutbound","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:01:43|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutbound","QueryString":"","BodyData":"{\"DelKeys\":[\"FK240806D1#12\"],\"Extra\":true}"}
--------------------------------
2024/11/19 23:01:47|
响应数据 -  响应数据类型:System.String
{"status":true,"code":0,"message":null,"data":null,"devMessage":null}
--------------------------------
2024/11/19 23:01:47|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:01:47|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:01:47|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":7,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:01:46"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:01:50|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:01:50|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:01:50|
响应数据 -  响应数据类型:System.String
{"total":1,"rows":[{"taskId":132,"taskNum":69,"palletCode":"FK240806D1#12","roadway":"2","taskType":100,"taskStatus":200,"sourceAddress":"R02-003-005-002-01","targetAddress":"R02-002-027-011-01","currentAddress":"R02-003-005-002-01","nextAddress":"R02-002-027-011-01","depth":1,"orderNo":null,"grade":1,"sourceKey":0,"dispatchertime":null,"remark":null,"palletCodequantity":0,"plcTo":0,"creater":"admin","createDate":"2024-11-19 23:01:47","modifier":null,"modifyDate":null}],"summary":null}
--------------------------------
2024/11/19 23:01:53|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=69","BodyData":""}
--------------------------------
2024/11/19 23:01:53|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=69","BodyData":""}
--------------------------------
2024/11/19 23:03:09|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:03:10|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:03:16|
响应数据 -  响应数据类型:System.String
{"total":0,"rows":[],"summary":null}
--------------------------------
2024/11/19 23:03:21|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:03:21|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:03:21|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:01:56"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:03:26|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutbound","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:03:26|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutbound","QueryString":"","BodyData":"{\"DelKeys\":[\"FK240806D1#12\"],\"Extra\":true}"}
--------------------------------
2024/11/19 23:03:31|
响应数据 -  响应数据类型:System.String
{"status":true,"code":0,"message":null,"data":null,"devMessage":null}
--------------------------------
2024/11/19 23:03:31|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:03:31|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:03:31|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":7,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:03:29"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:03:35|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:03:35|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:03:35|
响应数据 -  响应数据类型:System.String
{"total":1,"rows":[{"taskId":133,"taskNum":70,"palletCode":"FK240806D1#12","roadway":"2","taskType":100,"taskStatus":200,"sourceAddress":"R02-003-005-002-01","targetAddress":"R02-002-027-011-01","currentAddress":"R02-003-005-002-01","nextAddress":"R02-002-027-011-01","depth":1,"orderNo":null,"grade":1,"sourceKey":0,"dispatchertime":null,"remark":null,"palletCodequantity":0,"plcTo":0,"creater":"admin","createDate":"2024-11-19 23:03:30","modifier":null,"modifyDate":null}],"summary":null}
--------------------------------
2024/11/19 23:03:38|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=70","BodyData":""}
--------------------------------
2024/11/19 23:03:38|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=70","BodyData":""}
--------------------------------
2024/11/19 23:09:06|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:09:06|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:09:13|
响应数据 -  响应数据类型:System.String
{"total":0,"rows":[],"summary":null}
--------------------------------
2024/11/19 23:09:24|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:09:24|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:09:24|
响应数据 -  响应数据类型:System.String
{"total":0,"rows":[],"summary":null}
--------------------------------
2024/11/19 23:09:27|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutbound","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:09:27|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutbound","QueryString":"","BodyData":"{\"DelKeys\":[\"FK240806D1#12\"],\"Extra\":true}"}
--------------------------------
2024/11/19 23:09:31|
响应数据 -  响应数据类型:System.String
{"status":true,"code":0,"message":null,"data":null,"devMessage":null}
--------------------------------
2024/11/19 23:09:31|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:09:31|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:09:31|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":7,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:09:30"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:09:33|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:09:33|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:09:33|
响应数据 -  响应数据类型:System.String
{"total":1,"rows":[{"taskId":134,"taskNum":71,"palletCode":"FK240806D1#12","roadway":"2","taskType":100,"taskStatus":200,"sourceAddress":"R02-003-005-002-01","targetAddress":"R02-002-027-011-01","currentAddress":"R02-003-005-002-01","nextAddress":"R02-002-027-011-01","depth":1,"orderNo":null,"grade":1,"sourceKey":0,"dispatchertime":null,"remark":null,"palletCodequantity":0,"plcTo":0,"creater":"admin","createDate":"2024-11-19 23:09:31","modifier":null,"modifyDate":null}],"summary":null}
--------------------------------
2024/11/19 23:09:38|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=71","BodyData":""}
--------------------------------
2024/11/19 23:09:38|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=71","BodyData":""}
--------------------------------
2024/11/19 23:12:03|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:12:03|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:12:10|
响应数据 -  响应数据类型:System.String
{"total":0,"rows":[],"summary":null}
--------------------------------
2024/11/19 23:12:16|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:12:16|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:12:17|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:09:40"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:12:19|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutbound","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:12:19|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutbound","QueryString":"","BodyData":"{\"DelKeys\":[\"FK240806D1#12\"],\"Extra\":true}"}
--------------------------------
2024/11/19 23:12:24|
响应数据 -  响应数据类型:System.String
{"status":true,"code":0,"message":null,"data":null,"devMessage":null}
--------------------------------
2024/11/19 23:12:24|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:12:24|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:12:24|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":7,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:12:23"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:12:27|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:12:27|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:12:27|
响应数据 -  响应数据类型:System.String
{"total":1,"rows":[{"taskId":135,"taskNum":72,"palletCode":"FK240806D1#12","roadway":"2","taskType":100,"taskStatus":200,"sourceAddress":"R02-003-005-002-01","targetAddress":"R02-002-027-011-01","currentAddress":"R02-003-005-002-01","nextAddress":"R02-002-027-011-01","depth":1,"orderNo":null,"grade":1,"sourceKey":0,"dispatchertime":null,"remark":null,"palletCodequantity":0,"plcTo":0,"creater":"admin","createDate":"2024-11-19 23:12:24","modifier":null,"modifyDate":null}],"summary":null}
--------------------------------
2024/11/19 23:12:30|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=72","BodyData":""}
--------------------------------
2024/11/19 23:12:30|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=72","BodyData":""}
--------------------------------
2024/11/19 23:16:55|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:16:55|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:17:02|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:17:02|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:17:03|
响应数据 -  响应数据类型:System.String
{"total":0,"rows":[],"summary":null}
--------------------------------
2024/11/19 23:17:03|
响应数据 -  响应数据类型:System.String
[{"id":29,"name":"库存信息","url":"/stockInfo","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfo","permission":["Search","Add","Delete","Update","Import","Export","HandOutbound","HandOutboundt"]},{"id":25,"name":"入库单","url":"/inboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_InboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-notebook-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":30,"name":"库存信息明细","url":"stockInfoDetail","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfoDetail","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":32,"name":"库存视图","url":"/stockView","parentId":20,"icon":"","enable":1,"tableName":"StockView","permission":["Search"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-shopping-bag-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":27,"name":"出库单","url":"/outboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_OutboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":23,"name":"货位信息","url":"/locationInfo","parentId":17,"icon":"","enable":1,"tableName":"Dt_LocationInfo","permission":["Search","Update","Export","Enable","Disable"]},{"id":19,"name":"单据管理","url":"","parentId":0,"icon":"el-icon-document","enable":1,"tableName":"/","permission":["Search"]},{"id":20,"name":"库存管理","url":"","parentId":0,"icon":"el-icon-discount","enable":1,"tableName":"/","permission":["Search"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":null,"enable":1,"tableName":"Dt_Task","permission":["Search","Export","TaskCancellation","TaskHandCompleted"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]
--------------------------------
2024/11/19 23:17:03|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:17:03|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:17:03|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"taskTypeEnum\",\"taskStatusEnum\"]"}
--------------------------------
2024/11/19 23:17:03|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:17:03|
响应数据 -  响应数据类型:System.String
{"total":0,"rows":[],"summary":null}
--------------------------------
2024/11/19 23:17:04|
响应数据 -  响应数据类型:System.String
[{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/19 23:17:18|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:17:18|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:17:18|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"stockStatusEmun\",\"inventoryMaterialType\",\"yesno\"]"}
--------------------------------
2024/11/19 23:17:18|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:17:18|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:12:33"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:17:18|
响应数据 -  响应数据类型:System.String
[{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"yesno","config":null,"data":[{"key":"true","value":"是"},{"key":"false","value":"否"}]},{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/19 23:17:20|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutbound","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:17:20|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutbound","QueryString":"","BodyData":"{\"DelKeys\":[\"FK240806D1#12\"],\"Extra\":true}"}
--------------------------------
2024/11/19 23:17:44|
响应数据 -  响应数据类型:System.String
{"status":false,"code":0,"message":"出库失败,报错信息:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:10.50.11.65]:8099 (10.50.11.65:8099)","data":null,"devMessage":null}
--------------------------------
2024/11/19 23:17:50|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutbound","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:17:50|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutbound","QueryString":"","BodyData":"{\"DelKeys\":[\"FK240806D1#12\"],\"Extra\":true}"}
--------------------------------
2024/11/19 23:18:35|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:18:35|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:18:38|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:12:33"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:18:41|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:18:41|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:18:45|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:18:46|
响应数据 -  响应数据类型:System.String
{"total":0,"rows":[],"summary":null}
--------------------------------
2024/11/19 23:18:46|
响应数据 -  响应数据类型:System.String
{"total":0,"rows":[],"summary":null}
--------------------------------
2024/11/19 23:18:48|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:18:48|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:18:48|
响应数据 -  响应数据类型:System.String
{"total":0,"rows":[],"summary":null}
--------------------------------
2024/11/19 23:18:49|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:18:49|
响应数据 -  响应数据类型:System.String
{"total":0,"rows":[],"summary":null}
--------------------------------
2024/11/19 23:18:52|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutbound","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:18:52|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/ManualOutbound","QueryString":"","BodyData":"{\"DelKeys\":[\"FK240806D1#12\"],\"Extra\":true}"}
--------------------------------
2024/11/19 23:18:57|
响应数据 -  响应数据类型:System.String
{"status":true,"code":0,"message":null,"data":null,"devMessage":null}
--------------------------------
2024/11/19 23:18:57|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:18:57|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:18:57|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":7,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:18:56"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:19:00|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:19:00|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:19:01|
响应数据 -  响应数据类型:System.String
{"total":1,"rows":[{"taskId":136,"taskNum":75,"palletCode":"FK240806D1#12","roadway":"2","taskType":100,"taskStatus":200,"sourceAddress":"R02-003-005-002-01","targetAddress":"R02-002-027-011-01","currentAddress":"R02-003-005-002-01","nextAddress":"R02-002-027-011-01","depth":1,"orderNo":null,"grade":1,"sourceKey":0,"dispatchertime":null,"remark":null,"palletCodequantity":0,"plcTo":0,"creater":"admin","createDate":"2024-11-19 23:18:57","modifier":null,"modifyDate":null}],"summary":null}
--------------------------------
2024/11/19 23:19:05|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=75","BodyData":""}
--------------------------------
2024/11/19 23:19:05|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/Cancelinventory","QueryString":"?TaskNum=75","BodyData":""}
--------------------------------
2024/11/19 23:19:09|
响应数据 -  响应数据类型:System.String
{"status":false,"code":0,"message":"出库任务取消成功","data":null,"devMessage":null}
--------------------------------
2024/11/19 23:19:12|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:19:12|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Task/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:19:12|
响应数据 -  响应数据类型:System.String
{"total":0,"rows":[],"summary":null}
--------------------------------
2024/11/19 23:19:46|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:19:46|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/InboundOrder/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:19:46|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"inOrderType\",\"inboundState\",\"createType\",\"orderDetailStatusEnum\"]"}
--------------------------------
2024/11/19 23:19:46|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/InboundOrder/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:19:46|
响应数据 -  响应数据类型:System.String
{"total":86,"rows":[{"id":95,"orderNo":"颗粒料","upperOrderNo":"20018134","orderType":2,"orderStatus":0,"createType":0,"remark":null,"orderName":"TN25Y-A","details":null,"creater":null,"createDate":"2024-11-19 23:19:46","modifier":null,"modifyDate":null},{"id":94,"orderNo":"颗粒料","upperOrderNo":"20015500","orderType":2,"orderStatus":0,"createType":0,"remark":null,"orderName":"TPW33-G(普通大产品料)","details":null,"creater":null,"createDate":"2024-11-19 23:19:46","modifier":null,"modifyDate":null},{"id":93,"orderNo":"颗粒料","upperOrderNo":"20015552","orderType":2,"orderStatus":0,"createType":0,"remark":null,"orderName":"TP4W回料","details":null,"creater":null,"createDate":"2024-11-19 23:19:46","modifier":null,"modifyDate":null},{"id":92,"orderNo":"氧化锌","upperOrderNo":"30000005","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":"广恒锌","details":null,"creater":null,"createDate":"2024-11-19 23:19:46","modifier":null,"modifyDate":null},{"id":91,"orderNo":"氧化铁","upperOrderNo":"30000013","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":"韩国裕益铁红2B","details":null,"creater":null,"createDate":"2024-11-19 23:19:46","modifier":null,"modifyDate":null},{"id":90,"orderNo":"氧化铁","upperOrderNo":"30000015","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":"森下铁","details":null,"creater":null,"createDate":"2024-11-19 23:19:46","modifier":null,"modifyDate":null},{"id":89,"orderNo":"取消桐乡华信氧化铜","upperOrderNo":"CT","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:19:46","modifier":null,"modifyDate":null},{"id":88,"orderNo":"取消海宁虎震五氧化二钒","upperOrderNo":"VH","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:19:46","modifier":null,"modifyDate":null},{"id":87,"orderNo":"五氧化二钽","upperOrderNo":"Ta","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:19:46","modifier":null,"modifyDate":null},{"id":86,"orderNo":"正辛醇","upperOrderNo":"XC","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:19:46","modifier":null,"modifyDate":null},{"id":85,"orderNo":"台湾色料硬脂酸锌","upperOrderNo":"YT","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:19:46","modifier":null,"modifyDate":null},{"id":84,"orderNo":"新增湖州菱湖硬脂酸锌","upperOrderNo":"YZ","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:19:46","modifier":null,"modifyDate":null},{"id":83,"orderNo":"台湾长春聚乙烯醇(BF-17)","upperOrderNo":"JF","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:19:46","modifier":null,"modifyDate":null},{"id":82,"orderNo":"台湾长春聚乙烯醇(BP-05)","upperOrderNo":"JP","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:19:46","modifier":null,"modifyDate":null},{"id":81,"orderNo":"上海可乐丽聚乙烯醇(235)","upperOrderNo":"JH","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:19:46","modifier":null,"modifyDate":null},{"id":80,"orderNo":"上海可乐丽聚乙烯醇(117k)","upperOrderNo":"JS","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:19:46","modifier":null,"modifyDate":null},{"id":79,"orderNo":"海宁盈通聚乙烯醇(SF-1)","upperOrderNo":"JY","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:19:46","modifier":null,"modifyDate":null},{"id":78,"orderNo":"海宁盈通聚乙烯醇(1799)","upperOrderNo":"JX","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:19:46","modifier":null,"modifyDate":null},{"id":77,"orderNo":"海宁盈通聚乙烯醇(1788)","upperOrderNo":"JW","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:19:46","modifier":null,"modifyDate":null},{"id":76,"orderNo":"新增上海孚钜日本UD-653氢氧化镁","upperOrderNo":"MR","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:19:46","modifier":null,"modifyDate":null},{"id":75,"orderNo":"邢台镁神轻质氧化镁","upperOrderNo":"MX","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:19:46","modifier":null,"modifyDate":null},{"id":74,"orderNo":"青岛和升怡轻质氧化镁","upperOrderNo":"Mg","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:19:46","modifier":null,"modifyDate":null},{"id":73,"orderNo":"新增上海振刚钢球","upperOrderNo":"GZ","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:19:46","modifier":null,"modifyDate":null},{"id":72,"orderNo":"新增山东黄河钢球","upperOrderNo":"GW","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:19:46","modifier":null,"modifyDate":null},{"id":71,"orderNo":"安徽霍山钢球","upperOrderNo":"GA","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:19:46","modifier":null,"modifyDate":null},{"id":70,"orderNo":"兴化人和钢球","upperOrderNo":"GH","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:19:46","modifier":null,"modifyDate":null},{"id":68,"orderNo":"萧山长城铝业氧化铝","upperOrderNo":"YX","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:19:46","modifier":null,"modifyDate":null},{"id":67,"orderNo":"萧山长城铝业刚玉粉","upperOrderNo":"GX","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:19:46","modifier":null,"modifyDate":null},{"id":66,"orderNo":"二氧化锡","upperOrderNo":"Sn","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:19:46","modifier":null,"modifyDate":null},{"id":65,"orderNo":"二氧化钛","upperOrderNo":"Ti","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:19:46","modifier":null,"modifyDate":null}],"summary":null}
--------------------------------
2024/11/19 23:19:47|
响应数据 -  响应数据类型:System.String
[{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/19 23:19:49|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfoDetail/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:19:49|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"stockStatusEmun\"]"}
--------------------------------
2024/11/19 23:19:49|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfoDetail/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:19:49|
响应数据 -  响应数据类型:System.String
{"total":20,"rows":[{"id":64,"stockId":131,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#17","batchNo":"240806D1","serialNumber":"17","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"batchNoName":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-15 16:47:55","modifier":null,"modifyDate":"2024-11-15 16:51:05"},{"id":63,"stockId":130,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#12","batchNo":"240806D1","serialNumber":"12","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"batchNoName":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:19:09"},{"id":62,"stockId":129,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#28","batchNo":"240806D1","serialNumber":"28","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"batchNoName":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:55:01"},{"id":61,"stockId":127,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#21","batchNo":"240806D1","serialNumber":"21","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"batchNoName":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":60,"stockId":126,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#32","batchNo":"240806D1","serialNumber":"32","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"batchNoName":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":59,"stockId":124,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#01","batchNo":"240806D1","serialNumber":"01","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"batchNoName":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":58,"stockId":90,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#03","batchNo":"240806D1","serialNumber":"03","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"batchNoName":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 15:35:30","modifier":null,"modifyDate":"2024-11-13 15:37:58"},{"id":57,"stockId":89,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#05","batchNo":"240806D1","serialNumber":"05","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"batchNoName":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 15:31:50","modifier":null,"modifyDate":"2024-11-13 15:35:00"},{"id":56,"stockId":88,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#07","batchNo":"240806D1","serialNumber":"07","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"batchNoName":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:54:36","modifier":null,"modifyDate":"2024-11-13 15:32:51"},{"id":55,"stockId":87,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#09","batchNo":"240806D1","serialNumber":"09","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"batchNoName":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:52:14","modifier":null,"modifyDate":"2024-11-13 15:30:46"},{"id":54,"stockId":86,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#26","batchNo":"240806D1","serialNumber":"26","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"batchNoName":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:51:08","modifier":null,"modifyDate":"2024-11-13 15:28:53"},{"id":53,"stockId":85,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#19","batchNo":"240806D1","serialNumber":"19","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"batchNoName":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:47:22","modifier":null,"modifyDate":"2024-11-13 14:51:52"},{"id":52,"stockId":84,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#15","batchNo":"240806D1","serialNumber":"15","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"batchNoName":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:43:21","modifier":null,"modifyDate":"2024-11-13 14:48:08"},{"id":51,"stockId":83,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#11","batchNo":"240806D1","serialNumber":"11","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"batchNoName":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:18:39","modifier":null,"modifyDate":"2024-11-13 14:43:52"},{"id":50,"stockId":82,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#14","batchNo":"240806D1","serialNumber":"14","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"batchNoName":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:16:05","modifier":null,"modifyDate":"2024-11-13 14:21:42"},{"id":49,"stockId":81,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#25","batchNo":"240806D1","serialNumber":"25","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"batchNoName":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:15:17","modifier":null,"modifyDate":"2024-11-13 14:17:56"},{"id":47,"stockId":79,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#27","batchNo":"240806D1","serialNumber":"27","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"batchNoName":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:00:49","modifier":null,"modifyDate":"2024-11-13 14:10:08"},{"id":46,"stockId":18,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#18","batchNo":"240806D1","serialNumber":"18","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"batchNoName":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 14:00:00","modifier":null,"modifyDate":"2024-11-13 14:04:39"},{"id":45,"stockId":77,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#23","batchNo":"240806D1","serialNumber":"23","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"batchNoName":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 13:44:48","modifier":null,"modifyDate":"2024-11-13 13:49:34"},{"id":44,"stockId":76,"materielCode":"FK","materielName":"韩国EG(SKM-5C)氧化铁","orderNo":"FK240806D1#31","batchNo":"240806D1","serialNumber":"31","stockQuantity":1.00,"outboundQuantity":1.00,"status":5,"remark":null,"batchNoName":null,"stockQuantityChangeRecord":null,"creater":"WMS","createDate":"2024-11-13 12:16:36","modifier":null,"modifyDate":"2024-11-15 16:49:15"}],"summary":null}
--------------------------------
2024/11/19 23:19:49|
响应数据 -  响应数据类型:System.String
[{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]}]
--------------------------------
2024/11/19 23:22:12|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:22:12|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:22:13|
响应数据 -  响应数据类型:System.String
[{"id":29,"name":"库存信息","url":"/stockInfo","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfo","permission":["Search","Add","Delete","Update","Import","Export","HandOutbound","HandOutboundt"]},{"id":25,"name":"入库单","url":"/inboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_InboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-notebook-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":30,"name":"库存信息明细","url":"stockInfoDetail","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfoDetail","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":32,"name":"库存视图","url":"/stockView","parentId":20,"icon":"","enable":1,"tableName":"StockView","permission":["Search"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-shopping-bag-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":27,"name":"出库单","url":"/outboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_OutboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":23,"name":"货位信息","url":"/locationInfo","parentId":17,"icon":"","enable":1,"tableName":"Dt_LocationInfo","permission":["Search","Update","Export","Enable","Disable"]},{"id":19,"name":"单据管理","url":"","parentId":0,"icon":"el-icon-document","enable":1,"tableName":"/","permission":["Search"]},{"id":20,"name":"库存管理","url":"","parentId":0,"icon":"el-icon-discount","enable":1,"tableName":"/","permission":["Search"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":null,"enable":1,"tableName":"Dt_Task","permission":["Search","Export","TaskCancellation","TaskHandCompleted"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]
--------------------------------
2024/11/19 23:22:16|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/InboundOrder/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:22:16|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:22:16|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"inOrderType\",\"inboundState\",\"createType\",\"orderDetailStatusEnum\"]"}
--------------------------------
2024/11/19 23:22:16|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/InboundOrder/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:22:17|
响应数据 -  响应数据类型:System.String
[{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/19 23:22:18|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"stockStatusEmun\",\"materialTypeEnum\",\"yesno\"]"}
--------------------------------
2024/11/19 23:22:18|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:22:18|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:22:18|
响应数据 -  响应数据类型:System.String
[{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"yesno","config":null,"data":[{"key":"true","value":"是"},{"key":"false","value":"否"}]},{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/19 23:22:21|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:19:08"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:22:23|
响应数据 -  响应数据类型:System.String
{"total":86,"rows":[{"id":95,"orderNo":"颗粒料","upperOrderNo":"20018134","orderType":2,"orderStatus":0,"createType":0,"remark":null,"orderName":"TN25Y-A","details":null,"creater":null,"createDate":"2024-11-19 23:22:23","modifier":null,"modifyDate":null},{"id":94,"orderNo":"颗粒料","upperOrderNo":"20015500","orderType":2,"orderStatus":0,"createType":0,"remark":null,"orderName":"TPW33-G(普通大产品料)","details":null,"creater":null,"createDate":"2024-11-19 23:22:23","modifier":null,"modifyDate":null},{"id":93,"orderNo":"颗粒料","upperOrderNo":"20015552","orderType":2,"orderStatus":0,"createType":0,"remark":null,"orderName":"TP4W回料","details":null,"creater":null,"createDate":"2024-11-19 23:22:23","modifier":null,"modifyDate":null},{"id":92,"orderNo":"氧化锌","upperOrderNo":"30000005","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":"广恒锌","details":null,"creater":null,"createDate":"2024-11-19 23:22:23","modifier":null,"modifyDate":null},{"id":91,"orderNo":"氧化铁","upperOrderNo":"30000013","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":"韩国裕益铁红2B","details":null,"creater":null,"createDate":"2024-11-19 23:22:23","modifier":null,"modifyDate":null},{"id":90,"orderNo":"氧化铁","upperOrderNo":"30000015","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":"森下铁","details":null,"creater":null,"createDate":"2024-11-19 23:22:23","modifier":null,"modifyDate":null},{"id":89,"orderNo":"取消桐乡华信氧化铜","upperOrderNo":"CT","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:22:23","modifier":null,"modifyDate":null},{"id":88,"orderNo":"取消海宁虎震五氧化二钒","upperOrderNo":"VH","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:22:23","modifier":null,"modifyDate":null},{"id":87,"orderNo":"五氧化二钽","upperOrderNo":"Ta","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:22:23","modifier":null,"modifyDate":null},{"id":86,"orderNo":"正辛醇","upperOrderNo":"XC","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:22:23","modifier":null,"modifyDate":null},{"id":85,"orderNo":"台湾色料硬脂酸锌","upperOrderNo":"YT","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:22:23","modifier":null,"modifyDate":null},{"id":84,"orderNo":"新增湖州菱湖硬脂酸锌","upperOrderNo":"YZ","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:22:23","modifier":null,"modifyDate":null},{"id":83,"orderNo":"台湾长春聚乙烯醇(BF-17)","upperOrderNo":"JF","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:22:23","modifier":null,"modifyDate":null},{"id":82,"orderNo":"台湾长春聚乙烯醇(BP-05)","upperOrderNo":"JP","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:22:23","modifier":null,"modifyDate":null},{"id":81,"orderNo":"上海可乐丽聚乙烯醇(235)","upperOrderNo":"JH","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:22:23","modifier":null,"modifyDate":null},{"id":80,"orderNo":"上海可乐丽聚乙烯醇(117k)","upperOrderNo":"JS","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:22:23","modifier":null,"modifyDate":null},{"id":79,"orderNo":"海宁盈通聚乙烯醇(SF-1)","upperOrderNo":"JY","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:22:23","modifier":null,"modifyDate":null},{"id":78,"orderNo":"海宁盈通聚乙烯醇(1799)","upperOrderNo":"JX","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:22:23","modifier":null,"modifyDate":null},{"id":77,"orderNo":"海宁盈通聚乙烯醇(1788)","upperOrderNo":"JW","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:22:23","modifier":null,"modifyDate":null},{"id":76,"orderNo":"新增上海孚钜日本UD-653氢氧化镁","upperOrderNo":"MR","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:22:23","modifier":null,"modifyDate":null},{"id":75,"orderNo":"邢台镁神轻质氧化镁","upperOrderNo":"MX","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:22:23","modifier":null,"modifyDate":null},{"id":74,"orderNo":"青岛和升怡轻质氧化镁","upperOrderNo":"Mg","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:22:23","modifier":null,"modifyDate":null},{"id":73,"orderNo":"新增上海振刚钢球","upperOrderNo":"GZ","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:22:23","modifier":null,"modifyDate":null},{"id":72,"orderNo":"新增山东黄河钢球","upperOrderNo":"GW","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:22:23","modifier":null,"modifyDate":null},{"id":71,"orderNo":"安徽霍山钢球","upperOrderNo":"GA","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:22:23","modifier":null,"modifyDate":null},{"id":70,"orderNo":"兴化人和钢球","upperOrderNo":"GH","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:22:23","modifier":null,"modifyDate":null},{"id":68,"orderNo":"萧山长城铝业氧化铝","upperOrderNo":"YX","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:22:23","modifier":null,"modifyDate":null},{"id":67,"orderNo":"萧山长城铝业刚玉粉","upperOrderNo":"GX","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:22:23","modifier":null,"modifyDate":null},{"id":66,"orderNo":"二氧化锡","upperOrderNo":"Sn","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:22:23","modifier":null,"modifyDate":null},{"id":65,"orderNo":"二氧化钛","upperOrderNo":"Ti","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:22:23","modifier":null,"modifyDate":null}],"summary":null}
--------------------------------
2024/11/19 23:24:14|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:24:14|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:24:14|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:19:08"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:24:15|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:24:15|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:19:08"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:24:16|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:24:16|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:19:08"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:24:16|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:24:16|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:19:08"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:24:16|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:24:16|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:19:08"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:24:30|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:24:30|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getMenu","QueryString":"","BodyData":"{}"}
--------------------------------
2024/11/19 23:24:30|
响应数据 -  响应数据类型:System.String
[{"id":29,"parentId":20,"name":"库存信息","menuType":0,"orderNo":10000},{"id":25,"parentId":19,"name":"入库单","menuType":0,"orderNo":10000},{"id":21,"parentId":17,"name":"仓库信息","menuType":0,"orderNo":10000},{"id":17,"parentId":0,"name":"基础管理","menuType":0,"orderNo":10000},{"id":30,"parentId":20,"name":"库存信息明细","menuType":0,"orderNo":9000},{"id":32,"parentId":20,"name":"库存视图","menuType":0,"orderNo":9000},{"id":26,"parentId":19,"name":"入库单明细","menuType":0,"orderNo":9000},{"id":22,"parentId":17,"name":"区域信息","menuType":0,"orderNo":9000},{"id":12,"parentId":0,"name":"任务管理","menuType":0,"orderNo":9000},{"id":31,"parentId":17,"name":"巷道信息","menuType":0,"orderNo":8500},{"id":27,"parentId":19,"name":"出库单","menuType":0,"orderNo":8000},{"id":23,"parentId":17,"name":"货位信息","menuType":0,"orderNo":8000},{"id":19,"parentId":0,"name":"单据管理","menuType":0,"orderNo":8000},{"id":28,"parentId":19,"name":"出库单明细","menuType":0,"orderNo":7000},{"id":24,"parentId":17,"name":"物料信息","menuType":0,"orderNo":7000},{"id":20,"parentId":0,"name":"库存管理","menuType":0,"orderNo":7000},{"id":1,"parentId":0,"name":"用户管理","menuType":0,"orderNo":4000},{"id":2,"parentId":1,"name":"用户管理","menuType":0,"orderNo":2000},{"id":3,"parentId":1,"name":"权限管理","menuType":0,"orderNo":1000},{"id":4,"parentId":1,"name":"角色管理","menuType":0,"orderNo":900},{"id":13,"parentId":12,"name":"任务信息","menuType":0,"orderNo":500},{"id":8,"parentId":0,"name":"日志管理","menuType":0,"orderNo":500},{"id":6,"parentId":5,"name":"菜单设置","menuType":0,"orderNo":10},{"id":7,"parentId":5,"name":"下拉框绑定设置","menuType":0,"orderNo":10},{"id":9,"parentId":8,"name":"接口日志","menuType":0,"orderNo":0},{"id":5,"parentId":0,"name":"系统设置","menuType":0,"orderNo":0},{"id":41,"parentId":0,"name":"入库订单","menuType":1,"orderNo":0}]
--------------------------------
2024/11/19 23:24:31|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:24:31|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:24:31|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"enable\"]"}
--------------------------------
2024/11/19 23:24:31|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"dicId\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:24:31|
响应数据 -  响应数据类型:System.String
[{"dicNo":"enable","config":"{valueField: 'Enable',\r\ntextField: 'Enable',\r\n containField: null,\r\n  handler: null }","data":[{"key":"0","value":"否"},{"key":"1","value":"是"}]},{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/19 23:24:31|
响应数据 -  响应数据类型:System.String
{"total":17,"rows":[{"dicId":81,"config":null,"sql":null,"dicName":"是否值","dicNo":"yesno","enable":1,"orderNo":0,"parentId":0,"remark":null,"dicList":null,"creater":"admin","createDate":"2024-10-30 09:41:24","modifier":null,"modifyDate":null},{"dicId":79,"config":null,"sql":"SELECT Id AS 'key', AreaName AS 'value' FROM Dt_AreaInfo\r\nUNION ALL\r\nSELECT '0' AS 'key', '无' AS 'value'","dicName":"区域","dicNo":"areainfo","enable":1,"orderNo":null,"parentId":0,"remark":null,"dicList":null,"creater":"admin","createDate":"2024-10-30 09:41:24","modifier":null,"modifyDate":null},{"dicId":78,"config":null,"sql":"SELECT Id AS 'key', WarehouseName AS 'value' FROM Dt_Warehouse\r\nUNION ALL\r\nSELECT '0' AS 'key', '无' AS 'value'","dicName":"仓库","dicNo":"warehouse","enable":1,"orderNo":null,"parentId":0,"remark":null,"dicList":null,"creater":"admin","createDate":"2024-10-30 09:41:24","modifier":null,"modifyDate":null},{"dicId":75,"config":null,"sql":null,"dicName":"日志状态","dicNo":"LogState","enable":1,"orderNo":null,"parentId":0,"remark":null,"dicList":null,"creater":"超级管理员","createDate":"2024-10-30 09:41:24","modifier":null,"modifyDate":"2024-09-04 11:07:01"},{"dicId":72,"config":null,"sql":"SELECT DepartmentId AS 'key',DepartmentId AS 'id',ParentId AS parentId,DepartmentName as 'value' FROM Sys_Department","dicName":"组织机构","dicNo":"组织机构","enable":1,"orderNo":null,"parentId":0,"remark":null,"dicList":null,"creater":"system","createDate":"2024-10-30 09:41:24","modifier":null,"modifyDate":"2024-09-04 11:07:01"},{"dicId":71,"config":null,"sql":null,"dicName":"定时任务状态","dicNo":"定时任务状态","enable":1,"orderNo":null,"parentId":0,"remark":null,"dicList":null,"creater":"system","createDate":"2024-10-30 09:41:24","modifier":null,"modifyDate":"2024-09-04 11:07:01"},{"dicId":70,"config":null,"sql":null,"dicName":"请求方式","dicNo":"请求方式","enable":1,"orderNo":null,"parentId":0,"remark":null,"dicList":null,"creater":"system","createDate":"2024-10-30 09:41:24","modifier":null,"modifyDate":"2024-09-04 11:07:01"},{"dicId":67,"config":null,"sql":null,"dicName":"nav","dicNo":"nav","enable":1,"orderNo":null,"parentId":0,"remark":null,"dicList":null,"creater":"system","createDate":"2024-10-30 09:41:24","modifier":null,"modifyDate":"2024-09-04 11:07:01"},{"dicId":66,"config":null,"sql":"SELECT RoleId AS id,parentId,RoleId AS [key],RoleName AS value FROM Sys_Role","dicName":"级联角色","dicNo":"tree_roles","enable":1,"orderNo":null,"parentId":0,"remark":null,"dicList":null,"creater":"system","createDate":"2024-10-30 09:41:24","modifier":"超级管理员","modifyDate":"2020-11-20 23:08:03"},{"dicId":59,"config":"{\r\n valueField: 'IsRegregisterPhone',\r\n textField: 'IsRegregisterPhone',\r\n  containField:null \r\n}","sql":null,"dicName":"手机用户","dicNo":"isphone","enable":1,"orderNo":null,"parentId":0,"remark":null,"dicList":null,"creater":"system","createDate":"2024-10-30 09:41:24","modifier":"超级管理员","modifyDate":"2020-11-20 23:05:48"},{"dicId":50,"config":"{\r\n valueField: 'Enable',\r\n textField: 'Enable',\r\n  containField:null \r\n}","sql":null,"dicName":"启用状态","dicNo":"status","enable":1,"orderNo":null,"parentId":0,"remark":null,"dicList":null,"creater":"system","createDate":"2024-10-30 09:41:24","modifier":null,"modifyDate":"2024-09-04 11:07:01"},{"dicId":49,"config":"{\r\n valueField: 'Gender',\r\n textField: 'Gender',\r\n  containField:null \r\n}","sql":null,"dicName":"性别","dicNo":"gender","enable":1,"orderNo":null,"parentId":0,"remark":null,"dicList":null,"creater":"system","createDate":"2024-10-30 09:41:24","modifier":"测试超级管理员","modifyDate":"2018-07-23 11:10:28"},{"dicId":35,"config":"{\r\n valueField: 'AuditStatus',\r\n textField: 'AuditStatus',\r\n  containField:null \r\n}","sql":null,"dicName":"审核状态","dicNo":"audit","enable":1,"orderNo":null,"parentId":0,"remark":null,"dicList":null,"creater":"system","createDate":"2024-10-30 09:41:24","modifier":"超级管理员","modifyDate":"2023-05-08 01:05:44"},{"dicId":32,"config":"{valueField: 'Role_Id',\r\n textField: 'RoleName', \r\n containField: ['Role_Id','RoleName'],\r\n handler: null }\r\n","sql":"SELECT RoleId as 'key',RoleName as 'value' FROM Sys_Role WHERE Enable=1","dicName":"角色列表","dicNo":"roles","enable":1,"orderNo":123,"parentId":0,"remark":"sql语句需要key,value列,界面才能绑定数据源","dicList":null,"creater":"system","createDate":"2024-10-30 09:41:24","modifier":"测试超级管理员","modifyDate":"2018-07-13 15:03:53"},{"dicId":31,"config":"{valueField: 'LogType',\r\n textField: 'LogType', \r\n containField: null,\r\n handler: null }\r\n","sql":null,"dicName":"日志类型","dicNo":"log","enable":1,"orderNo":null,"parentId":0,"remark":null,"dicList":null,"creater":"system","createDate":"2024-10-30 09:41:24","modifier":"超级管理员","modifyDate":"2022-04-04 13:21:54"},{"dicId":30,"config":"{valueField: 'Success',\r\n textField: 'Success', \r\n containField: null,\r\n handler: null }\r\n","sql":null,"dicName":"响应状态","dicNo":"restatus","enable":1,"orderNo":null,"parentId":0,"remark":null,"dicList":null,"creater":"system","createDate":"2024-10-30 09:41:24","modifier":"测试超级管理员","modifyDate":"2018-06-12 10:21:48"},{"dicId":3,"config":"{valueField: 'Enable',\r\ntextField: 'Enable',\r\n containField: null,\r\n  handler: null }","sql":null,"dicName":"是否值","dicNo":"enable","enable":1,"orderNo":null,"parentId":0,"remark":null,"dicList":null,"creater":"system","createDate":"2024-10-30 09:41:24","modifier":"超级管理员","modifyDate":"2022-01-03 18:30:18"}],"summary":null}
--------------------------------
2024/11/19 23:26:42|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:26:42|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:26:44|
响应数据 -  响应数据类型:System.String
[{"id":29,"name":"库存信息","url":"/stockInfo","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfo","permission":["Search","Add","Delete","Update","Import","Export","HandOutbound","HandOutboundt"]},{"id":25,"name":"入库单","url":"/inboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_InboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-notebook-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":30,"name":"库存信息明细","url":"stockInfoDetail","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfoDetail","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":32,"name":"库存视图","url":"/stockView","parentId":20,"icon":"","enable":1,"tableName":"StockView","permission":["Search"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-shopping-bag-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":27,"name":"出库单","url":"/outboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_OutboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":23,"name":"货位信息","url":"/locationInfo","parentId":17,"icon":"","enable":1,"tableName":"Dt_LocationInfo","permission":["Search","Update","Export","Enable","Disable"]},{"id":19,"name":"单据管理","url":"","parentId":0,"icon":"el-icon-document","enable":1,"tableName":"/","permission":["Search"]},{"id":20,"name":"库存管理","url":"","parentId":0,"icon":"el-icon-discount","enable":1,"tableName":"/","permission":["Search"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":null,"enable":1,"tableName":"Dt_Task","permission":["Search","Export","TaskCancellation","TaskHandCompleted"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]
--------------------------------
2024/11/19 23:26:46|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/InboundOrder/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:26:46|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:26:46|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/InboundOrder/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:26:46|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"inOrderType\",\"inboundState\",\"createType\",\"orderDetailStatusEnum\"]"}
--------------------------------
2024/11/19 23:26:47|
响应数据 -  响应数据类型:System.String
[{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/19 23:26:48|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"stockStatusEmun\",\"materialTypeEnum\",\"yesno\"]"}
--------------------------------
2024/11/19 23:26:48|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:26:48|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:26:48|
响应数据 -  响应数据类型:System.String
[{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"yesno","config":null,"data":[{"key":"true","value":"是"},{"key":"false","value":"否"}]},{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/19 23:26:50|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:19:08"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:26:52|
响应数据 -  响应数据类型:System.String
{"total":86,"rows":[{"id":95,"orderNo":"颗粒料","upperOrderNo":"20018134","orderType":2,"orderStatus":0,"createType":0,"remark":null,"orderName":"TN25Y-A","details":null,"creater":null,"createDate":"2024-11-19 23:26:52","modifier":null,"modifyDate":null},{"id":94,"orderNo":"颗粒料","upperOrderNo":"20015500","orderType":2,"orderStatus":0,"createType":0,"remark":null,"orderName":"TPW33-G(普通大产品料)","details":null,"creater":null,"createDate":"2024-11-19 23:26:52","modifier":null,"modifyDate":null},{"id":93,"orderNo":"颗粒料","upperOrderNo":"20015552","orderType":2,"orderStatus":0,"createType":0,"remark":null,"orderName":"TP4W回料","details":null,"creater":null,"createDate":"2024-11-19 23:26:52","modifier":null,"modifyDate":null},{"id":92,"orderNo":"氧化锌","upperOrderNo":"30000005","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":"广恒锌","details":null,"creater":null,"createDate":"2024-11-19 23:26:52","modifier":null,"modifyDate":null},{"id":91,"orderNo":"氧化铁","upperOrderNo":"30000013","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":"韩国裕益铁红2B","details":null,"creater":null,"createDate":"2024-11-19 23:26:52","modifier":null,"modifyDate":null},{"id":90,"orderNo":"氧化铁","upperOrderNo":"30000015","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":"森下铁","details":null,"creater":null,"createDate":"2024-11-19 23:26:52","modifier":null,"modifyDate":null},{"id":89,"orderNo":"取消桐乡华信氧化铜","upperOrderNo":"CT","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:26:52","modifier":null,"modifyDate":null},{"id":88,"orderNo":"取消海宁虎震五氧化二钒","upperOrderNo":"VH","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:26:52","modifier":null,"modifyDate":null},{"id":87,"orderNo":"五氧化二钽","upperOrderNo":"Ta","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:26:52","modifier":null,"modifyDate":null},{"id":86,"orderNo":"正辛醇","upperOrderNo":"XC","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:26:52","modifier":null,"modifyDate":null},{"id":85,"orderNo":"台湾色料硬脂酸锌","upperOrderNo":"YT","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:26:52","modifier":null,"modifyDate":null},{"id":84,"orderNo":"新增湖州菱湖硬脂酸锌","upperOrderNo":"YZ","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:26:52","modifier":null,"modifyDate":null},{"id":83,"orderNo":"台湾长春聚乙烯醇(BF-17)","upperOrderNo":"JF","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:26:52","modifier":null,"modifyDate":null},{"id":82,"orderNo":"台湾长春聚乙烯醇(BP-05)","upperOrderNo":"JP","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:26:52","modifier":null,"modifyDate":null},{"id":81,"orderNo":"上海可乐丽聚乙烯醇(235)","upperOrderNo":"JH","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:26:52","modifier":null,"modifyDate":null},{"id":80,"orderNo":"上海可乐丽聚乙烯醇(117k)","upperOrderNo":"JS","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:26:52","modifier":null,"modifyDate":null},{"id":79,"orderNo":"海宁盈通聚乙烯醇(SF-1)","upperOrderNo":"JY","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:26:52","modifier":null,"modifyDate":null},{"id":78,"orderNo":"海宁盈通聚乙烯醇(1799)","upperOrderNo":"JX","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:26:52","modifier":null,"modifyDate":null},{"id":77,"orderNo":"海宁盈通聚乙烯醇(1788)","upperOrderNo":"JW","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:26:52","modifier":null,"modifyDate":null},{"id":76,"orderNo":"新增上海孚钜日本UD-653氢氧化镁","upperOrderNo":"MR","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:26:52","modifier":null,"modifyDate":null},{"id":75,"orderNo":"邢台镁神轻质氧化镁","upperOrderNo":"MX","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:26:52","modifier":null,"modifyDate":null},{"id":74,"orderNo":"青岛和升怡轻质氧化镁","upperOrderNo":"Mg","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:26:52","modifier":null,"modifyDate":null},{"id":73,"orderNo":"新增上海振刚钢球","upperOrderNo":"GZ","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:26:52","modifier":null,"modifyDate":null},{"id":72,"orderNo":"新增山东黄河钢球","upperOrderNo":"GW","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:26:52","modifier":null,"modifyDate":null},{"id":71,"orderNo":"安徽霍山钢球","upperOrderNo":"GA","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:26:52","modifier":null,"modifyDate":null},{"id":70,"orderNo":"兴化人和钢球","upperOrderNo":"GH","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:26:52","modifier":null,"modifyDate":null},{"id":68,"orderNo":"萧山长城铝业氧化铝","upperOrderNo":"YX","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:26:52","modifier":null,"modifyDate":null},{"id":67,"orderNo":"萧山长城铝业刚玉粉","upperOrderNo":"GX","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:26:52","modifier":null,"modifyDate":null},{"id":66,"orderNo":"二氧化锡","upperOrderNo":"Sn","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:26:52","modifier":null,"modifyDate":null},{"id":65,"orderNo":"二氧化钛","upperOrderNo":"Ti","orderType":1,"orderStatus":0,"createType":0,"remark":null,"orderName":null,"details":null,"creater":null,"createDate":"2024-11-19 23:26:52","modifier":null,"modifyDate":null}],"summary":null}
--------------------------------
2024/11/19 23:26:55|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:26:55|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:26:55|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:19:08"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:26:55|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:26:55|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:19:08"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:26:57|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:26:57|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:26:57|
响应数据 -  响应数据类型:System.String
[{"id":29,"name":"库存信息","url":"/stockInfo","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfo","permission":["Search","Add","Delete","Update","Import","Export","HandOutbound","HandOutboundt"]},{"id":25,"name":"入库单","url":"/inboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_InboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-notebook-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":30,"name":"库存信息明细","url":"stockInfoDetail","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfoDetail","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":32,"name":"库存视图","url":"/stockView","parentId":20,"icon":"","enable":1,"tableName":"StockView","permission":["Search"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-shopping-bag-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":27,"name":"出库单","url":"/outboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_OutboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":23,"name":"货位信息","url":"/locationInfo","parentId":17,"icon":"","enable":1,"tableName":"Dt_LocationInfo","permission":["Search","Update","Export","Enable","Disable"]},{"id":19,"name":"单据管理","url":"","parentId":0,"icon":"el-icon-document","enable":1,"tableName":"/","permission":["Search"]},{"id":20,"name":"库存管理","url":"","parentId":0,"icon":"el-icon-discount","enable":1,"tableName":"/","permission":["Search"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":null,"enable":1,"tableName":"Dt_Task","permission":["Search","Export","TaskCancellation","TaskHandCompleted"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]
--------------------------------
2024/11/19 23:26:57|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:26:57|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:26:57|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"stockStatusEmun\",\"materialTypeEnum\",\"yesno\"]"}
--------------------------------
2024/11/19 23:26:57|
响应数据 -  响应数据类型:System.String
[{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"yesno","config":null,"data":[{"key":"true","value":"是"},{"key":"false","value":"否"}]},{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/19 23:26:57|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:19:08"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:27:14|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:27:14|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:27:14|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"stockStatusEmun\",\"yesno\"]"}
--------------------------------
2024/11/19 23:27:14|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:27:14|
响应数据 -  响应数据类型:System.String
[{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"yesno","config":null,"data":[{"key":"true","value":"是"},{"key":"false","value":"否"}]}]
--------------------------------
2024/11/19 23:27:14|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:19:08"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:27:26|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:27:26|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:27:26|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"stockStatusEmun\",\"yesno\"]"}
--------------------------------
2024/11/19 23:27:26|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:27:26|
响应数据 -  响应数据类型:System.String
[{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"yesno","config":null,"data":[{"key":"true","value":"是"},{"key":"false","value":"否"}]}]
--------------------------------
2024/11/19 23:27:26|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:19:08"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:27:28|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:27:28|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:27:28|
响应数据 -  响应数据类型:System.String
[{"id":29,"name":"库存信息","url":"/stockInfo","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfo","permission":["Search","Add","Delete","Update","Import","Export","HandOutbound","HandOutboundt"]},{"id":25,"name":"入库单","url":"/inboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_InboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-notebook-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":30,"name":"库存信息明细","url":"stockInfoDetail","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfoDetail","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":32,"name":"库存视图","url":"/stockView","parentId":20,"icon":"","enable":1,"tableName":"StockView","permission":["Search"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-shopping-bag-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":27,"name":"出库单","url":"/outboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_OutboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":23,"name":"货位信息","url":"/locationInfo","parentId":17,"icon":"","enable":1,"tableName":"Dt_LocationInfo","permission":["Search","Update","Export","Enable","Disable"]},{"id":19,"name":"单据管理","url":"","parentId":0,"icon":"el-icon-document","enable":1,"tableName":"/","permission":["Search"]},{"id":20,"name":"库存管理","url":"","parentId":0,"icon":"el-icon-discount","enable":1,"tableName":"/","permission":["Search"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":null,"enable":1,"tableName":"Dt_Task","permission":["Search","Export","TaskCancellation","TaskHandCompleted"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]
--------------------------------
2024/11/19 23:27:33|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:27:33|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:27:33|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:27:33|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"stockStatusEmun\",\"yesno\"]"}
--------------------------------
2024/11/19 23:27:33|
响应数据 -  响应数据类型:System.String
[{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"yesno","config":null,"data":[{"key":"true","value":"是"},{"key":"false","value":"否"}]}]
--------------------------------
2024/11/19 23:27:33|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:19:08"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:27:38|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:27:38|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:27:38|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:19:08"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:27:38|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:27:38|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:19:08"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:27:54|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:27:54|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:27:54|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"stockStatusEmun\",\"inventoryMaterialType\",\"yesno\"]"}
--------------------------------
2024/11/19 23:27:54|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:27:54|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"stockStatusEmun\",\"inventoryMaterialType\",\"yesno\"]"}
--------------------------------
2024/11/19 23:27:54|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:27:54|
响应数据 -  响应数据类型:System.String
[{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"yesno","config":null,"data":[{"key":"true","value":"是"},{"key":"false","value":"否"}]},{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/19 23:27:54|
响应数据 -  响应数据类型:System.String
[{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"yesno","config":null,"data":[{"key":"true","value":"是"},{"key":"false","value":"否"}]},{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/19 23:27:54|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:19:08"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:27:54|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:19:08"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:27:56|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:27:56|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:27:56|
响应数据 -  响应数据类型:System.String
[{"id":29,"name":"库存信息","url":"/stockInfo","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfo","permission":["Search","Add","Delete","Update","Import","Export","HandOutbound","HandOutboundt"]},{"id":25,"name":"入库单","url":"/inboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_InboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-notebook-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":30,"name":"库存信息明细","url":"stockInfoDetail","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfoDetail","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":32,"name":"库存视图","url":"/stockView","parentId":20,"icon":"","enable":1,"tableName":"StockView","permission":["Search"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-shopping-bag-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":27,"name":"出库单","url":"/outboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_OutboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":23,"name":"货位信息","url":"/locationInfo","parentId":17,"icon":"","enable":1,"tableName":"Dt_LocationInfo","permission":["Search","Update","Export","Enable","Disable"]},{"id":19,"name":"单据管理","url":"","parentId":0,"icon":"el-icon-document","enable":1,"tableName":"/","permission":["Search"]},{"id":20,"name":"库存管理","url":"","parentId":0,"icon":"el-icon-discount","enable":1,"tableName":"/","permission":["Search"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":null,"enable":1,"tableName":"Dt_Task","permission":["Search","Export","TaskCancellation","TaskHandCompleted"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]
--------------------------------
2024/11/19 23:27:59|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"stockStatusEmun\",\"inventoryMaterialType\",\"yesno\"]"}
--------------------------------
2024/11/19 23:27:59|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:27:59|
响应数据 -  响应数据类型:System.String
[{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"yesno","config":null,"data":[{"key":"true","value":"是"},{"key":"false","value":"否"}]},{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/19 23:27:59|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:19:08"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:28:59|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:28:59|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Menu/getTreeMenu","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:29:01|
响应数据 -  响应数据类型:System.String
[{"id":29,"name":"库存信息","url":"/stockInfo","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfo","permission":["Search","Add","Delete","Update","Import","Export","HandOutbound","HandOutboundt"]},{"id":25,"name":"入库单","url":"/inboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_InboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-notebook-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":30,"name":"库存信息明细","url":"stockInfoDetail","parentId":20,"icon":"","enable":1,"tableName":"Dt_StockInfoDetail","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":32,"name":"库存视图","url":"/stockView","parentId":20,"icon":"","enable":1,"tableName":"StockView","permission":["Search"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-shopping-bag-2","enable":1,"tableName":"/","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":27,"name":"出库单","url":"/outboundOrder","parentId":19,"icon":"","enable":1,"tableName":"Dt_OutboundOrder","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":23,"name":"货位信息","url":"/locationInfo","parentId":17,"icon":"","enable":1,"tableName":"Dt_LocationInfo","permission":["Search","Update","Export","Enable","Disable"]},{"id":19,"name":"单据管理","url":"","parentId":0,"icon":"el-icon-document","enable":1,"tableName":"/","permission":["Search"]},{"id":20,"name":"库存管理","url":"","parentId":0,"icon":"el-icon-discount","enable":1,"tableName":"/","permission":["Search"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":null,"enable":1,"tableName":"Dt_Task","permission":["Search","Export","TaskCancellation","TaskHandCompleted"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]
--------------------------------
2024/11/19 23:29:01|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:29:01|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:29:01|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/Sys_Dictionary/GetVueDictionary","QueryString":"","BodyData":"[\"stockStatusEmun\",\"inventoryMaterialType\",\"yesno\"]"}
--------------------------------
2024/11/19 23:29:01|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:29:02|
响应数据 -  响应数据类型:System.String
[{"dicNo":"yesno","config":null,"data":[{"key":"true","value":"是"},{"key":"false","value":"否"}]},{"dicNo":"inOrderType","config":"","data":[{"key":"100","value":"生产入库单"},{"key":"105","value":"生产退料单"},{"key":"110","value":"采购入库单"},{"key":"115","value":"调拨入库单"},{"key":"120","value":"销售退货单"},{"key":"125","value":"空盘入库单"},{"key":"130","value":"其他入库单"}]},{"dicNo":"outOrderType","config":"","data":[{"key":"200","value":"生产返工单"},{"key":"205","value":"生产发料单"},{"key":"210","value":"采购退货单"},{"key":"215","value":"调拨出库单"},{"key":"220","value":"销售出库单"},{"key":"225","value":"空盘出库单"},{"key":"230","value":"质检出库单"},{"key":"235","value":"其他出库单"}]},{"dicNo":"inboundState","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"入库中"},{"key":"2","value":"入库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"createType","config":"","data":[{"key":"0","value":"系统内创建"},{"key":"1","value":"上游系统推送"}]},{"dicNo":"enableEnum","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"enableStatusEnum","config":"","data":[{"key":"0","value":"正常"},{"key":"1","value":"只入"},{"key":"2","value":"只出"},{"key":"3","value":"禁用"}]},{"dicNo":"locationStatusEnum","config":"","data":[{"key":"0","value":"空闲"},{"key":"1","value":"锁定"},{"key":"2","value":"有货"},{"key":"98","value":"空托锁定"},{"key":"99","value":"空托盘"}]},{"dicNo":"locationTypeEnum","config":"","data":[{"key":"1","value":"立库货位"},{"key":"2","value":"平库货位"},{"key":"3","value":"成品出库站台"},{"key":"4","value":"原材料出库站台"},{"key":"5","value":"空托出库站台"},{"key":"6","value":"成品入库站台"},{"key":"7","value":"原材料入库站台"},{"key":"8","value":"空托入站台"}]},{"dicNo":"taskTypeEnum","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"}]},{"dicNo":"taskStatusEnum","config":"","data":[{"key":"200","value":"任务已下发"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"140","value":"移库任务执行中"},{"key":"145","value":"移库任务执行中"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"500","value":"新建"},{"key":"510","value":"执行中"},{"key":"520","value":"完成"}]},{"dicNo":"outboundStatusEnum","config":"","data":[{"key":"0","value":"未开始"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"98","value":"取消"},{"key":"99","value":"关闭"}]},{"dicNo":"orderDetailStatusEnum","config":"","data":[{"key":"0","value":"新建"},{"key":"10","value":"组盘入库"},{"key":"60","value":"出库部分分配完成"},{"key":"70","value":"出库分配完成"},{"key":"80","value":"出库中"},{"key":"100","value":"完成"}]},{"dicNo":"stockStatusEmun","config":"","data":[{"key":"1","value":"组盘暂存"},{"key":"2","value":"组盘撤销"},{"key":"3","value":"入库确认"},{"key":"4","value":"入库撤销"},{"key":"5","value":"已入库"},{"key":"6","value":"入库完成"},{"key":"7","value":"出库锁定"},{"key":"8","value":"出库完成"},{"key":"9","value":"移库锁定"}]},{"dicNo":"stockChangeType","config":"","data":[{"key":"0","value":"组盘"},{"key":"1","value":"入库"},{"key":"2","value":"出库"},{"key":"3","value":"移库"},{"key":"4","value":"锁定"}]},{"dicNo":"outStockStatus","config":"","data":[{"key":"0","value":"已分配"},{"key":"1","value":"出库中"},{"key":"2","value":"出库完成"},{"key":"99","value":"撤销"}]}]
--------------------------------
2024/11/19 23:29:04|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:19:08"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:29:13|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":""}
--------------------------------
2024/11/19 23:29:13|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:29:13|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:19:08"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:29:13|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:29:13|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:19:08"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:29:13|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:29:13|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:19:08"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:29:13|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:29:13|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:19:08"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}
--------------------------------
2024/11/19 23:29:14|
请求数据 -  请求数据类型:WIDESEA_Core.Middlewares.RequestLogInfo
{"Path":"/api/StockInfo/getPageData","QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}
--------------------------------
2024/11/19 23:29:14|
响应数据 -  响应数据类型:System.String
{"total":46,"rows":[{"id":130,"palletCode":"FK240806D1#12","materialType":0,"locationCode":"R02-003-005-002-01","isFull":true,"stockStatus":5,"materialweight":1.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 11:33:07","modifier":"admin","modifyDate":"2024-11-19 23:19:08"},{"id":129,"palletCode":"FK240806D1#28","materialType":0,"locationCode":"R02-002-005-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-15 10:56:11","modifier":"admin","modifyDate":"2024-11-19 22:54:59"},{"id":128,"palletCode":"KTP1141143433","materialType":2,"locationCode":"R01-001-001-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"wms","createDate":"2024-11-14 14:34:46","modifier":null,"modifyDate":"2024-11-14 14:51:44"},{"id":127,"palletCode":"FK240806D1#21","materialType":0,"locationCode":"R02-004-005-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:21:32","modifier":null,"modifyDate":"2024-11-14 14:25:09"},{"id":126,"palletCode":"FK240806D1#32","materialType":0,"locationCode":"R02-002-001-002-01","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:20:20","modifier":null,"modifyDate":"2024-11-14 14:23:09"},{"id":125,"palletCode":"KTP1114141193","materialType":2,"locationCode":"R01-001-035-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 14:11:42","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":124,"palletCode":"FK240806D1#01","materialType":0,"locationCode":"R02-001-001-002-02","isFull":true,"stockStatus":5,"materialweight":0.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 13:33:30","modifier":null,"modifyDate":"2024-11-14 13:37:15"},{"id":123,"palletCode":"KTP1114120728","materialType":2,"locationCode":"R01-004-011-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:17"},{"id":122,"palletCode":"KTP1114120727","materialType":2,"locationCode":"R01-004-010-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":121,"palletCode":"KTP1114120726","materialType":2,"locationCode":"R01-004-009-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":120,"palletCode":"KTP1114120725","materialType":2,"locationCode":"R01-004-008-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:16"},{"id":119,"palletCode":"KTP1114120724","materialType":2,"locationCode":"R01-004-007-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:15"},{"id":118,"palletCode":"KTP1114120723","materialType":2,"locationCode":"R01-004-006-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":117,"palletCode":"KTP1114120722","materialType":2,"locationCode":"R01-004-005-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":116,"palletCode":"KTP1114120721","materialType":2,"locationCode":"R01-004-004-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:14"},{"id":115,"palletCode":"KTP1114120720","materialType":2,"locationCode":"R01-004-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:13"},{"id":114,"palletCode":"KTP1114120719","materialType":2,"locationCode":"R01-004-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":113,"palletCode":"KTP1114120718","materialType":2,"locationCode":"R01-003-010-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:12"},{"id":112,"palletCode":"KTP1114120717","materialType":2,"locationCode":"R01-003-009-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":111,"palletCode":"KTP1114120716","materialType":2,"locationCode":"R01-003-008-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:11"},{"id":110,"palletCode":"KTP1114120715","materialType":2,"locationCode":"R01-003-007-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":109,"palletCode":"KTP1114120714","materialType":2,"locationCode":"R01-003-006-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":108,"palletCode":"KTP1114120713","materialType":2,"locationCode":"R01-003-005-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:10"},{"id":107,"palletCode":"KTP1114120712","materialType":2,"locationCode":"R01-003-004-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":106,"palletCode":"KTP1114120711","materialType":2,"locationCode":"R01-003-003-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":105,"palletCode":"KTP1114120710","materialType":2,"locationCode":"R01-003-002-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:09"},{"id":104,"palletCode":"KTP1114120709","materialType":2,"locationCode":"R01-003-001-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-14 14:35:07"},{"id":103,"palletCode":"KTP1114120708","materialType":2,"locationCode":"R01-001-003-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":"","details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 11:10:42"},{"id":102,"palletCode":"KTP1114120707","materialType":2,"locationCode":"R01-001-002-001-02","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:56:11"},{"id":101,"palletCode":"KTP1114120706","materialType":2,"locationCode":"R01-002-011-001-01","isFull":true,"stockStatus":5,"materialweight":8.00,"remark":null,"details":null,"creater":"WMS","createDate":"2024-11-14 12:07:58","modifier":null,"modifyDate":"2024-11-15 08:52:13"}],"summary":null}