test.log
286 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
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
[2021-08-24 17:03:20] [INFO] : ======================================================================================
[2021-08-24 17:03:20] [INFO] : http://test.uap.diligrp.com/api/authenticationApi/loginWeb
{'data': None, 'json': {'userName': 'sy_chen', 'password': 'HKJddHUXcf6jZCNN2JwsGyHXeupIO+vXljSMdz3v7D1JuZrbBRMxKu9HsNhC0GpSuKaf9s2N/QCXBX+QmKV6g8+GIBsUNegsgwsCq1+ghsUKUdT9cFBq40jNCkhrnEjf4S2Txv2XBXAUS8f0zQb1TKaimO4anmm+OmycF8ERKI8='}, 'headers': {'Content-Type': 'text/plain;charset=utf-8', 'Host': 'test.uap.diligrp.com', 'Content-Length': '209', 'Expect': '100-continue'}}
[2021-08-24 17:03:20] [INFO] : ======================================================================================
[2021-08-24 17:03:20] [INFO] : http://test.uap.diligrp.com/api/authenticationApi/loginWeb
{'data': None, 'json': {'userName': '哈尔滨田太子', 'password': 'Atsysf0ichEVI6nrNDjebv4a2i4gYkPkgHDHV+5URJPqUPjYLrUdR3KI7fHlcYrbP28ReCAQrqZGvQnfcNyQL7NMIjS+cntWU2KlCj4So408/H9Sll+kQOWDQBwd62cU4kvpko6LKQy3pw+rVAtFN8Pg1OjXdfp3ICkFcHyU2gw='}, 'headers': {'Content-Type': 'text/plain;charset=utf-8', 'Host': 'test.uap.diligrp.com', 'Content-Length': '209', 'Expect': '100-continue'}}
[2021-08-24 17:03:21] [INFO] : ======================================================================================
[2021-08-24 17:03:21] [INFO] : http://test.uap.diligrp.com/login/login.action
{'data': b'userName=sy_chen&password=123456', 'json': None, 'headers': {'Host': 'test.uap.diligrp.com', 'Connection': 'keep-alive', 'Content-Length': '33', 'Cache-Control': 'max-age=0', 'Upgrade-Insecure-Requests': '1', 'Origin': 'http://test.uap.diligrp.com', 'Content-Type': 'application/x-www-form-urlencoded', 'User-Agent': 'Mozilla/5.0(WindowsNT10.0;Win64;x64)AppleWebKit/537.36(KHTML,likeGecko)Chrome/90.0.4430.212Safari/537.36', 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9', 'Referer': 'http://test.uap.diligrp.com/login/index.html', 'Accept-Encoding': 'gzip,deflate', 'Accept-Language': 'zh-CN,zh-TW;q=0.9,zh;q=0.8,en;q=0.7', 'Cookie': 'UAP_accessToken=;UAP_refreshToken=;UAP_loginPath='}, 'allow_redirects': False}
[2021-08-24 17:03:21] [INFO] : ======================================================================================
[2021-08-24 17:03:21] [INFO] : http://test.jmsf.diligrp.com:8385/FeedbackOrderController/list.action
{'data': 'page=1&order=desc\n &metadata[payTime]={"provider":"datetimeProvider","index":10,"field":"payTime"}\n &metadata[feebackAmount]={"provider":"moneyProvider","index":20,"field":"feebackAmount"}\n &metadata[unsettledAmount]={"provider":"moneyProvider","index":40,"field":"unsettledAmount"}\n &feedbackCustomerId=16&queryType=2&\n &payTimeStart= 2021-07-03 00:00:00&payTimeEnd=2021-08-24 17:03:21.735476', 'json': None, 'headers': {'Host': 'test.jmsf.diligrp.com:8385', 'Connection': 'keep-alive', 'Content-Length': '496', 'Accept': 'application/json,text/javascript,*/*;q=0.01', 'Origin': 'http://test.jmsf.diligrp.com:8385', 'X-Requested-With': 'XMLHttpRequest', 'User-Agent': 'Mozilla/5.0(WindowsNT6.2;WOW64)AppleWebKit/537.36(KHTML,likeGecko)Chrome/84.0.4147.105Safari/537.36', 'Content-Type': 'application/x-www-form-urlencoded', 'Accept-Language': 'zh-CN,zh;q=0.9', 'Referer': 'http://test.jmsf.diligrp.com:8385/FeedbackOrderController/list', 'Accept-Encoding': 'gzip,deflate'}}
[2021-08-24 17:03:21] [INFO] : ======================================================================================
[2021-08-24 17:03:21] [INFO] : http://test.jmsf.diligrp.com:8385/FeedbackOrderController/list.action
{'data': 'page=1&order=desc\n &metadata[payTime]={"provider":"datetimeProvider","index":10,"field":"payTime"}\n &metadata[feebackAmount]={"provider":"moneyProvider","index":20,"field":"feebackAmount"}\n &metadata[unsettledAmount]={"provider":"moneyProvider","index":40,"field":"unsettledAmount"}\n &feedbackCustomerId=16&queryType=2&\n &payTimeStart=2021-07-25 17:03:21&payTimeEnd=2021-08-24 17:03:21', 'json': None, 'headers': {'Host': 'test.jmsf.diligrp.com:8385', 'Connection': 'keep-alive', 'Content-Length': '496', 'Accept': 'application/json,text/javascript,*/*;q=0.01', 'Origin': 'http://test.jmsf.diligrp.com:8385', 'X-Requested-With': 'XMLHttpRequest', 'User-Agent': 'Mozilla/5.0(WindowsNT6.2;WOW64)AppleWebKit/537.36(KHTML,likeGecko)Chrome/84.0.4147.105Safari/537.36', 'Content-Type': 'application/x-www-form-urlencoded', 'Accept-Language': 'zh-CN,zh;q=0.9', 'Referer': 'http://test.jmsf.diligrp.com:8385/FeedbackOrderController/list', 'Accept-Encoding': 'gzip,deflate'}}
[2021-08-24 17:03:21] [INFO] : ======================================================================================
[2021-08-24 17:03:21] [INFO] : http://test.jmsf.diligrp.com:8385/FeedbackOrderController/settlementlist.action
{'data': 'rows=10\n &page=1\n &sort=efb.payment_time\n &order=desc\n &metadata[payTime]={"provider":"datetimeProvider","index":10,"field":"payTime"}\n &metadata[feebackAmount]={"provider":"moneyProvider","index":20,"field":"feebackAmount"}\n &metadata[settledAmount]={"provider":"moneyProvider","index":30,"field":"settledAmount"}\n &metadata[settleTime]={"provider":"datetimeProvider","index":40,"field":"settleTime"}\n &feedbackCustomerId=26\n &settleTimeStart=2021-07-25 17:03:21\n &settleTimeEnd=2021-08-24 17:03:21\n &queryType=1', 'json': None, 'headers': {'Host': 'test.jmsf.diligrp.com:8385', 'Connection': 'keep-alive', 'Content-Length': '651', 'Accept': 'application/json,text/javascript,*/*;q=0.01', 'Origin': 'http://test.jmsf.diligrp.com:8385', 'X-Requested-With': 'XMLHttpRequest', 'User-Agent': 'Mozilla/5.0(WindowsNT6.2;WOW64)AppleWebKit/537.36(KHTML,likeGecko)Chrome/84.0.4147.105Safari/537.36', 'Content-Type': 'application/x-www-form-urlencoded', 'Accept-Language': 'zh-CN,zh;q=0.9', 'Referer': 'http://test.jmsf.diligrp.com:8385/FeedbackOrderController/settlementlist', 'Accept-Encoding': 'gzip,deflate'}}
[2021-08-24 17:03:22] [INFO] : ======================================================================================
[2021-08-24 17:03:22] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=210823173732
None
{}
[2021-08-24 17:03:23] [INFO] : ======================================================================================
[2021-08-24 17:03:23] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=ZC
None
{}
[2021-08-24 17:03:23] [INFO] : ======================================================================================
[2021-08-24 17:03:23] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:03:23] [INFO] : ======================================================================================
[2021-08-24 17:03:23] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"}
{}
[2021-08-24 17:03:23] [INFO] : ======================================================================================
[2021-08-24 17:03:23] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:03:23] [INFO] : ======================================================================================
[2021-08-24 17:03:23] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:03:24] [INFO] : ======================================================================================
[2021-08-24 17:03:24] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:03:24] [INFO] : ======================================================================================
[2021-08-24 17:03:24] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:03:24] [INFO] : ======================================================================================
[2021-08-24 17:03:24] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:03:25] [INFO] : ======================================================================================
[2021-08-24 17:03:25] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66", "carTypeWeight": 10, "plate": "\u5dddB10680", "inGreeterId": 16, "inGreeterName": "\u56fd\u950b", "productId": 2182, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 109, "grossWeightDate": "2021-08-24 17:03:25", "newWeight": 99, "tareWeight": 10, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddB10680", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "cateId": 2182, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": "", "origin": "", "originCode": "", "tradeType": "", "tradeTypeName": "", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": "", "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:03:25] [INFO] : ======================================================================================
[2021-08-24 17:03:25] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108240200199'}
{}
[2021-08-24 17:03:25] [INFO] : ======================================================================================
[2021-08-24 17:03:25] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/5691.action
None
{}
[2021-08-24 17:03:27] [INFO] : ======================================================================================
[2021-08-24 17:03:27] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=210823173732
None
{}
[2021-08-24 17:03:27] [INFO] : ======================================================================================
[2021-08-24 17:03:27] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州
None
{}
[2021-08-24 17:03:27] [INFO] : ======================================================================================
[2021-08-24 17:03:27] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action
{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 5691, 'goodsId': '5705', 'number': '202108240200199', 'modified': '2021-08-24 17:03:27', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川B10680', 'autocomplete-cartype': '456(地排车)', 'carTypeName': '地排车', 'carTypeCode': '456', 'carTypeId': '158', 'carTypeWeight': '10', 'storeTareWeight': '', 'proveType': '666', 'grossWeight': '109', 'tareWeight': '10', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '哈达测试部', 'calcDepId': '129', 'regionName': '234', 'regionId': '0', 'productName': '雪莲果', 'productId': '2182', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-24 17:03:26', 'remark': 'false', 'goodsTagIds': '', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-24 17:03:26', 'tareWeightDate': '2021-08-24 17:03:26', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '国锋', 'inGreeterId': '16', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''}
{}
[2021-08-24 17:03:28] [INFO] : ======================================================================================
[2021-08-24 17:03:28] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doFreeze.action
protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=1&id=5691&goodsId=5705&number=202108240200199&modified=2021-08-24%2017%3A03%3A26&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=20300&customerId=141951&fundAccount=107621&ic=210823173732&customerName=%E5%93%88%E6%B5%8B&customerPhone=18089008005&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DB10680&autocomplete-cartype=456%28%E5%9C%B0%E6%8E%92%E8%BD%A6%29&carTypeName=%E5%9C%B0%E6%8E%92%E8%BD%A6&carTypeCode=456&carTypeId=158&carTypeWeight=10&storeTareWeight=&proveType=666&grossWeight=109&tareWeight=10&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E5%93%88%E8%BE%BE%E6%B5%8B%E8%AF%95%E9%83%A8&calcDepId=129&dep=129®ionName=234®ionId=271&productName=%E9%9B%AA%E8%8E%B2%E6%9E%9C&productId=2182&productArea=%E9%87%8D%E5%BA%86%2C%E9%87%8D%E5%BA%86%E5%B8%82%2C%E4%B8%87%E5%B7%9E%E5%8C%BA&parentId=500100&levelType=&originId=500101&tradeTypeId=&chargeTotalAmount=20300&chargeTotalAmountYuan=203&freezeMoneySymbol=203&comparisonFreezeAmount=203&created=2021-08-24%2017%3A03%3A26&remark=&marketFlag=hd&totalMoney=20300&receivable=20300&collectionPrice=0&discountAmount=0&handReceivableAmount=0&itemReceivableAmount=20300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=20300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=1616&driverTel=&grossWeightDate=2021-08-24%2017%3A03%3A26&tareWeightDate=2021-08-24%2017%3A03%3A26&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=&inGreeterId=0&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=107621&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=488&488=200.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A488%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A20000%2C%22require%22%3A1%7D&billItemCheckIds=489&489=0.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A489%2C%22name%22%3A%22%E8%BF%94%E7%82%B9%22%2C%22receivable%22%3A0%2C%22require%22%3A1%7D&billItemCheckIds=494&494=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A494%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D
{}
[2021-08-24 17:03:30] [INFO] : ======================================================================================
[2021-08-24 17:03:30] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listBackSkinTrucks
{"plate": "", "number": "", "customerName": "\u54c8\u6d4b"}
{}
[2021-08-24 17:03:31] [INFO] : ======================================================================================
[2021-08-24 17:03:31] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=ZC
None
{}
[2021-08-24 17:03:31] [INFO] : ======================================================================================
[2021-08-24 17:03:31] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:03:32] [INFO] : ======================================================================================
[2021-08-24 17:03:32] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u706b\u9f99\u679c"}
{}
[2021-08-24 17:03:32] [INFO] : ======================================================================================
[2021-08-24 17:03:32] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:03:32] [INFO] : ======================================================================================
[2021-08-24 17:03:32] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:03:32] [INFO] : ======================================================================================
[2021-08-24 17:03:32] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:03:32] [INFO] : ======================================================================================
[2021-08-24 17:03:32] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:03:33] [INFO] : ======================================================================================
[2021-08-24 17:03:33] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:03:33] [INFO] : ======================================================================================
[2021-08-24 17:03:33] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66", "carTypeWeight": 10, "plate": "\u5dddB97168", "inGreeterId": 16, "inGreeterName": "\u56fd\u950b", "productId": 1694, "productName": "\u706b\u9f99\u679c\u7c7b", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 109, "grossWeightDate": "2021-08-24 17:03:33", "newWeight": 99, "tareWeight": 10, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddB97168", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "cateId": 1694, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": "", "origin": "", "originCode": "", "tradeType": "", "tradeTypeName": "", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": "", "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:03:34] [INFO] : ======================================================================================
[2021-08-24 17:03:34] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108240200200'}
{}
[2021-08-24 17:03:34] [INFO] : ======================================================================================
[2021-08-24 17:03:34] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/5692.action
None
{}
[2021-08-24 17:03:35] [INFO] : ======================================================================================
[2021-08-24 17:03:35] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=210823173732
None
{}
[2021-08-24 17:03:36] [INFO] : ======================================================================================
[2021-08-24 17:03:36] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州
None
{}
[2021-08-24 17:03:36] [INFO] : ======================================================================================
[2021-08-24 17:03:36] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action
{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 5692, 'goodsId': '5706', 'number': '202108240200200', 'modified': '2021-08-24 17:03:36', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川B97168', 'autocomplete-cartype': '456(地排车)', 'carTypeName': '地排车', 'carTypeCode': '456', 'carTypeId': '158', 'carTypeWeight': '10', 'storeTareWeight': '', 'proveType': '666', 'grossWeight': '109', 'tareWeight': '10', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '哈达测试部', 'calcDepId': '129', 'regionName': '234', 'regionId': '0', 'productName': '火龙果类', 'productId': '1694', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-24 17:03:35', 'remark': 'false', 'goodsTagIds': '', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-24 17:03:34', 'tareWeightDate': '2021-08-24 17:03:34', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '国锋', 'inGreeterId': '16', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''}
{}
[2021-08-24 17:03:36] [INFO] : ======================================================================================
[2021-08-24 17:03:36] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doFreeze.action
protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=1&id=5692&goodsId=5706&number=202108240200200&modified=2021-08-24%2017%3A03%3A35&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=20300&customerId=141951&fundAccount=107621&ic=210823173732&customerName=%E5%93%88%E6%B5%8B&customerPhone=18089008005&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DB97168&autocomplete-cartype=456%28%E5%9C%B0%E6%8E%92%E8%BD%A6%29&carTypeName=%E5%9C%B0%E6%8E%92%E8%BD%A6&carTypeCode=456&carTypeId=158&carTypeWeight=10&storeTareWeight=&proveType=666&grossWeight=109&tareWeight=10&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E5%93%88%E8%BE%BE%E6%B5%8B%E8%AF%95%E9%83%A8&calcDepId=129&dep=129®ionName=234®ionId=271&productName=%E7%81%AB%E9%BE%99%E6%9E%9C%E7%B1%BB&productId=1694&productArea=%E9%87%8D%E5%BA%86%2C%E9%87%8D%E5%BA%86%E5%B8%82%2C%E4%B8%87%E5%B7%9E%E5%8C%BA&parentId=500100&levelType=&originId=500101&tradeTypeId=&chargeTotalAmount=20300&chargeTotalAmountYuan=203&freezeMoneySymbol=203&comparisonFreezeAmount=203&created=2021-08-24%2017%3A03%3A35&remark=&marketFlag=hd&totalMoney=20300&receivable=20300&collectionPrice=0&discountAmount=0&handReceivableAmount=0&itemReceivableAmount=20300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=20300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=1616&driverTel=&grossWeightDate=2021-08-24%2017%3A03%3A34&tareWeightDate=2021-08-24%2017%3A03%3A34&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=&inGreeterId=0&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=107621&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=488&488=200.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A488%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A20000%2C%22require%22%3A1%7D&billItemCheckIds=489&489=0.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A489%2C%22name%22%3A%22%E8%BF%94%E7%82%B9%22%2C%22receivable%22%3A0%2C%22require%22%3A1%7D&billItemCheckIds=494&494=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A494%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D
{}
[2021-08-24 17:03:39] [INFO] : ======================================================================================
[2021-08-24 17:03:39] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listBackSkinTrucks
{"plate": "", "number": "202108240200200", "customerName": ""}
{}
[2021-08-24 17:03:39] [INFO] : ======================================================================================
[2021-08-24 17:03:39] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=ZC
None
{}
[2021-08-24 17:03:40] [INFO] : ======================================================================================
[2021-08-24 17:03:40] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:03:40] [INFO] : ======================================================================================
[2021-08-24 17:03:40] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u706b\u9f99\u679c"}
{}
[2021-08-24 17:03:40] [INFO] : ======================================================================================
[2021-08-24 17:03:40] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:03:40] [INFO] : ======================================================================================
[2021-08-24 17:03:40] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:03:40] [INFO] : ======================================================================================
[2021-08-24 17:03:40] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:03:41] [INFO] : ======================================================================================
[2021-08-24 17:03:41] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:03:41] [INFO] : ======================================================================================
[2021-08-24 17:03:41] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:03:41] [INFO] : ======================================================================================
[2021-08-24 17:03:41] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66", "carTypeWeight": 10, "plate": "\u5dddB86710", "inGreeterId": 16, "inGreeterName": "\u56fd\u950b", "productId": 1694, "productName": "\u706b\u9f99\u679c\u7c7b", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 109, "grossWeightDate": "2021-08-24 17:03:41", "newWeight": 99, "tareWeight": 10, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddB86710", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "cateId": 1694, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": "", "origin": "", "originCode": "", "tradeType": "", "tradeTypeName": "", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": "", "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:03:42] [INFO] : ======================================================================================
[2021-08-24 17:03:42] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108240200201'}
{}
[2021-08-24 17:03:42] [INFO] : ======================================================================================
[2021-08-24 17:03:42] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/5693.action
None
{}
[2021-08-24 17:03:43] [INFO] : ======================================================================================
[2021-08-24 17:03:43] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=210823173732
None
{}
[2021-08-24 17:03:44] [INFO] : ======================================================================================
[2021-08-24 17:03:44] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州
None
{}
[2021-08-24 17:03:44] [INFO] : ======================================================================================
[2021-08-24 17:03:44] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action
{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 5693, 'goodsId': '5707', 'number': '202108240200201', 'modified': '2021-08-24 17:03:44', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川B86710', 'autocomplete-cartype': '456(地排车)', 'carTypeName': '地排车', 'carTypeCode': '456', 'carTypeId': '158', 'carTypeWeight': '10', 'storeTareWeight': '', 'proveType': '666', 'grossWeight': '109', 'tareWeight': '10', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '哈达测试部', 'calcDepId': '129', 'regionName': '234', 'regionId': '0', 'productName': '火龙果类', 'productId': '1694', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-24 17:03:43', 'remark': 'false', 'goodsTagIds': '', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-24 17:03:43', 'tareWeightDate': '2021-08-24 17:03:43', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '国锋', 'inGreeterId': '16', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''}
{}
[2021-08-24 17:03:44] [INFO] : ======================================================================================
[2021-08-24 17:03:44] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doFreeze.action
protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=1&id=5693&goodsId=5707&number=202108240200201&modified=2021-08-24%2017%3A03%3A43&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=20300&customerId=141951&fundAccount=107621&ic=210823173732&customerName=%E5%93%88%E6%B5%8B&customerPhone=18089008005&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DB86710&autocomplete-cartype=456%28%E5%9C%B0%E6%8E%92%E8%BD%A6%29&carTypeName=%E5%9C%B0%E6%8E%92%E8%BD%A6&carTypeCode=456&carTypeId=158&carTypeWeight=10&storeTareWeight=&proveType=666&grossWeight=109&tareWeight=10&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E5%93%88%E8%BE%BE%E6%B5%8B%E8%AF%95%E9%83%A8&calcDepId=129&dep=129®ionName=234®ionId=271&productName=%E7%81%AB%E9%BE%99%E6%9E%9C%E7%B1%BB&productId=1694&productArea=%E9%87%8D%E5%BA%86%2C%E9%87%8D%E5%BA%86%E5%B8%82%2C%E4%B8%87%E5%B7%9E%E5%8C%BA&parentId=500100&levelType=&originId=500101&tradeTypeId=&chargeTotalAmount=20300&chargeTotalAmountYuan=203&freezeMoneySymbol=203&comparisonFreezeAmount=203&created=2021-08-24%2017%3A03%3A43&remark=&marketFlag=hd&totalMoney=20300&receivable=20300&collectionPrice=0&discountAmount=0&handReceivableAmount=0&itemReceivableAmount=20300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=20300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=1616&driverTel=&grossWeightDate=2021-08-24%2017%3A03%3A43&tareWeightDate=2021-08-24%2017%3A03%3A43&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=&inGreeterId=0&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=107621&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=488&488=200.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A488%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A20000%2C%22require%22%3A1%7D&billItemCheckIds=489&489=0.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A489%2C%22name%22%3A%22%E8%BF%94%E7%82%B9%22%2C%22receivable%22%3A0%2C%22require%22%3A1%7D&billItemCheckIds=494&494=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A494%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D
{}
[2021-08-24 17:03:47] [INFO] : ======================================================================================
[2021-08-24 17:03:47] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listBackSkinTrucks
{"plate": "\u5dddB86710", "number": "", "customerName": ""}
{}
[2021-08-24 17:03:48] [INFO] : ======================================================================================
[2021-08-24 17:03:48] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=ZC
None
{}
[2021-08-24 17:03:48] [INFO] : ======================================================================================
[2021-08-24 17:03:48] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:03:48] [INFO] : ======================================================================================
[2021-08-24 17:03:48] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"}
{}
[2021-08-24 17:03:48] [INFO] : ======================================================================================
[2021-08-24 17:03:48] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:03:48] [INFO] : ======================================================================================
[2021-08-24 17:03:48] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:03:49] [INFO] : ======================================================================================
[2021-08-24 17:03:49] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:03:49] [INFO] : ======================================================================================
[2021-08-24 17:03:49] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:03:49] [INFO] : ======================================================================================
[2021-08-24 17:03:49] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:03:50] [INFO] : ======================================================================================
[2021-08-24 17:03:50] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66", "carTypeWeight": 10, "plate": "\u5dddB43265", "inGreeterId": 16, "inGreeterName": "\u56fd\u950b", "productId": 2182, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 109, "grossWeightDate": "2021-08-24 17:03:50", "newWeight": 99, "tareWeight": 10, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddB43265", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "cateId": 2182, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": "", "origin": "", "originCode": "", "tradeType": "", "tradeTypeName": "", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": "", "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:03:50] [INFO] : ======================================================================================
[2021-08-24 17:03:50] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108240200202'}
{}
[2021-08-24 17:03:50] [INFO] : ======================================================================================
[2021-08-24 17:03:50] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/5694.action
None
{}
[2021-08-24 17:03:52] [INFO] : ======================================================================================
[2021-08-24 17:03:52] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=210823173732
None
{}
[2021-08-24 17:03:52] [INFO] : ======================================================================================
[2021-08-24 17:03:52] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州
None
{}
[2021-08-24 17:03:52] [INFO] : ======================================================================================
[2021-08-24 17:03:52] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action
{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 5694, 'goodsId': '5708', 'number': '202108240200202', 'modified': '2021-08-24 17:03:52', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川B43265', 'autocomplete-cartype': '456(地排车)', 'carTypeName': '地排车', 'carTypeCode': '456', 'carTypeId': '158', 'carTypeWeight': '10', 'storeTareWeight': '', 'proveType': '666', 'grossWeight': '109', 'tareWeight': '10', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '哈达测试部', 'calcDepId': '129', 'regionName': '234', 'regionId': '0', 'productName': '雪莲果', 'productId': '2182', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-24 17:03:51', 'remark': 'false', 'goodsTagIds': '', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-24 17:03:51', 'tareWeightDate': '2021-08-24 17:03:51', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '国锋', 'inGreeterId': '16', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''}
{}
[2021-08-24 17:03:53] [INFO] : ======================================================================================
[2021-08-24 17:03:53] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doFreeze.action
protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=1&id=5694&goodsId=5708&number=202108240200202&modified=2021-08-24%2017%3A03%3A51&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=20300&customerId=141951&fundAccount=107621&ic=210823173732&customerName=%E5%93%88%E6%B5%8B&customerPhone=18089008005&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DB43265&autocomplete-cartype=456%28%E5%9C%B0%E6%8E%92%E8%BD%A6%29&carTypeName=%E5%9C%B0%E6%8E%92%E8%BD%A6&carTypeCode=456&carTypeId=158&carTypeWeight=10&storeTareWeight=&proveType=666&grossWeight=109&tareWeight=10&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E5%93%88%E8%BE%BE%E6%B5%8B%E8%AF%95%E9%83%A8&calcDepId=129&dep=129®ionName=234®ionId=271&productName=%E9%9B%AA%E8%8E%B2%E6%9E%9C&productId=2182&productArea=%E9%87%8D%E5%BA%86%2C%E9%87%8D%E5%BA%86%E5%B8%82%2C%E4%B8%87%E5%B7%9E%E5%8C%BA&parentId=500100&levelType=&originId=500101&tradeTypeId=&chargeTotalAmount=20300&chargeTotalAmountYuan=203&freezeMoneySymbol=203&comparisonFreezeAmount=203&created=2021-08-24%2017%3A03%3A51&remark=&marketFlag=hd&totalMoney=20300&receivable=20300&collectionPrice=0&discountAmount=0&handReceivableAmount=0&itemReceivableAmount=20300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=20300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=1616&driverTel=&grossWeightDate=2021-08-24%2017%3A03%3A51&tareWeightDate=2021-08-24%2017%3A03%3A51&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=&inGreeterId=0&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=107621&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=488&488=200.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A488%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A20000%2C%22require%22%3A1%7D&billItemCheckIds=489&489=0.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A489%2C%22name%22%3A%22%E8%BF%94%E7%82%B9%22%2C%22receivable%22%3A0%2C%22require%22%3A1%7D&billItemCheckIds=494&494=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A494%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D
{}
[2021-08-24 17:03:56] [INFO] : ======================================================================================
[2021-08-24 17:03:56] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listBackSkinTrucks
{"plate": "", "number": "202108240200202", "customerName": ""}
{}
[2021-08-24 17:03:56] [INFO] : ======================================================================================
[2021-08-24 17:03:56] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "sy", "departmentId": 58, "keyword": ""}
{}
[2021-08-24 17:03:56] [INFO] : ======================================================================================
[2021-08-24 17:03:56] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/backSkinWeighSave
{"hasStoreTruck": 1, "number": "202108240200202", "outGreeterId": 223, "outGreeterName": "\u6d4b\u8bd5\u6c88\u9633", "plate": "\u5dddB43265", "rail": 1, "tareWeight": 106, "tareWeightDate": "2021-08-24 17:03:56", "weighImgs": [], "weighId": 0, "remark": "123", "carTypeWeight": 10, "trailerNumber": "\u5dddB43265", "pathAddress": "A4-BB-6D-0A-F4-13", "bskinWithGoods": -1, "ic": "", "customerName": null, "customerId": 0, "carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66"}
{}
[2021-08-24 17:03:56] [INFO] : ======================================================================================
[2021-08-24 17:03:56] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=ZC
None
{}
[2021-08-24 17:03:57] [INFO] : ======================================================================================
[2021-08-24 17:03:57] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:03:57] [INFO] : ======================================================================================
[2021-08-24 17:03:57] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u852c\u83dc"}
{}
[2021-08-24 17:03:57] [INFO] : ======================================================================================
[2021-08-24 17:03:57] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:03:57] [INFO] : ======================================================================================
[2021-08-24 17:03:57] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:03:57] [INFO] : ======================================================================================
[2021-08-24 17:03:57] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:03:58] [INFO] : ======================================================================================
[2021-08-24 17:03:58] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:03:58] [INFO] : ======================================================================================
[2021-08-24 17:03:58] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:03:58] [INFO] : ======================================================================================
[2021-08-24 17:03:58] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66", "carTypeWeight": 10, "plate": "\u5dddA16823", "inGreeterId": 16, "inGreeterName": "\u56fd\u950b", "productId": 1, "productName": "\u852c\u83dc", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 109, "grossWeightDate": "2021-08-24 17:03:58", "newWeight": 99, "tareWeight": 10, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA16823", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "cateId": 1, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": "", "origin": "", "originCode": "", "tradeType": "", "tradeTypeName": "", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": "", "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:03:59] [INFO] : ======================================================================================
[2021-08-24 17:03:59] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108240200203'}
{}
[2021-08-24 17:03:59] [INFO] : ======================================================================================
[2021-08-24 17:03:59] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/amend/5695.action
None
{}
[2021-08-24 17:04:01] [INFO] : ======================================================================================
[2021-08-24 17:04:01] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州
None
{}
[2021-08-24 17:04:01] [INFO] : ======================================================================================
[2021-08-24 17:04:01] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action
{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'amend', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 5695, 'goodsId': '5709', 'number': '202108240200203', 'modified': '2021-08-24 17:04:01', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A16823', 'autocomplete-cartype': '456(地排车)', 'carTypeName': '地排车', 'carTypeCode': '456', 'carTypeId': '158', 'carTypeWeight': '10', 'storeTareWeight': '', 'proveType': '666', 'grossWeight': '109', 'tareWeight': '10', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '哈达测试部', 'regionName': '', 'regionId': '0', 'productName': '蔬菜', 'productId': '1', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '0', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-24 17:04:00', 'remark': 'false', 'goodsTagIds': '', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '蔬菜', 'categoryId': '1', 'driverTel': '', 'grossWeightDate': '2021-08-24 17:04:00', 'tareWeightDate': '2021-08-24 17:04:00', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '国锋', 'inGreeterId': '16', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'proveTypeName': '产地证明'}
{}
[2021-08-24 17:04:01] [INFO] : ======================================================================================
[2021-08-24 17:04:01] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/doAmend.action
protocolId=&pwd=111111&clientRedirectTag=&viewType=amend&optType=0&optUrl=&correctInfo=1&weightType=1&id=5695&goodsId=5709&number=202108240200203&modified=2021-08-24%2017%3A04%3A00&status=2&source=1&updateFeeItems=2&correctDiscount=1&totalAmount=20300&customerId=0&fundAccount=&accountId=&ic=&customerName=&customerPhone=&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA16823&autocomplete-cartype=456%28%E5%9C%B0%E6%8E%92%E8%BD%A6%29&carTypeName=%E5%9C%B0%E6%8E%92%E8%BD%A6&carTypeCode=456&carTypeId=158&carTypeWeight=10&storeTareWeight=&proveType=666&grossWeight=109&tareWeight=10&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E5%93%88%E8%BE%BE%E6%B5%8B%E8%AF%95%E9%83%A8&dep=129®ionId=&productName=%E8%94%AC%E8%8F%9C&productId=1&productArea=&originId=500101&tradeTypeId=0&chargeTotalAmount=20300&chargeTotalAmountYuan=203&freezeMoneySymbol=203&comparisonFreezeAmount=203&created=2021-08-24%2017%3A04%3A00&remark=%E5%A4%87%E6%B3%A8&shareRatio=0&handlingTeam=&steveTeamId=&handlingRatio=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&marketFlag=hd&totalMoney=20300&receivable=20300&collectionPrice=0&discountAmount=0&handReceivableAmount=0&itemReceivableAmount=20300&receivableAmount=20300&categoryName=%E8%94%AC%E8%8F%9C&categoryId=1&driverTel=&grossWeightDate=2021-08-24%2017%3A04%3A00&tareWeightDate=2021-08-24%2017%3A04%3A00&grossPathName=&grossPathId=&tarePathId=&goodsRemark=%E5%A4%87%E6%B3%A8&inGreeterName=%E9%80%9A%E7%94%A8%E6%B5%8B%E8%AF%95&inGreeterId=274&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepId=0&backSkinTwo=-1&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=488&488=200.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A488%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A20000%2C%22require%22%3A1%7D&billItemCheckIds=489&489=0.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A489%2C%22name%22%3A%22%E8%BF%94%E7%82%B9%22%2C%22receivable%22%3A0%2C%22require%22%3A1%7D&billItemCheckIds=494&494=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A494%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D
{}
[2021-08-24 17:04:01] [INFO] : ======================================================================================
[2021-08-24 17:04:01] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=ZC
None
{}
[2021-08-24 17:04:01] [INFO] : ======================================================================================
[2021-08-24 17:04:01] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:04:02] [INFO] : ======================================================================================
[2021-08-24 17:04:02] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u852c\u83dc"}
{}
[2021-08-24 17:04:02] [INFO] : ======================================================================================
[2021-08-24 17:04:02] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:04:02] [INFO] : ======================================================================================
[2021-08-24 17:04:02] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:04:02] [INFO] : ======================================================================================
[2021-08-24 17:04:02] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:04:02] [INFO] : ======================================================================================
[2021-08-24 17:04:02] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:04:03] [INFO] : ======================================================================================
[2021-08-24 17:04:03] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:04:03] [INFO] : ======================================================================================
[2021-08-24 17:04:03] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66", "carTypeWeight": 10, "plate": "\u5dddA35663", "inGreeterId": 16, "inGreeterName": "\u56fd\u950b", "productId": 1, "productName": "\u852c\u83dc", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 109, "grossWeightDate": "2021-08-24 17:04:03", "newWeight": 99, "tareWeight": 10, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA35663", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "cateId": 1, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": "", "origin": "", "originCode": "", "tradeType": "", "tradeTypeName": "", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": "", "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:04:03] [INFO] : ======================================================================================
[2021-08-24 17:04:03] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108240200204'}
{}
[2021-08-24 17:04:04] [INFO] : ======================================================================================
[2021-08-24 17:04:04] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/correct/5696.action
None
{}
[2021-08-24 17:04:05] [INFO] : ======================================================================================
[2021-08-24 17:04:05] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州
None
{}
[2021-08-24 17:04:05] [INFO] : ======================================================================================
[2021-08-24 17:04:05] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action
{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'correct', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 5696, 'goodsId': '5710', 'number': '202108240200204', 'modified': '2021-08-24 17:04:05', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '2', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A35663', 'autocomplete-cartype': '456(地排车)', 'carTypeName': '地排车', 'carTypeCode': '456', 'carTypeId': '158', 'carTypeWeight': '10', 'storeTareWeight': '', 'proveType': '666', 'grossWeight': '109', 'tareWeight': '10', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '哈达测试部', 'regionName': '', 'regionId': '0', 'productName': '蔬菜', 'productId': '1', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '0', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-24 17:04:04', 'remark': 'false', 'goodsTagIds': '', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '蔬菜', 'categoryId': '1', 'driverTel': '', 'grossWeightDate': '2021-08-24 17:04:04', 'tareWeightDate': '2021-08-24 17:04:04', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '国锋', 'inGreeterId': '16', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': ''}
{}
[2021-08-24 17:04:05] [INFO] : ======================================================================================
[2021-08-24 17:04:05] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/doCorrect.action
protocolId=&pwd=111111&clientRedirectTag=&viewType=correct&optType=0&optUrl=&correctInfo=1&weightType=1&id=5696&goodsId=5710&number=202108240200204&modified=2021-08-24%2017%3A04%3A04&status=2&source=1&updateFeeItems=2&correctDiscount=1&totalAmount=43800&customerId=0&fundAccount=&accountId=&ic=&customerName=&customerPhone=&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA35663&autocomplete-cartype=456%28%E5%9C%B0%E6%8E%92%E8%BD%A6%29&carTypeName=%E5%9C%B0%E6%8E%92%E8%BD%A6&carTypeCode=456&carTypeId=158&carTypeWeight=10&storeTareWeight=&proveType=666&grossWeight=109&tareWeight=10&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E5%93%88%E8%BE%BE%E6%B5%8B%E8%AF%95%E9%83%A8&dep=129®ionId=&productName=%E8%94%AC%E8%8F%9C&productId=1&productArea=&originId=500101&tradeTypeId=0&chargeTotalAmount=43800&chargeTotalAmountYuan=438&freezeMoneySymbol=438&comparisonFreezeAmount=438&created=2021-08-24%2017%3A04%3A04&remark=%E5%A4%87%E6%B3%A8&shareRatio=0&handlingTeam=&steveTeamId=&handlingRatio=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&marketFlag=hd&totalMoney=20300&receivable=43800&collectionPrice=0&discountAmount=0&handReceivableAmount=0&itemReceivableAmount=43800&receivableAmount=43800&categoryName=%E8%94%AC%E8%8F%9C&categoryId=1&driverTel=&grossWeightDate=2021-08-24%2017%3A04%3A04&tareWeightDate=2021-08-24%2017%3A04%3A04&grossPathName=&grossPathId=&tarePathId=&goodsRemark=%E5%A4%87%E6%B3%A8&inGreeterName=%E9%80%9A%E7%94%A8%E6%B5%8B%E8%AF%95&inGreeterId=274&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepId=0&bskinWithGoods=-1&outGreeterName=&proveTypeName=%E4%BA%A7%E5%9C%B0%E8%AF%81%E6%98%8E&feeDepName=&calcFeeDepId=&backSkinTwo=-1&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=488&488=297&billItems=%7B%22discount%22%3A0%2C%22id%22%3A488%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A29700%2C%22require%22%3A1%7D&billItemCheckIds=489&489=98&billItems=%7B%22discount%22%3A0%2C%22id%22%3A489%2C%22name%22%3A%22%E8%BF%94%E7%82%B9%22%2C%22receivable%22%3A9800%2C%22require%22%3A1%7D&billItemCheckIds=494&494=43&billItems=%7B%22discount%22%3A0%2C%22id%22%3A494%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A4300%2C%22require%22%3A1%7D
{}
[2021-08-24 17:04:06] [INFO] : ======================================================================================
[2021-08-24 17:04:06] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108240200204'}
{}
[2021-08-24 17:04:06] [INFO] : ======================================================================================
[2021-08-24 17:04:06] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=SJ
None
{}
[2021-08-24 17:04:06] [INFO] : ======================================================================================
[2021-08-24 17:04:06] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:04:07] [INFO] : ======================================================================================
[2021-08-24 17:04:07] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"}
{}
[2021-08-24 17:04:07] [INFO] : ======================================================================================
[2021-08-24 17:04:07] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:04:07] [INFO] : ======================================================================================
[2021-08-24 17:04:07] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:04:07] [INFO] : ======================================================================================
[2021-08-24 17:04:07] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:04:08] [INFO] : ======================================================================================
[2021-08-24 17:04:08] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:04:08] [INFO] : ======================================================================================
[2021-08-24 17:04:08] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:04:08] [INFO] : ======================================================================================
[2021-08-24 17:04:08] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/sparePartsWeighSave
{"driverTel": "", "inGreeterId": 16, "inGreeterName": "\u56fd\u950b", "itemWeight": 11, "productId": 2182, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "qty": 33, "weighRemark": null, "weight": 220, "weighmanRecord": {"grossWeight": null, "grossWeightDate": null, "newWeight": null, "tareWeight": null, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "plate": "\u5dddA76711", "carTypeId": 158, "carTypeCode": "456", "carTypeName": "\u5730\u6392\u8f66", "pathAddress": "A4-BB-6D-0A-F4-13", "entryPlateInputType": 1, "feeDepId": 0, "feeDepName": null, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "type": 2, "tradeTypeId": "", "tradeType": "", "tradeTypeName": "", "goodsTagId": "", "originId": "", "origin": "", "originCode": "", "trailerNumber": "\u5dddA76711", "cateId": 2182, "productState": "1"}
{}
[2021-08-24 17:04:09] [INFO] : ======================================================================================
[2021-08-24 17:04:09] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108240200205'}
{}
[2021-08-24 17:04:09] [INFO] : ======================================================================================
[2021-08-24 17:04:09] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/5697.action
None
{}
[2021-08-24 17:04:11] [INFO] : ======================================================================================
[2021-08-24 17:04:11] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=210823173732
None
{}
[2021-08-24 17:04:11] [INFO] : ======================================================================================
[2021-08-24 17:04:11] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州
None
{}
[2021-08-24 17:04:11] [INFO] : ======================================================================================
[2021-08-24 17:04:11] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action
{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '2', 'id': 5697, 'goodsId': '5711', 'number': '202108240200205', 'modified': '2021-08-24 17:04:11', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A76711', 'autocomplete-cartype': '456(地排车)', 'carTypeName': '地排车', 'carTypeCode': '456', 'carTypeId': '158', 'carTypeWeight': '', 'storeTareWeight': '', 'proveType': '666', 'grossWeight': '0', 'tareWeight': '0', 'weight': '220', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '哈达测试部', 'calcDepId': '129', 'regionName': '', 'regionId': '0', 'productName': '雪莲果', 'productId': '2182', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-24 17:04:10', 'remark': 'false', 'goodsTagIds': '', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-24 17:04:10', 'tareWeightDate': '2021-08-24 17:04:10', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '国锋', 'inGreeterId': '16', 'outGreeterId': '', 'sumPrice': '22000', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''}
{}
[2021-08-24 17:04:12] [INFO] : ======================================================================================
[2021-08-24 17:04:12] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doPay.action
protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=2&id=5697&goodsId=5711&number=202108240200205&modified=2021-08-24%2017%3A04%3A10&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=20300&customerId=141951&fundAccount=107621&ic=210823173732&customerName=%E5%93%88%E6%B5%8B&customerPhone=18089008005&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA76711&autocomplete-cartype=456%28%E5%9C%B0%E6%8E%92%E8%BD%A6%29&carTypeName=%E5%9C%B0%E6%8E%92%E8%BD%A6&carTypeCode=456&carTypeId=158&carTypeWeight=&storeTareWeight=&proveType=666&grossWeight=0&tareWeight=0&weight=220&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E5%93%88%E8%BE%BE%E6%B5%8B%E8%AF%95%E9%83%A8&calcDepId=129&dep=129®ionName=234®ionId=271&productName=%E9%9B%AA%E8%8E%B2%E6%9E%9C&productId=2182&productArea=%E9%87%8D%E5%BA%86%2C%E9%87%8D%E5%BA%86%E5%B8%82%2C%E4%B8%87%E5%B7%9E%E5%8C%BA&parentId=500100&levelType=&originId=500101&tradeTypeId=&chargeTotalAmount=20300&chargeTotalAmountYuan=203&freezeMoneySymbol=203&comparisonFreezeAmount=203&created=2021-08-24%2017%3A04%3A10&remark=&marketFlag=hd&totalMoney=20300&receivable=20300&collectionPrice=0&discountAmount=0&handReceivableAmount=0&itemReceivableAmount=20300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=20300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=1616&driverTel=&grossWeightDate=2021-08-24%2017%3A04%3A10&tareWeightDate=2021-08-24%2017%3A04%3A10&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=%E5%9B%BD%E9%94%8B&inGreeterId=16&outGreeterId=&sumPrice=22000&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=107621&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=488&488=200.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A488%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A20000%2C%22require%22%3A1%7D&billItemCheckIds=489&489=0.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A489%2C%22name%22%3A%22%E8%BF%94%E7%82%B9%22%2C%22receivable%22%3A0%2C%22require%22%3A1%7D&billItemCheckIds=494&494=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A494%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D
{}
[2021-08-24 17:04:15] [INFO] : ======================================================================================
[2021-08-24 17:04:15] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=ZC
None
{}
[2021-08-24 17:04:15] [INFO] : ======================================================================================
[2021-08-24 17:04:15] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:04:16] [INFO] : ======================================================================================
[2021-08-24 17:04:16] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"}
{}
[2021-08-24 17:04:16] [INFO] : ======================================================================================
[2021-08-24 17:04:16] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:04:16] [INFO] : ======================================================================================
[2021-08-24 17:04:16] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:04:16] [INFO] : ======================================================================================
[2021-08-24 17:04:16] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:04:16] [INFO] : ======================================================================================
[2021-08-24 17:04:16] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:04:17] [INFO] : ======================================================================================
[2021-08-24 17:04:17] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:04:17] [INFO] : ======================================================================================
[2021-08-24 17:04:17] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66", "carTypeWeight": 10, "plate": "\u5dddA27355", "inGreeterId": 16, "inGreeterName": "\u56fd\u950b", "productId": 2182, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 109, "grossWeightDate": "2021-08-24 17:04:17", "newWeight": 99, "tareWeight": 10, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA27355", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "cateId": 2182, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": "", "origin": "", "originCode": "", "tradeType": "", "tradeTypeName": "", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": "", "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:04:17] [INFO] : ======================================================================================
[2021-08-24 17:04:17] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108240200206'}
{}
[2021-08-24 17:04:18] [INFO] : ======================================================================================
[2021-08-24 17:04:18] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/5698.action
None
{}
[2021-08-24 17:04:19] [INFO] : ======================================================================================
[2021-08-24 17:04:19] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=210823173732
None
{}
[2021-08-24 17:04:20] [INFO] : ======================================================================================
[2021-08-24 17:04:20] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州
None
{}
[2021-08-24 17:04:20] [INFO] : ======================================================================================
[2021-08-24 17:04:20] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action
{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 5698, 'goodsId': '5712', 'number': '202108240200206', 'modified': '2021-08-24 17:04:20', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A27355', 'autocomplete-cartype': '456(地排车)', 'carTypeName': '地排车', 'carTypeCode': '456', 'carTypeId': '158', 'carTypeWeight': '10', 'storeTareWeight': '', 'proveType': '666', 'grossWeight': '109', 'tareWeight': '10', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '哈达测试部', 'calcDepId': '129', 'regionName': '', 'regionId': '0', 'productName': '雪莲果', 'productId': '2182', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-24 17:04:18', 'remark': 'false', 'goodsTagIds': '', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-24 17:04:18', 'tareWeightDate': '2021-08-24 17:04:18', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '国锋', 'inGreeterId': '16', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''}
{}
[2021-08-24 17:04:20] [INFO] : ======================================================================================
[2021-08-24 17:04:20] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doPay.action
protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=1&id=5698&goodsId=5712&number=202108240200206&modified=2021-08-24%2017%3A04%3A18&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=20300&customerId=141951&fundAccount=107621&ic=210823173732&customerName=%E5%93%88%E6%B5%8B&customerPhone=18089008005&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA27355&autocomplete-cartype=456%28%E5%9C%B0%E6%8E%92%E8%BD%A6%29&carTypeName=%E5%9C%B0%E6%8E%92%E8%BD%A6&carTypeCode=456&carTypeId=158&carTypeWeight=10&storeTareWeight=&proveType=666&grossWeight=109&tareWeight=10&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E5%93%88%E8%BE%BE%E6%B5%8B%E8%AF%95%E9%83%A8&calcDepId=129&dep=129®ionName=234®ionId=271&productName=%E9%9B%AA%E8%8E%B2%E6%9E%9C&productId=2182&productArea=%E9%87%8D%E5%BA%86%2C%E9%87%8D%E5%BA%86%E5%B8%82%2C%E4%B8%87%E5%B7%9E%E5%8C%BA&parentId=500100&levelType=&originId=500101&tradeTypeId=&chargeTotalAmount=20300&chargeTotalAmountYuan=203&freezeMoneySymbol=203&comparisonFreezeAmount=203&created=2021-08-24%2017%3A04%3A18&remark=&marketFlag=hd&totalMoney=20300&receivable=20300&collectionPrice=0&discountAmount=0&handReceivableAmount=0&itemReceivableAmount=20300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=20300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=1616&driverTel=&grossWeightDate=2021-08-24%2017%3A04%3A18&tareWeightDate=2021-08-24%2017%3A04%3A18&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=%E5%9B%BD%E9%94%8B&inGreeterId=16&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=107621&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=488&488=200.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A488%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A20000%2C%22require%22%3A1%7D&billItemCheckIds=489&489=0.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A489%2C%22name%22%3A%22%E8%BF%94%E7%82%B9%22%2C%22receivable%22%3A0%2C%22require%22%3A1%7D&billItemCheckIds=494&494=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A494%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D
{}
[2021-08-24 17:04:24] [INFO] : ======================================================================================
[2021-08-24 17:04:24] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=ZC
None
{}
[2021-08-24 17:04:24] [INFO] : ======================================================================================
[2021-08-24 17:04:24] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:04:24] [INFO] : ======================================================================================
[2021-08-24 17:04:24] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"}
{}
[2021-08-24 17:04:24] [INFO] : ======================================================================================
[2021-08-24 17:04:24] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:04:24] [INFO] : ======================================================================================
[2021-08-24 17:04:24] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:04:25] [INFO] : ======================================================================================
[2021-08-24 17:04:25] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:04:25] [INFO] : ======================================================================================
[2021-08-24 17:04:25] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:04:25] [INFO] : ======================================================================================
[2021-08-24 17:04:25] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:04:25] [INFO] : ======================================================================================
[2021-08-24 17:04:25] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66", "carTypeWeight": 10, "plate": "\u5dddA50319", "inGreeterId": 16, "inGreeterName": "\u56fd\u950b", "productId": 2182, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 109, "grossWeightDate": "2021-08-24 17:04:25", "newWeight": 99, "tareWeight": 10, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA50319", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "cateId": 2182, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": "", "origin": "", "originCode": "", "tradeType": "", "tradeTypeName": "", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": "", "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:04:26] [INFO] : ======================================================================================
[2021-08-24 17:04:26] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108240200207'}
{}
[2021-08-24 17:04:26] [INFO] : ======================================================================================
[2021-08-24 17:04:26] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/5699.action
None
{}
[2021-08-24 17:04:28] [INFO] : ======================================================================================
[2021-08-24 17:04:28] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=210823173732
None
{}
[2021-08-24 17:04:28] [INFO] : ======================================================================================
[2021-08-24 17:04:28] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州
None
{}
[2021-08-24 17:04:28] [INFO] : ======================================================================================
[2021-08-24 17:04:28] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action
{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 5699, 'goodsId': '5713', 'number': '202108240200207', 'modified': '2021-08-24 17:04:28', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A50319', 'autocomplete-cartype': '456(地排车)', 'carTypeName': '地排车', 'carTypeCode': '456', 'carTypeId': '158', 'carTypeWeight': '10', 'storeTareWeight': '', 'proveType': '666', 'grossWeight': '109', 'tareWeight': '10', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '哈达测试部', 'calcDepId': '129', 'regionName': '234', 'regionId': '0', 'productName': '雪莲果', 'productId': '2182', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-24 17:04:27', 'remark': 'false', 'goodsTagIds': '', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-24 17:04:27', 'tareWeightDate': '2021-08-24 17:04:27', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '国锋', 'inGreeterId': '16', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''}
{}
[2021-08-24 17:04:29] [INFO] : ======================================================================================
[2021-08-24 17:04:29] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doFreeze.action
protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=1&id=5699&goodsId=5713&number=202108240200207&modified=2021-08-24%2017%3A04%3A27&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=20300&customerId=141951&fundAccount=107621&ic=210823173732&customerName=%E5%93%88%E6%B5%8B&customerPhone=18089008005&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA50319&autocomplete-cartype=456%28%E5%9C%B0%E6%8E%92%E8%BD%A6%29&carTypeName=%E5%9C%B0%E6%8E%92%E8%BD%A6&carTypeCode=456&carTypeId=158&carTypeWeight=10&storeTareWeight=&proveType=666&grossWeight=109&tareWeight=10&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E5%93%88%E8%BE%BE%E6%B5%8B%E8%AF%95%E9%83%A8&calcDepId=129&dep=129®ionName=234®ionId=271&productName=%E9%9B%AA%E8%8E%B2%E6%9E%9C&productId=2182&productArea=%E9%87%8D%E5%BA%86%2C%E9%87%8D%E5%BA%86%E5%B8%82%2C%E4%B8%87%E5%B7%9E%E5%8C%BA&parentId=500100&levelType=&originId=500101&tradeTypeId=&chargeTotalAmount=20300&chargeTotalAmountYuan=203&freezeMoneySymbol=203&comparisonFreezeAmount=203&created=2021-08-24%2017%3A04%3A27&remark=&marketFlag=hd&totalMoney=20300&receivable=20300&collectionPrice=0&discountAmount=0&handReceivableAmount=0&itemReceivableAmount=20300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=20300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=1616&driverTel=&grossWeightDate=2021-08-24%2017%3A04%3A27&tareWeightDate=2021-08-24%2017%3A04%3A27&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=&inGreeterId=0&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=107621&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=488&488=200.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A488%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A20000%2C%22require%22%3A1%7D&billItemCheckIds=489&489=0.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A489%2C%22name%22%3A%22%E8%BF%94%E7%82%B9%22%2C%22receivable%22%3A0%2C%22require%22%3A1%7D&billItemCheckIds=494&494=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A494%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D
{}
[2021-08-24 17:04:32] [INFO] : ======================================================================================
[2021-08-24 17:04:32] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=ZC
None
{}
[2021-08-24 17:04:32] [INFO] : ======================================================================================
[2021-08-24 17:04:32] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:04:32] [INFO] : ======================================================================================
[2021-08-24 17:04:32] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u852c\u83dc"}
{}
[2021-08-24 17:04:32] [INFO] : ======================================================================================
[2021-08-24 17:04:32] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:04:32] [INFO] : ======================================================================================
[2021-08-24 17:04:32] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:04:32] [INFO] : ======================================================================================
[2021-08-24 17:04:32] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:04:33] [INFO] : ======================================================================================
[2021-08-24 17:04:33] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:04:33] [INFO] : ======================================================================================
[2021-08-24 17:04:33] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:04:33] [INFO] : ======================================================================================
[2021-08-24 17:04:33] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66", "carTypeWeight": 10, "plate": "\u5dddA18563", "inGreeterId": 16, "inGreeterName": "\u56fd\u950b", "productId": 1, "productName": "\u852c\u83dc", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 109, "grossWeightDate": "2021-08-24 17:04:33", "newWeight": 99, "tareWeight": 10, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA18563", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "cateId": 1, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": "", "origin": "", "originCode": "", "tradeType": "", "tradeTypeName": "", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": "", "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:04:34] [INFO] : ======================================================================================
[2021-08-24 17:04:34] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108240200208'}
{}
[2021-08-24 17:04:34] [INFO] : ======================================================================================
[2021-08-24 17:04:34] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/invalid/5700.action
None
{}
[2021-08-24 17:04:36] [INFO] : ======================================================================================
[2021-08-24 17:04:36] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州
None
{}
[2021-08-24 17:04:36] [INFO] : ======================================================================================
[2021-08-24 17:04:36] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action
{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'invalid', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 5700, 'goodsId': '5714', 'number': '202108240200208', 'modified': '2021-08-24 17:04:36', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A18563', 'autocomplete-cartype': '456(地排车)', 'carTypeName': '地排车', 'carTypeCode': '456', 'carTypeId': '158', 'carTypeWeight': '10', 'storeTareWeight': '', 'proveType': '666', 'grossWeight': '109', 'tareWeight': '10', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '哈达测试部', 'regionName': '', 'regionId': '0', 'productName': '蔬菜', 'productId': '1', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-24 17:04:35', 'remark': 'false', 'goodsTagIds': '', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '蔬菜', 'categoryId': '1', 'driverTel': '', 'grossWeightDate': '2021-08-24 17:04:35', 'tareWeightDate': '2021-08-24 17:04:35', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '国锋', 'inGreeterId': '16', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': ''}
{}
[2021-08-24 17:04:36] [INFO] : ======================================================================================
[2021-08-24 17:04:36] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/doInvalid.action
protocolId=&pwd=111111&clientRedirectTag=&viewType=invalid&optType=0&optUrl=&correctInfo=1&weightType=1&id=5700&goodsId=5714&number=202108240200208&modified=2021-08-24%2017%3A04%3A35&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=20300&customerId=0&fundAccount=&accountId=&ic=&customerName=&customerPhone=&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA18563&autocomplete-cartype=456%28%E5%9C%B0%E6%8E%92%E8%BD%A6%29&carTypeName=%E5%9C%B0%E6%8E%92%E8%BD%A6&carTypeCode=456&carTypeId=158&carTypeWeight=10&storeTareWeight=&proveType=666&grossWeight=109&tareWeight=10&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E5%93%88%E8%BE%BE%E6%B5%8B%E8%AF%95%E9%83%A8&dep=129®ionId=&productName=%E8%94%AC%E8%8F%9C&productId=1&productArea=&originId=500101&tradeTypeId=&chargeTotalAmount=20300&chargeTotalAmountYuan=203&freezeMoneySymbol=203&comparisonFreezeAmount=203&created=2021-08-24%2017%3A04%3A35&remark=%E5%A4%87%E6%B3%A8&goodsTagIds=&shareRatio=0&handlingTeam=&steveTeamId=&handlingRatio=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&marketFlag=hd&totalMoney=20300&receivable=20300&collectionPrice=0&discountAmount=0&handReceivableAmount=0&itemReceivableAmount=20300&receivableAmount=20300&categoryName=%E8%94%AC%E8%8F%9C&categoryId=1&driverTel=&grossWeightDate=2021-08-24%2017%3A04%3A35&tareWeightDate=2021-08-24%2017%3A04%3A35&grossPathName=&grossPathId=&tarePathId=&goodsRemark=%E5%A4%87%E6%B3%A8&inGreeterName=%E9%80%9A%E7%94%A8%E6%B5%8B%E8%AF%95&inGreeterId=274&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepId=0&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=488&488=200.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A488%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A20000%2C%22require%22%3A1%7D&billItemCheckIds=489&489=0.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A489%2C%22name%22%3A%22%E8%BF%94%E7%82%B9%22%2C%22receivable%22%3A0%2C%22require%22%3A1%7D&billItemCheckIds=494&494=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A494%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D
{}
[2021-08-24 17:04:37] [INFO] : ======================================================================================
[2021-08-24 17:04:37] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=ZC
None
{}
[2021-08-24 17:04:37] [INFO] : ======================================================================================
[2021-08-24 17:04:37] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:04:37] [INFO] : ======================================================================================
[2021-08-24 17:04:37] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"}
{}
[2021-08-24 17:04:37] [INFO] : ======================================================================================
[2021-08-24 17:04:37] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:04:37] [INFO] : ======================================================================================
[2021-08-24 17:04:37] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:04:37] [INFO] : ======================================================================================
[2021-08-24 17:04:37] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:04:38] [INFO] : ======================================================================================
[2021-08-24 17:04:38] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:04:38] [INFO] : ======================================================================================
[2021-08-24 17:04:38] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:04:38] [INFO] : ======================================================================================
[2021-08-24 17:04:38] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66", "carTypeWeight": 10, "plate": "\u5dddA79098", "inGreeterId": 16, "inGreeterName": "\u56fd\u950b", "productId": 2182, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 109, "grossWeightDate": "2021-08-24 17:04:38", "newWeight": 99, "tareWeight": 10, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA79098", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "cateId": 2182, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": "", "origin": "", "originCode": "", "tradeType": "", "tradeTypeName": "", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": "", "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:04:39] [INFO] : ======================================================================================
[2021-08-24 17:04:39] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108240200209'}
{}
[2021-08-24 17:04:39] [INFO] : ======================================================================================
[2021-08-24 17:04:39] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/5701.action
None
{}
[2021-08-24 17:04:41] [INFO] : ======================================================================================
[2021-08-24 17:04:41] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=210823173732
None
{}
[2021-08-24 17:04:41] [INFO] : ======================================================================================
[2021-08-24 17:04:41] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州
None
{}
[2021-08-24 17:04:41] [INFO] : ======================================================================================
[2021-08-24 17:04:41] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action
{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 5701, 'goodsId': '5715', 'number': '202108240200209', 'modified': '2021-08-24 17:04:41', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A79098', 'autocomplete-cartype': '456(地排车)', 'carTypeName': '地排车', 'carTypeCode': '456', 'carTypeId': '158', 'carTypeWeight': '10', 'storeTareWeight': '', 'proveType': '666', 'grossWeight': '109', 'tareWeight': '10', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '哈达测试部', 'calcDepId': '129', 'regionName': '', 'regionId': '0', 'productName': '雪莲果', 'productId': '2182', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-24 17:04:40', 'remark': 'false', 'goodsTagIds': '', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-24 17:04:40', 'tareWeightDate': '2021-08-24 17:04:40', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '国锋', 'inGreeterId': '16', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''}
{}
[2021-08-24 17:04:42] [INFO] : ======================================================================================
[2021-08-24 17:04:42] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doPay.action
protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=1&id=5701&goodsId=5715&number=202108240200209&modified=2021-08-24%2017%3A04%3A40&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=20300&customerId=141951&fundAccount=107621&ic=210823173732&customerName=%E5%93%88%E6%B5%8B&customerPhone=18089008005&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA79098&autocomplete-cartype=456%28%E5%9C%B0%E6%8E%92%E8%BD%A6%29&carTypeName=%E5%9C%B0%E6%8E%92%E8%BD%A6&carTypeCode=456&carTypeId=158&carTypeWeight=10&storeTareWeight=&proveType=666&grossWeight=109&tareWeight=10&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E5%93%88%E8%BE%BE%E6%B5%8B%E8%AF%95%E9%83%A8&calcDepId=129&dep=129®ionName=234®ionId=271&productName=%E9%9B%AA%E8%8E%B2%E6%9E%9C&productId=2182&productArea=%E9%87%8D%E5%BA%86%2C%E9%87%8D%E5%BA%86%E5%B8%82%2C%E4%B8%87%E5%B7%9E%E5%8C%BA&parentId=500100&levelType=&originId=500101&tradeTypeId=&chargeTotalAmount=20300&chargeTotalAmountYuan=203&freezeMoneySymbol=203&comparisonFreezeAmount=203&created=2021-08-24%2017%3A04%3A40&remark=&marketFlag=hd&totalMoney=20300&receivable=20300&collectionPrice=0&discountAmount=0&handReceivableAmount=0&itemReceivableAmount=20300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=20300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=1616&driverTel=&grossWeightDate=2021-08-24%2017%3A04%3A40&tareWeightDate=2021-08-24%2017%3A04%3A40&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=%E5%9B%BD%E9%94%8B&inGreeterId=16&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=107621&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=488&488=200.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A488%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A20000%2C%22require%22%3A1%7D&billItemCheckIds=489&489=0.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A489%2C%22name%22%3A%22%E8%BF%94%E7%82%B9%22%2C%22receivable%22%3A0%2C%22require%22%3A1%7D&billItemCheckIds=494&494=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A494%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D
{}
[2021-08-24 17:04:45] [INFO] : ======================================================================================
[2021-08-24 17:04:45] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108240200209'}
{}
[2021-08-24 17:04:45] [INFO] : ======================================================================================
[2021-08-24 17:04:45] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/refund/5701.action
None
{}
[2021-08-24 17:04:47] [INFO] : ======================================================================================
[2021-08-24 17:04:47] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州
None
{}
[2021-08-24 17:04:47] [INFO] : ======================================================================================
[2021-08-24 17:04:47] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action
{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'refund', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 5701, 'goodsId': '5715', 'number': '202108240200209', 'modified': '2021-08-24 17:04:43', 'status': '4', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A79098', 'autocomplete-cartype': '456(地排车)', 'carTypeName': '地排车', 'carTypeCode': '456', 'carTypeId': '158', 'carTypeWeight': '10', 'storeTareWeight': '', 'proveType': '666', 'grossWeight': '109', 'tareWeight': '10', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '哈达测试部', 'calcDepId': '', 'regionName': '', 'regionId': '0', 'productName': '雪莲果', 'productId': '2182', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-24 17:04:40', 'remark': 'false', 'goodsTagIds': '', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-24 17:04:40', 'tareWeightDate': '2021-08-24 17:04:40', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '国锋', 'inGreeterId': '16', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''}
{}
[2021-08-24 17:04:47] [INFO] : ======================================================================================
[2021-08-24 17:04:47] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doUndo.action
protocolId=&pwd=&clientRedirectTag=&viewType=refund&optType=0&optUrl=&correctInfo=1&weightType=1&id=5701&goodsId=5715&number=202108240200209&modified=2021-08-24%2017%3A04%3A43&status=4&source=1&updateFeeItems=&correctDiscount=1&totalAmount=20300&customerId=141951&fundAccount=107621&accountId=107621&ic=210823173732&customerName=%E5%93%88%E6%B5%8B&customerPhone=18089008005&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA79098&autocomplete-cartype=456%28%E5%9C%B0%E6%8E%92%E8%BD%A6%29&carTypeName=%E5%9C%B0%E6%8E%92%E8%BD%A6&carTypeCode=456&carTypeId=158&carTypeWeight=10&storeTareWeight=&proveType=666&grossWeight=109&tareWeight=10&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E5%93%88%E8%BE%BE%E6%B5%8B%E8%AF%95%E9%83%A8&dep=129®ionId=72&productName=%E9%9B%AA%E8%8E%B2%E6%9E%9C&productId=2182&productArea=%E9%87%8D%E5%BA%86%2C%E9%87%8D%E5%BA%86%E5%B8%82%2C%E4%B8%87%E5%B7%9E%E5%8C%BA&originId=500101&tradeTypeId=&chargeTotalAmount=20300&chargeTotalAmountYuan=203&freezeMoneySymbol=203&comparisonFreezeAmount=203&created=2021-08-24%2017%3A04%3A40&remark=&goodsTagIds=&shareRatio=0&handlingTeam=&steveTeamId=&handlingRatio=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&marketFlag=hd&totalMoney=20300&receivable=20300&collectionPrice=0&discountAmount=0&handReceivableAmount=0&itemReceivableAmount=20300&receivableAmount=20300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=1616&driverTel=&grossWeightDate=2021-08-24%2017%3A04%3A40&tareWeightDate=2021-08-24%2017%3A04%3A40&grossPathName=&grossPathId=&tarePathId=&goodsRemark=%E5%A4%87%E6%B3%A8&inGreeterName=%E9%80%9A%E7%94%A8%E6%B5%8B%E8%AF%95&inGreeterId=274&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepId=0&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=488&488=200.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A488%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A20000%2C%22require%22%3A1%7D&billItemCheckIds=489&489=0.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A489%2C%22name%22%3A%22%E8%BF%94%E7%82%B9%22%2C%22receivable%22%3A0%2C%22require%22%3A1%7D&billItemCheckIds=494&494=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A494%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D
{}
[2021-08-24 17:04:50] [INFO] : ======================================================================================
[2021-08-24 17:04:50] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=ZC
None
{}
[2021-08-24 17:04:50] [INFO] : ======================================================================================
[2021-08-24 17:04:50] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:04:50] [INFO] : ======================================================================================
[2021-08-24 17:04:50] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"}
{}
[2021-08-24 17:04:51] [INFO] : ======================================================================================
[2021-08-24 17:04:51] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:04:51] [INFO] : ======================================================================================
[2021-08-24 17:04:51] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:04:51] [INFO] : ======================================================================================
[2021-08-24 17:04:51] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:04:51] [INFO] : ======================================================================================
[2021-08-24 17:04:51] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:04:52] [INFO] : ======================================================================================
[2021-08-24 17:04:52] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:04:52] [INFO] : ======================================================================================
[2021-08-24 17:04:52] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66", "carTypeWeight": 10, "plate": "\u5dddA38898", "inGreeterId": 16, "inGreeterName": "\u56fd\u950b", "productId": 2182, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 109, "grossWeightDate": "2021-08-24 17:04:52", "newWeight": 99, "tareWeight": 10, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA38898", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "cateId": 2182, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": "", "origin": "", "originCode": "", "tradeType": "", "tradeTypeName": "", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": "", "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:04:52] [INFO] : ======================================================================================
[2021-08-24 17:04:52] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108240200211'}
{}
[2021-08-24 17:04:53] [INFO] : ======================================================================================
[2021-08-24 17:04:53] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/5703.action
None
{}
[2021-08-24 17:04:54] [INFO] : ======================================================================================
[2021-08-24 17:04:54] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=210823173732
None
{}
[2021-08-24 17:04:54] [INFO] : ======================================================================================
[2021-08-24 17:04:54] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州
None
{}
[2021-08-24 17:04:55] [INFO] : ======================================================================================
[2021-08-24 17:04:55] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action
{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 5703, 'goodsId': '5717', 'number': '202108240200211', 'modified': '2021-08-24 17:04:55', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A38898', 'autocomplete-cartype': '456(地排车)', 'carTypeName': '地排车', 'carTypeCode': '456', 'carTypeId': '158', 'carTypeWeight': '10', 'storeTareWeight': '', 'proveType': '666', 'grossWeight': '109', 'tareWeight': '10', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '哈达测试部', 'calcDepId': '129', 'regionName': '234', 'regionId': '0', 'productName': '雪莲果', 'productId': '2182', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-24 17:04:53', 'remark': 'false', 'goodsTagIds': '', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-24 17:04:53', 'tareWeightDate': '2021-08-24 17:04:53', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '国锋', 'inGreeterId': '16', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''}
{}
[2021-08-24 17:04:55] [INFO] : ======================================================================================
[2021-08-24 17:04:55] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doFreeze.action
protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=1&id=5703&goodsId=5717&number=202108240200211&modified=2021-08-24%2017%3A04%3A53&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=20300&customerId=141951&fundAccount=107621&ic=210823173732&customerName=%E5%93%88%E6%B5%8B&customerPhone=18089008005&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA38898&autocomplete-cartype=456%28%E5%9C%B0%E6%8E%92%E8%BD%A6%29&carTypeName=%E5%9C%B0%E6%8E%92%E8%BD%A6&carTypeCode=456&carTypeId=158&carTypeWeight=10&storeTareWeight=&proveType=666&grossWeight=109&tareWeight=10&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E5%93%88%E8%BE%BE%E6%B5%8B%E8%AF%95%E9%83%A8&calcDepId=129&dep=129®ionName=234®ionId=271&productName=%E9%9B%AA%E8%8E%B2%E6%9E%9C&productId=2182&productArea=%E9%87%8D%E5%BA%86%2C%E9%87%8D%E5%BA%86%E5%B8%82%2C%E4%B8%87%E5%B7%9E%E5%8C%BA&parentId=500100&levelType=&originId=500101&tradeTypeId=&chargeTotalAmount=20300&chargeTotalAmountYuan=203&freezeMoneySymbol=203&comparisonFreezeAmount=203&created=2021-08-24%2017%3A04%3A53&remark=&marketFlag=hd&totalMoney=20300&receivable=20300&collectionPrice=0&discountAmount=0&handReceivableAmount=0&itemReceivableAmount=20300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=20300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=1616&driverTel=&grossWeightDate=2021-08-24%2017%3A04%3A53&tareWeightDate=2021-08-24%2017%3A04%3A53&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=&inGreeterId=0&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=107621&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=488&488=200.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A488%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A20000%2C%22require%22%3A1%7D&billItemCheckIds=489&489=0.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A489%2C%22name%22%3A%22%E8%BF%94%E7%82%B9%22%2C%22receivable%22%3A0%2C%22require%22%3A1%7D&billItemCheckIds=494&494=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A494%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D
{}
[2021-08-24 17:04:58] [INFO] : ======================================================================================
[2021-08-24 17:04:58] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108240200211'}
{}
[2021-08-24 17:04:58] [INFO] : ======================================================================================
[2021-08-24 17:04:58] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/unfreeze/5703.action
None
{}
[2021-08-24 17:05:00] [INFO] : ======================================================================================
[2021-08-24 17:05:00] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州
None
{}
[2021-08-24 17:05:00] [INFO] : ======================================================================================
[2021-08-24 17:05:00] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action
{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'unfreeze', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 5703, 'goodsId': '5717', 'number': '202108240200211', 'modified': '2021-08-24 17:05:00', 'status': '3', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A38898', 'autocomplete-cartype': '456(地排车)', 'carTypeName': '地排车', 'carTypeCode': '456', 'carTypeId': '158', 'carTypeWeight': '10', 'storeTareWeight': '', 'proveType': '666', 'grossWeight': '109', 'tareWeight': '10', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '哈达测试部', 'regionName': '', 'regionId': '0', 'productName': '雪莲果', 'productId': '2182', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-24 17:04:53', 'remark': 'false', 'goodsTagIds': '', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-24 17:04:53', 'tareWeightDate': '2021-08-24 17:04:53', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '国锋', 'inGreeterId': '16', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': ''}
{}
[2021-08-24 17:05:00] [INFO] : ======================================================================================
[2021-08-24 17:05:00] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doUnfreeze.action
protocolId=&pwd=111111&clientRedirectTag=&viewType=unfreeze&optType=0&optUrl=&correctInfo=1&weightType=1&id=5703&goodsId=5717&number=202108240200211&modified=2021-08-24%2017%3A04%3A53&status=3&source=1&updateFeeItems=&correctDiscount=1&totalAmount=20300&customerId=141951&fundAccount=107621&accountId=107621&ic=210823173732&customerName=%E5%93%88%E6%B5%8B&customerPhone=18089008005&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA38898&autocomplete-cartype=456%28%E5%9C%B0%E6%8E%92%E8%BD%A6%29&carTypeName=%E5%9C%B0%E6%8E%92%E8%BD%A6&carTypeCode=456&carTypeId=158&carTypeWeight=10&storeTareWeight=&proveType=666&grossWeight=109&tareWeight=10&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E5%93%88%E8%BE%BE%E6%B5%8B%E8%AF%95%E9%83%A8&dep=129®ionId=271&productName=%E9%9B%AA%E8%8E%B2%E6%9E%9C&productId=2182&productArea=%E9%87%8D%E5%BA%86%2C%E9%87%8D%E5%BA%86%E5%B8%82%2C%E4%B8%87%E5%B7%9E%E5%8C%BA&originId=500101&tradeTypeId=&chargeTotalAmount=20300&chargeTotalAmountYuan=203&freezeMoneySymbol=203&comparisonFreezeAmount=203&created=2021-08-24%2017%3A04%3A53&remark=%E5%A4%87%E6%B3%A8&goodsTagIds=&shareRatio=0&handlingTeam=&steveTeamId=&handlingRatio=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&marketFlag=hd&totalMoney=20300&receivable=20300&collectionPrice=0&discountAmount=0&handReceivableAmount=0&itemReceivableAmount=20300&receivableAmount=20300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=1616&driverTel=&grossWeightDate=2021-08-24%2017%3A04%3A53&tareWeightDate=2021-08-24%2017%3A04%3A53&grossPathName=&grossPathId=&tarePathId=&goodsRemark=%E5%A4%87%E6%B3%A8&inGreeterName=%E9%80%9A%E7%94%A8%E6%B5%8B%E8%AF%95&inGreeterId=274&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepId=0&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=488&488=200.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A488%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A20000%2C%22require%22%3A1%7D&billItemCheckIds=489&489=0.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A489%2C%22name%22%3A%22%E8%BF%94%E7%82%B9%22%2C%22receivable%22%3A0%2C%22require%22%3A1%7D&billItemCheckIds=494&494=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A494%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D
{}
[2021-08-24 17:05:01] [INFO] : ======================================================================================
[2021-08-24 17:05:01] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=ZC
None
{}
[2021-08-24 17:05:02] [INFO] : ======================================================================================
[2021-08-24 17:05:02] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:05:02] [INFO] : ======================================================================================
[2021-08-24 17:05:02] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"}
{}
[2021-08-24 17:05:02] [INFO] : ======================================================================================
[2021-08-24 17:05:02] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:05:02] [INFO] : ======================================================================================
[2021-08-24 17:05:02] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:05:02] [INFO] : ======================================================================================
[2021-08-24 17:05:02] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:05:03] [INFO] : ======================================================================================
[2021-08-24 17:05:03] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:05:03] [INFO] : ======================================================================================
[2021-08-24 17:05:03] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:05:03] [INFO] : ======================================================================================
[2021-08-24 17:05:03] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66", "carTypeWeight": 10, "plate": "\u5dddA84175", "inGreeterId": 16, "inGreeterName": "\u56fd\u950b", "productId": 2182, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 109, "grossWeightDate": "2021-08-24 17:05:03", "newWeight": 99, "tareWeight": 10, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA84175", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "cateId": 2182, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": "", "origin": "", "originCode": "", "tradeType": "", "tradeTypeName": "", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": "", "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:05:04] [INFO] : ======================================================================================
[2021-08-24 17:05:04] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108240200212'}
{}
[2021-08-24 17:05:04] [INFO] : ======================================================================================
[2021-08-24 17:05:04] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/5704.action
None
{}
[2021-08-24 17:05:06] [INFO] : ======================================================================================
[2021-08-24 17:05:06] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=210823173732
None
{}
[2021-08-24 17:05:06] [INFO] : ======================================================================================
[2021-08-24 17:05:06] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州
None
{}
[2021-08-24 17:05:06] [INFO] : ======================================================================================
[2021-08-24 17:05:06] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action
{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 5704, 'goodsId': '5718', 'number': '202108240200212', 'modified': '2021-08-24 17:05:06', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A84175', 'autocomplete-cartype': '456(地排车)', 'carTypeName': '地排车', 'carTypeCode': '456', 'carTypeId': '158', 'carTypeWeight': '10', 'storeTareWeight': '', 'proveType': '666', 'grossWeight': '109', 'tareWeight': '10', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '哈达测试部', 'calcDepId': '129', 'regionName': '234', 'regionId': '0', 'productName': '雪莲果', 'productId': '2182', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-24 17:05:05', 'remark': 'false', 'goodsTagIds': '', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-24 17:05:04', 'tareWeightDate': '2021-08-24 17:05:04', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '国锋', 'inGreeterId': '16', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''}
{}
[2021-08-24 17:05:07] [INFO] : ======================================================================================
[2021-08-24 17:05:07] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doFreeze.action
protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=1&id=5704&goodsId=5718&number=202108240200212&modified=2021-08-24%2017%3A05%3A05&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=20300&customerId=141951&fundAccount=107621&ic=210823173732&customerName=%E5%93%88%E6%B5%8B&customerPhone=18089008005&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA84175&autocomplete-cartype=456%28%E5%9C%B0%E6%8E%92%E8%BD%A6%29&carTypeName=%E5%9C%B0%E6%8E%92%E8%BD%A6&carTypeCode=456&carTypeId=158&carTypeWeight=10&storeTareWeight=&proveType=666&grossWeight=109&tareWeight=10&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E5%93%88%E8%BE%BE%E6%B5%8B%E8%AF%95%E9%83%A8&calcDepId=129&dep=129®ionName=234®ionId=271&productName=%E9%9B%AA%E8%8E%B2%E6%9E%9C&productId=2182&productArea=%E9%87%8D%E5%BA%86%2C%E9%87%8D%E5%BA%86%E5%B8%82%2C%E4%B8%87%E5%B7%9E%E5%8C%BA&parentId=500100&levelType=&originId=500101&tradeTypeId=&chargeTotalAmount=20300&chargeTotalAmountYuan=203&freezeMoneySymbol=203&comparisonFreezeAmount=203&created=2021-08-24%2017%3A05%3A05&remark=&marketFlag=hd&totalMoney=20300&receivable=20300&collectionPrice=0&discountAmount=0&handReceivableAmount=0&itemReceivableAmount=20300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=20300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=1616&driverTel=&grossWeightDate=2021-08-24%2017%3A05%3A04&tareWeightDate=2021-08-24%2017%3A05%3A04&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=&inGreeterId=0&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=107621&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=488&488=200.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A488%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A20000%2C%22require%22%3A1%7D&billItemCheckIds=489&489=0.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A489%2C%22name%22%3A%22%E8%BF%94%E7%82%B9%22%2C%22receivable%22%3A0%2C%22require%22%3A1%7D&billItemCheckIds=494&494=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A494%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D
{}
[2021-08-24 17:05:09] [INFO] : ======================================================================================
[2021-08-24 17:05:09] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listBackSkinTrucks
{"plate": "", "number": "202108240200212", "customerName": ""}
{}
[2021-08-24 17:05:10] [INFO] : ======================================================================================
[2021-08-24 17:05:10] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "sy", "departmentId": 58, "keyword": ""}
{}
[2021-08-24 17:05:10] [INFO] : ======================================================================================
[2021-08-24 17:05:10] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/backSkinWeighSave
{"hasStoreTruck": 1, "number": "202108240200212", "outGreeterId": 223, "outGreeterName": "\u6d4b\u8bd5\u6c88\u9633", "plate": "\u5dddA84175", "rail": 1, "tareWeight": 69, "tareWeightDate": "2021-08-24 17:05:10", "weighImgs": [], "weighId": 0, "remark": "123", "carTypeWeight": 10, "trailerNumber": "\u5dddA84175", "pathAddress": "A4-BB-6D-0A-F4-13", "bskinWithGoods": -1, "ic": "", "customerName": null, "customerId": 0, "carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66"}
{}
[2021-08-24 17:05:10] [INFO] : ======================================================================================
[2021-08-24 17:05:10] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108240200212'}
{}
[2021-08-24 17:05:10] [INFO] : ======================================================================================
[2021-08-24 17:05:10] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=ZC
None
{}
[2021-08-24 17:05:11] [INFO] : ======================================================================================
[2021-08-24 17:05:11] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:05:11] [INFO] : ======================================================================================
[2021-08-24 17:05:11] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"}
{}
[2021-08-24 17:05:11] [INFO] : ======================================================================================
[2021-08-24 17:05:11] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:05:11] [INFO] : ======================================================================================
[2021-08-24 17:05:11] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:05:11] [INFO] : ======================================================================================
[2021-08-24 17:05:11] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:05:12] [INFO] : ======================================================================================
[2021-08-24 17:05:12] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:05:12] [INFO] : ======================================================================================
[2021-08-24 17:05:12] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:05:12] [INFO] : ======================================================================================
[2021-08-24 17:05:12] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66", "carTypeWeight": 10, "plate": "\u5dddA90235", "inGreeterId": 16, "inGreeterName": "\u56fd\u950b", "productId": 2182, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 109, "grossWeightDate": "2021-08-24 17:05:12", "newWeight": 99, "tareWeight": 10, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA90235", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "cateId": 2182, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": "", "origin": "", "originCode": "", "tradeType": "", "tradeTypeName": "", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": "", "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:05:13] [INFO] : ======================================================================================
[2021-08-24 17:05:13] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108240200213'}
{}
[2021-08-24 17:05:13] [INFO] : ======================================================================================
[2021-08-24 17:05:13] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/update/5705.action
None
{}
[2021-08-24 17:05:14] [INFO] : ======================================================================================
[2021-08-24 17:05:14] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州
None
{}
[2021-08-24 17:05:15] [INFO] : ======================================================================================
[2021-08-24 17:05:15] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action
{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'update', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 5705, 'goodsId': '5719', 'number': '202108240200213', 'modified': '2021-08-24 17:05:15', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A90235', 'autocomplete-cartype': '456(地排车)', 'carTypeName': '地排车', 'carTypeCode': '456', 'carTypeId': '158', 'carTypeWeight': '10', 'storeTareWeight': '', 'proveType': '666', 'grossWeight': '109', 'tareWeight': '10', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '哈达测试部', 'regionName': '', 'regionId': '0', 'productName': '雪莲果', 'productId': '2182', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-24 17:05:14', 'remark': 'false', 'goodsTagIds': '', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-24 17:05:14', 'tareWeightDate': '2021-08-24 17:05:14', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '国锋', 'inGreeterId': '16', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': ''}
{}
[2021-08-24 17:05:15] [INFO] : ======================================================================================
[2021-08-24 17:05:15] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/doUpdate.action
protocolId=&pwd=111111&clientRedirectTag=&viewType=update&optType=0&optUrl=&correctInfo=1&weightType=1&id=5705&goodsId=5719&number=202108240200213&modified=2021-08-24%2017%3A05%3A14&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=20300&customerId=0&fundAccount=&accountId=&ic=&customerName=&customerPhone=&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA90235&autocomplete-cartype=456%28%E5%9C%B0%E6%8E%92%E8%BD%A6%29&carTypeName=%E5%9C%B0%E6%8E%92%E8%BD%A6&carTypeCode=456&carTypeId=158&carTypeWeight=10&storeTareWeight=&proveType=666&grossWeight=109&tareWeight=10&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E5%93%88%E8%BE%BE%E6%B5%8B%E8%AF%95%E9%83%A8&dep=129®ionId=271&productName=%E9%9B%AA%E8%8E%B2%E6%9E%9C&productId=2182&productArea=%E9%87%8D%E5%BA%86%2C%E9%87%8D%E5%BA%86%E5%B8%82%2C%E4%B8%87%E5%B7%9E%E5%8C%BA&originId=500101&tradeTypeId=&chargeTotalAmount=20300&chargeTotalAmountYuan=203&freezeMoneySymbol=203&comparisonFreezeAmount=203&created=2021-08-24%2017%3A05%3A14&remark=%E5%A4%87%E6%B3%A8&shareRatio=0&handlingTeam=&steveTeamId=&handlingRatio=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&marketFlag=hd&totalMoney=20300&receivable=20300&collectionPrice=0&discountAmount=0&handReceivableAmount=0&itemReceivableAmount=20300&receivableAmount=20300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=1616&driverTel=&grossWeightDate=2021-08-24%2017%3A05%3A14&tareWeightDate=2021-08-24%2017%3A05%3A14&grossPathName=&grossPathId=&tarePathId=&goodsRemark=%E5%A4%87%E6%B3%A8&inGreeterName=%E9%80%9A%E7%94%A8%E6%B5%8B%E8%AF%95&inGreeterId=274&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepId=0®ionName=234&parentId=500100&calcDepId=129&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=488&488=200.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A488%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A20000%2C%22require%22%3A1%7D&billItemCheckIds=489&489=0.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A489%2C%22name%22%3A%22%E8%BF%94%E7%82%B9%22%2C%22receivable%22%3A0%2C%22require%22%3A1%7D&billItemCheckIds=494&494=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A494%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D
{}
[2021-08-24 17:05:15] [INFO] : ======================================================================================
[2021-08-24 17:05:15] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=ZC
None
{}
[2021-08-24 17:05:16] [INFO] : ======================================================================================
[2021-08-24 17:05:16] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:05:16] [INFO] : ======================================================================================
[2021-08-24 17:05:16] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u852c\u83dc"}
{}
[2021-08-24 17:05:16] [INFO] : ======================================================================================
[2021-08-24 17:05:16] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:05:16] [INFO] : ======================================================================================
[2021-08-24 17:05:16] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:05:16] [INFO] : ======================================================================================
[2021-08-24 17:05:16] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:05:17] [INFO] : ======================================================================================
[2021-08-24 17:05:17] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:05:17] [INFO] : ======================================================================================
[2021-08-24 17:05:17] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:05:17] [INFO] : ======================================================================================
[2021-08-24 17:05:17] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66", "carTypeWeight": 10, "plate": "\u5dddA12345", "inGreeterId": 16, "inGreeterName": "\u56fd\u950b", "productId": 1, "productName": "\u852c\u83dc", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 109, "grossWeightDate": "2021-08-24 17:05:17", "newWeight": 99, "tareWeight": 10, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA12345", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "cateId": 1, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": "", "origin": "", "originCode": "", "tradeType": "", "tradeTypeName": "", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": "", "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:05:18] [INFO] : ======================================================================================
[2021-08-24 17:05:18] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/view/5706.action
None
{}
[2021-08-24 17:05:19] [INFO] : ======================================================================================
[2021-08-24 17:05:19] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=210823173732
None
{}
[2021-08-24 17:05:20] [INFO] : ======================================================================================
[2021-08-24 17:05:20] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=ZC
None
{}
[2021-08-24 17:05:20] [INFO] : ======================================================================================
[2021-08-24 17:05:20] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:05:20] [INFO] : ======================================================================================
[2021-08-24 17:05:20] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"}
{}
[2021-08-24 17:05:20] [INFO] : ======================================================================================
[2021-08-24 17:05:20] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:05:20] [INFO] : ======================================================================================
[2021-08-24 17:05:20] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:05:20] [INFO] : ======================================================================================
[2021-08-24 17:05:20] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:05:21] [INFO] : ======================================================================================
[2021-08-24 17:05:21] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:05:21] [INFO] : ======================================================================================
[2021-08-24 17:05:21] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:05:21] [INFO] : ======================================================================================
[2021-08-24 17:05:21] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66", "carTypeWeight": 10, "plate": "\u5dddA79103", "inGreeterId": 16, "inGreeterName": "\u56fd\u950b", "productId": 2182, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 109, "grossWeightDate": "2021-08-24 17:05:21", "newWeight": 99, "tareWeight": 10, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA79103", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "cateId": 2182, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": "", "origin": "", "originCode": "", "tradeType": "", "tradeTypeName": "", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": "", "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:05:22] [INFO] : ======================================================================================
[2021-08-24 17:05:22] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108240200215'}
{}
[2021-08-24 17:05:22] [INFO] : ======================================================================================
[2021-08-24 17:05:22] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/5707.action
None
{}
[2021-08-24 17:05:24] [INFO] : ======================================================================================
[2021-08-24 17:05:24] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=210823173732
None
{}
[2021-08-24 17:05:24] [INFO] : ======================================================================================
[2021-08-24 17:05:24] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州
None
{}
[2021-08-24 17:05:24] [INFO] : ======================================================================================
[2021-08-24 17:05:24] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action
{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 5707, 'goodsId': '5721', 'number': '202108240200215', 'modified': '2021-08-24 17:05:24', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A79103', 'autocomplete-cartype': '456(地排车)', 'carTypeName': '地排车', 'carTypeCode': '456', 'carTypeId': '158', 'carTypeWeight': '10', 'storeTareWeight': '', 'proveType': '666', 'grossWeight': '109', 'tareWeight': '10', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '哈达测试部', 'calcDepId': '129', 'regionName': '', 'regionId': '0', 'productName': '雪莲果', 'productId': '2182', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-24 17:05:23', 'remark': 'false', 'goodsTagIds': '', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-24 17:05:23', 'tareWeightDate': '2021-08-24 17:05:23', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '国锋', 'inGreeterId': '16', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''}
{}
[2021-08-24 17:05:25] [INFO] : ======================================================================================
[2021-08-24 17:05:25] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doPay.action
protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=1&id=5707&goodsId=5721&number=202108240200215&modified=2021-08-24%2017%3A05%3A23&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=20300&customerId=141951&fundAccount=107621&ic=210823173732&customerName=%E5%93%88%E6%B5%8B&customerPhone=18089008005&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA79103&autocomplete-cartype=456%28%E5%9C%B0%E6%8E%92%E8%BD%A6%29&carTypeName=%E5%9C%B0%E6%8E%92%E8%BD%A6&carTypeCode=456&carTypeId=158&carTypeWeight=10&storeTareWeight=&proveType=666&grossWeight=109&tareWeight=10&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E5%93%88%E8%BE%BE%E6%B5%8B%E8%AF%95%E9%83%A8&calcDepId=129&dep=129®ionName=234®ionId=271&productName=%E9%9B%AA%E8%8E%B2%E6%9E%9C&productId=2182&productArea=%E9%87%8D%E5%BA%86%2C%E9%87%8D%E5%BA%86%E5%B8%82%2C%E4%B8%87%E5%B7%9E%E5%8C%BA&parentId=500100&levelType=&originId=500101&tradeTypeId=&chargeTotalAmount=20300&chargeTotalAmountYuan=203&freezeMoneySymbol=203&comparisonFreezeAmount=203&created=2021-08-24%2017%3A05%3A23&remark=&marketFlag=hd&totalMoney=20300&receivable=20300&collectionPrice=0&discountAmount=0&handReceivableAmount=0&itemReceivableAmount=20300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=20300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=1616&driverTel=&grossWeightDate=2021-08-24%2017%3A05%3A23&tareWeightDate=2021-08-24%2017%3A05%3A23&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=%E5%9B%BD%E9%94%8B&inGreeterId=16&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=107621&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=488&488=200.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A488%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A20000%2C%22require%22%3A1%7D&billItemCheckIds=489&489=0.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A489%2C%22name%22%3A%22%E8%BF%94%E7%82%B9%22%2C%22receivable%22%3A0%2C%22require%22%3A1%7D&billItemCheckIds=494&494=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A494%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D
{}
[2021-08-24 17:05:28] [INFO] : ======================================================================================
[2021-08-24 17:05:28] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'cname', 'attrValue': '哈测'}
{}
[2021-08-24 17:05:29] [INFO] : ======================================================================================
[2021-08-24 17:05:29] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=ZC
None
{}
[2021-08-24 17:05:29] [INFO] : ======================================================================================
[2021-08-24 17:05:29] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:05:30] [INFO] : ======================================================================================
[2021-08-24 17:05:30] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u6811\u756a\u8304"}
{}
[2021-08-24 17:05:30] [INFO] : ======================================================================================
[2021-08-24 17:05:30] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:05:30] [INFO] : ======================================================================================
[2021-08-24 17:05:30] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:05:30] [INFO] : ======================================================================================
[2021-08-24 17:05:30] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:05:31] [INFO] : ======================================================================================
[2021-08-24 17:05:31] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:05:31] [INFO] : ======================================================================================
[2021-08-24 17:05:31] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:05:31] [INFO] : ======================================================================================
[2021-08-24 17:05:31] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66", "carTypeWeight": 10, "plate": "\u5dddA12345", "inGreeterId": 16, "inGreeterName": "\u56fd\u950b", "productId": 279, "productName": "\u6811\u756a\u8304", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 109, "grossWeightDate": "2021-08-24 17:05:31", "newWeight": 99, "tareWeight": 10, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA12345", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "cateId": 279, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": "", "origin": "", "originCode": "", "tradeType": "", "tradeTypeName": "", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": "", "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:05:32] [INFO] : ======================================================================================
[2021-08-24 17:05:32] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'goods', 'attrValue': '树番茄'}
{}
[2021-08-24 17:05:32] [INFO] : ======================================================================================
[2021-08-24 17:05:32] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=ZC
None
{}
[2021-08-24 17:05:32] [INFO] : ======================================================================================
[2021-08-24 17:05:32] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:05:33] [INFO] : ======================================================================================
[2021-08-24 17:05:33] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"}
{}
[2021-08-24 17:05:33] [INFO] : ======================================================================================
[2021-08-24 17:05:33] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:05:33] [INFO] : ======================================================================================
[2021-08-24 17:05:33] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:05:33] [INFO] : ======================================================================================
[2021-08-24 17:05:33] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:05:33] [INFO] : ======================================================================================
[2021-08-24 17:05:33] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:05:34] [INFO] : ======================================================================================
[2021-08-24 17:05:34] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:05:34] [INFO] : ======================================================================================
[2021-08-24 17:05:34] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66", "carTypeWeight": 10, "plate": "\u5dddA20294", "inGreeterId": 16, "inGreeterName": "\u56fd\u950b", "productId": 2182, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 109, "grossWeightDate": "2021-08-24 17:05:34", "newWeight": 99, "tareWeight": 10, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA20294", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "cateId": 2182, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": "", "origin": "", "originCode": "", "tradeType": "", "tradeTypeName": "", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": "", "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:05:35] [INFO] : ======================================================================================
[2021-08-24 17:05:35] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108240200217'}
{}
[2021-08-24 17:05:35] [INFO] : ======================================================================================
[2021-08-24 17:05:35] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/5709.action
None
{}
[2021-08-24 17:05:36] [INFO] : ======================================================================================
[2021-08-24 17:05:36] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=210823173732
None
{}
[2021-08-24 17:05:37] [INFO] : ======================================================================================
[2021-08-24 17:05:37] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州
None
{}
[2021-08-24 17:05:37] [INFO] : ======================================================================================
[2021-08-24 17:05:37] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action
{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 5709, 'goodsId': '5723', 'number': '202108240200217', 'modified': '2021-08-24 17:05:37', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A20294', 'autocomplete-cartype': '456(地排车)', 'carTypeName': '地排车', 'carTypeCode': '456', 'carTypeId': '158', 'carTypeWeight': '10', 'storeTareWeight': '', 'proveType': '666', 'grossWeight': '109', 'tareWeight': '10', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '哈达测试部', 'calcDepId': '129', 'regionName': '', 'regionId': '0', 'productName': '雪莲果', 'productId': '2182', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-24 17:05:35', 'remark': 'false', 'goodsTagIds': '', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-24 17:05:35', 'tareWeightDate': '2021-08-24 17:05:35', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '国锋', 'inGreeterId': '16', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''}
{}
[2021-08-24 17:05:37] [INFO] : ======================================================================================
[2021-08-24 17:05:37] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doPay.action
protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=1&id=5709&goodsId=5723&number=202108240200217&modified=2021-08-24%2017%3A05%3A35&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=20300&customerId=141951&fundAccount=107621&ic=210823173732&customerName=%E5%93%88%E6%B5%8B&customerPhone=18089008005&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA20294&autocomplete-cartype=456%28%E5%9C%B0%E6%8E%92%E8%BD%A6%29&carTypeName=%E5%9C%B0%E6%8E%92%E8%BD%A6&carTypeCode=456&carTypeId=158&carTypeWeight=10&storeTareWeight=&proveType=666&grossWeight=109&tareWeight=10&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E5%93%88%E8%BE%BE%E6%B5%8B%E8%AF%95%E9%83%A8&calcDepId=129&dep=129®ionName=234®ionId=271&productName=%E9%9B%AA%E8%8E%B2%E6%9E%9C&productId=2182&productArea=%E9%87%8D%E5%BA%86%2C%E9%87%8D%E5%BA%86%E5%B8%82%2C%E4%B8%87%E5%B7%9E%E5%8C%BA&parentId=500100&levelType=&originId=500101&tradeTypeId=&chargeTotalAmount=20300&chargeTotalAmountYuan=203&freezeMoneySymbol=203&comparisonFreezeAmount=203&created=2021-08-24%2017%3A05%3A35&remark=&marketFlag=hd&totalMoney=20300&receivable=20300&collectionPrice=0&discountAmount=0&handReceivableAmount=0&itemReceivableAmount=20300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=20300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=1616&driverTel=&grossWeightDate=2021-08-24%2017%3A05%3A35&tareWeightDate=2021-08-24%2017%3A05%3A35&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=%E5%9B%BD%E9%94%8B&inGreeterId=16&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=107621&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=488&488=200.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A488%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A20000%2C%22require%22%3A1%7D&billItemCheckIds=489&489=0.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A489%2C%22name%22%3A%22%E8%BF%94%E7%82%B9%22%2C%22receivable%22%3A0%2C%22require%22%3A1%7D&billItemCheckIds=494&494=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A494%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D
{}
[2021-08-24 17:05:41] [INFO] : ======================================================================================
[2021-08-24 17:05:41] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'ic', 'attrValue': '210823173732'}
{}
[2021-08-24 17:05:42] [INFO] : ======================================================================================
[2021-08-24 17:05:42] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=ZC
None
{}
[2021-08-24 17:05:42] [INFO] : ======================================================================================
[2021-08-24 17:05:42] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:05:42] [INFO] : ======================================================================================
[2021-08-24 17:05:42] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u6811\u756a\u8304"}
{}
[2021-08-24 17:05:42] [INFO] : ======================================================================================
[2021-08-24 17:05:42] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:05:42] [INFO] : ======================================================================================
[2021-08-24 17:05:42] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:05:43] [INFO] : ======================================================================================
[2021-08-24 17:05:43] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:05:43] [INFO] : ======================================================================================
[2021-08-24 17:05:43] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:05:43] [INFO] : ======================================================================================
[2021-08-24 17:05:43] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:05:44] [INFO] : ======================================================================================
[2021-08-24 17:05:44] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66", "carTypeWeight": 10, "plate": "\u5dddA81302", "inGreeterId": 16, "inGreeterName": "\u56fd\u950b", "productId": 279, "productName": "\u6811\u756a\u8304", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 109, "grossWeightDate": "2021-08-24 17:05:44", "newWeight": 99, "tareWeight": 10, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA81302", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "cateId": 279, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": "", "origin": "", "originCode": "", "tradeType": "", "tradeTypeName": "", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": "", "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:05:44] [INFO] : ======================================================================================
[2021-08-24 17:05:44] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108240200218'}
{}
[2021-08-24 17:05:44] [INFO] : ======================================================================================
[2021-08-24 17:05:44] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=210823173732
None
{}
[2021-08-24 17:05:45] [INFO] : ======================================================================================
[2021-08-24 17:05:45] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=ZC
None
{}
[2021-08-24 17:05:45] [INFO] : ======================================================================================
[2021-08-24 17:05:45] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:05:45] [INFO] : ======================================================================================
[2021-08-24 17:05:45] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"}
{}
[2021-08-24 17:05:45] [INFO] : ======================================================================================
[2021-08-24 17:05:45] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:05:45] [INFO] : ======================================================================================
[2021-08-24 17:05:45] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:05:46] [INFO] : ======================================================================================
[2021-08-24 17:05:46] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:05:46] [INFO] : ======================================================================================
[2021-08-24 17:05:46] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:05:46] [INFO] : ======================================================================================
[2021-08-24 17:05:46] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:05:47] [INFO] : ======================================================================================
[2021-08-24 17:05:47] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66", "carTypeWeight": 10, "plate": "\u5dddA80078", "inGreeterId": 16, "inGreeterName": "\u56fd\u950b", "productId": 2182, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 109, "grossWeightDate": "2021-08-24 17:05:47", "newWeight": 99, "tareWeight": 10, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA80078", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "cateId": 2182, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": "", "origin": "", "originCode": "", "tradeType": "", "tradeTypeName": "", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": "", "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:05:47] [INFO] : ======================================================================================
[2021-08-24 17:05:47] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108240200219'}
{}
[2021-08-24 17:05:47] [INFO] : ======================================================================================
[2021-08-24 17:05:47] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/5711.action
None
{}
[2021-08-24 17:05:49] [INFO] : ======================================================================================
[2021-08-24 17:05:49] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=210823173732
None
{}
[2021-08-24 17:05:49] [INFO] : ======================================================================================
[2021-08-24 17:05:49] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州
None
{}
[2021-08-24 17:05:49] [INFO] : ======================================================================================
[2021-08-24 17:05:49] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action
{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 5711, 'goodsId': '5725', 'number': '202108240200219', 'modified': '2021-08-24 17:05:49', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A80078', 'autocomplete-cartype': '456(地排车)', 'carTypeName': '地排车', 'carTypeCode': '456', 'carTypeId': '158', 'carTypeWeight': '10', 'storeTareWeight': '', 'proveType': '666', 'grossWeight': '109', 'tareWeight': '10', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '哈达测试部', 'calcDepId': '129', 'regionName': '', 'regionId': '0', 'productName': '雪莲果', 'productId': '2182', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-24 17:05:48', 'remark': 'false', 'goodsTagIds': '', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-24 17:05:48', 'tareWeightDate': '2021-08-24 17:05:48', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '国锋', 'inGreeterId': '16', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''}
{}
[2021-08-24 17:05:50] [INFO] : ======================================================================================
[2021-08-24 17:05:50] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doPay.action
protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=1&id=5711&goodsId=5725&number=202108240200219&modified=2021-08-24%2017%3A05%3A48&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=20300&customerId=141951&fundAccount=107621&ic=210823173732&customerName=%E5%93%88%E6%B5%8B&customerPhone=18089008005&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA80078&autocomplete-cartype=456%28%E5%9C%B0%E6%8E%92%E8%BD%A6%29&carTypeName=%E5%9C%B0%E6%8E%92%E8%BD%A6&carTypeCode=456&carTypeId=158&carTypeWeight=10&storeTareWeight=&proveType=666&grossWeight=109&tareWeight=10&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E5%93%88%E8%BE%BE%E6%B5%8B%E8%AF%95%E9%83%A8&calcDepId=129&dep=129®ionName=234®ionId=271&productName=%E9%9B%AA%E8%8E%B2%E6%9E%9C&productId=2182&productArea=%E9%87%8D%E5%BA%86%2C%E9%87%8D%E5%BA%86%E5%B8%82%2C%E4%B8%87%E5%B7%9E%E5%8C%BA&parentId=500100&levelType=&originId=500101&tradeTypeId=&chargeTotalAmount=20300&chargeTotalAmountYuan=203&freezeMoneySymbol=203&comparisonFreezeAmount=203&created=2021-08-24%2017%3A05%3A48&remark=&marketFlag=hd&totalMoney=20300&receivable=20300&collectionPrice=0&discountAmount=0&handReceivableAmount=0&itemReceivableAmount=20300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=20300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=1616&driverTel=&grossWeightDate=2021-08-24%2017%3A05%3A48&tareWeightDate=2021-08-24%2017%3A05%3A48&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=%E5%9B%BD%E9%94%8B&inGreeterId=16&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=107621&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=488&488=200.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A488%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A20000%2C%22require%22%3A1%7D&billItemCheckIds=489&489=0.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A489%2C%22name%22%3A%22%E8%BF%94%E7%82%B9%22%2C%22receivable%22%3A0%2C%22require%22%3A1%7D&billItemCheckIds=494&494=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A494%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D
{}
[2021-08-24 17:05:53] [INFO] : ======================================================================================
[2021-08-24 17:05:53] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'phone', 'attrValue': '18089008005'}
{}
[2021-08-24 17:05:55] [INFO] : ======================================================================================
[2021-08-24 17:05:55] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=ZC
None
{}
[2021-08-24 17:05:55] [INFO] : ======================================================================================
[2021-08-24 17:05:55] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:05:55] [INFO] : ======================================================================================
[2021-08-24 17:05:55] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"}
{}
[2021-08-24 17:05:55] [INFO] : ======================================================================================
[2021-08-24 17:05:55] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:05:55] [INFO] : ======================================================================================
[2021-08-24 17:05:55] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:05:55] [INFO] : ======================================================================================
[2021-08-24 17:05:55] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:05:56] [INFO] : ======================================================================================
[2021-08-24 17:05:56] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:05:56] [INFO] : ======================================================================================
[2021-08-24 17:05:56] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:05:56] [INFO] : ======================================================================================
[2021-08-24 17:05:56] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66", "carTypeWeight": 10, "plate": "\u5dddA30416", "inGreeterId": 16, "inGreeterName": "\u56fd\u950b", "productId": 2182, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 109, "grossWeightDate": "2021-08-24 17:05:56", "newWeight": 99, "tareWeight": 10, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA30416", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "cateId": 2182, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": "", "origin": "", "originCode": "", "tradeType": "", "tradeTypeName": "", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": "", "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:05:57] [INFO] : ======================================================================================
[2021-08-24 17:05:57] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'likePlate', 'attrValue': '川A30416'}
{}
[2021-08-24 17:05:57] [INFO] : ======================================================================================
[2021-08-24 17:05:57] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=ZC
None
{}
[2021-08-24 17:05:57] [INFO] : ======================================================================================
[2021-08-24 17:05:57] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:05:58] [INFO] : ======================================================================================
[2021-08-24 17:05:58] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"}
{}
[2021-08-24 17:05:58] [INFO] : ======================================================================================
[2021-08-24 17:05:58] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:05:58] [INFO] : ======================================================================================
[2021-08-24 17:05:58] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:05:58] [INFO] : ======================================================================================
[2021-08-24 17:05:58] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:05:58] [INFO] : ======================================================================================
[2021-08-24 17:05:58] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:05:59] [INFO] : ======================================================================================
[2021-08-24 17:05:59] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:05:59] [INFO] : ======================================================================================
[2021-08-24 17:05:59] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66", "carTypeWeight": 10, "plate": "\u5dddA53994", "inGreeterId": 20, "inGreeterName": "\u54c8\u8fbe\u6d4b\u8bd5", "productId": 2182, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 109, "grossWeightDate": "2021-08-24 17:05:59", "newWeight": 99, "tareWeight": 10, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA53994", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "cateId": 2182, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": "", "origin": "", "originCode": "", "tradeType": "", "tradeTypeName": "", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": "", "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:06:00] [INFO] : ======================================================================================
[2021-08-24 17:06:00] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108240200221'}
{}
[2021-08-24 17:06:00] [INFO] : ======================================================================================
[2021-08-24 17:06:00] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/5713.action
None
{}
[2021-08-24 17:06:01] [INFO] : ======================================================================================
[2021-08-24 17:06:01] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=210823173732
None
{}
[2021-08-24 17:06:02] [INFO] : ======================================================================================
[2021-08-24 17:06:02] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州
None
{}
[2021-08-24 17:06:02] [INFO] : ======================================================================================
[2021-08-24 17:06:02] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action
{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 5713, 'goodsId': '5727', 'number': '202108240200221', 'modified': '2021-08-24 17:06:02', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A53994', 'autocomplete-cartype': '456(地排车)', 'carTypeName': '地排车', 'carTypeCode': '456', 'carTypeId': '158', 'carTypeWeight': '10', 'storeTareWeight': '', 'proveType': '666', 'grossWeight': '109', 'tareWeight': '10', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '哈达测试部', 'calcDepId': '129', 'regionName': '', 'regionId': '0', 'productName': '雪莲果', 'productId': '2182', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-24 17:06:00', 'remark': 'false', 'goodsTagIds': '', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-24 17:06:00', 'tareWeightDate': '2021-08-24 17:06:00', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '哈达测试', 'inGreeterId': '20', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''}
{}
[2021-08-24 17:06:02] [INFO] : ======================================================================================
[2021-08-24 17:06:02] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doPay.action
protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=1&id=5713&goodsId=5727&number=202108240200221&modified=2021-08-24%2017%3A06%3A00&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=20300&customerId=141951&fundAccount=107621&ic=210823173732&customerName=%E5%93%88%E6%B5%8B&customerPhone=18089008005&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA53994&autocomplete-cartype=456%28%E5%9C%B0%E6%8E%92%E8%BD%A6%29&carTypeName=%E5%9C%B0%E6%8E%92%E8%BD%A6&carTypeCode=456&carTypeId=158&carTypeWeight=10&storeTareWeight=&proveType=666&grossWeight=109&tareWeight=10&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E5%93%88%E8%BE%BE%E6%B5%8B%E8%AF%95%E9%83%A8&calcDepId=129&dep=129®ionName=234®ionId=271&productName=%E9%9B%AA%E8%8E%B2%E6%9E%9C&productId=2182&productArea=%E9%87%8D%E5%BA%86%2C%E9%87%8D%E5%BA%86%E5%B8%82%2C%E4%B8%87%E5%B7%9E%E5%8C%BA&parentId=500100&levelType=&originId=500101&tradeTypeId=&chargeTotalAmount=20300&chargeTotalAmountYuan=203&freezeMoneySymbol=203&comparisonFreezeAmount=203&created=2021-08-24%2017%3A06%3A00&remark=&marketFlag=hd&totalMoney=20300&receivable=20300&collectionPrice=0&discountAmount=0&handReceivableAmount=0&itemReceivableAmount=20300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=20300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=1616&driverTel=&grossWeightDate=2021-08-24%2017%3A06%3A00&tareWeightDate=2021-08-24%2017%3A06%3A00&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=%E5%93%88%E8%BE%BE%E6%B5%8B%E8%AF%95&inGreeterId=20&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=107621&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=488&488=200.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A488%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A20000%2C%22require%22%3A1%7D&billItemCheckIds=489&489=0.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A489%2C%22name%22%3A%22%E8%BF%94%E7%82%B9%22%2C%22receivable%22%3A0%2C%22require%22%3A1%7D&billItemCheckIds=494&494=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A494%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D
{}
[2021-08-24 17:06:06] [INFO] : ======================================================================================
[2021-08-24 17:06:06] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'pay', 'attrValue': '尔滨田太子'}
{}
[2021-08-24 17:06:07] [INFO] : ======================================================================================
[2021-08-24 17:06:07] [INFO] : http://test.jmsf.diligrp.com:8385/provider/getLookupList.action
{'provider': 'carTypeForJmsfProvider'}
{}
[2021-08-24 17:06:07] [INFO] : ======================================================================================
[2021-08-24 17:06:07] [INFO] : http://test.jmsf.diligrp.com:8385/provider/getLookupList.action
{'provider': 'categoryProvider'}
{}
[2021-08-24 17:06:07] [INFO] : ======================================================================================
[2021-08-24 17:06:07] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:06:08] [INFO] : ======================================================================================
[2021-08-24 17:06:08] [INFO] : http://test.jmsf.diligrp.com:8385/provider/getLookupList.action
{'provider': 'entranceFeeBillTypeProvider'}
{}
[2021-08-24 17:06:08] [INFO] : ======================================================================================
[2021-08-24 17:06:08] [INFO] : http://test.jmsf.diligrp.com:8385/provider/getLookupList.action
{'provider': 'entranceFeeBillStateProvider'}
{}
[2021-08-24 17:06:08] [INFO] : ======================================================================================
[2021-08-24 17:06:08] [INFO] : http://test.jmsf.diligrp.com:8385/provider/getLookupList.action
{'provider': 'tradeTypeProvider'}
{}
[2021-08-24 17:06:08] [INFO] : ======================================================================================
[2021-08-24 17:06:08] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'type': '1'}
{}
[2021-08-24 17:06:10] [INFO] : ======================================================================================
[2021-08-24 17:06:10] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=ZC
None
{}
[2021-08-24 17:06:10] [INFO] : ======================================================================================
[2021-08-24 17:06:10] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:06:10] [INFO] : ======================================================================================
[2021-08-24 17:06:10] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u852c\u83dc"}
{}
[2021-08-24 17:06:11] [INFO] : ======================================================================================
[2021-08-24 17:06:11] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:06:11] [INFO] : ======================================================================================
[2021-08-24 17:06:11] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:06:11] [INFO] : ======================================================================================
[2021-08-24 17:06:11] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:06:11] [INFO] : ======================================================================================
[2021-08-24 17:06:11] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:06:12] [INFO] : ======================================================================================
[2021-08-24 17:06:12] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:06:12] [INFO] : ======================================================================================
[2021-08-24 17:06:12] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "875", "carTypeId": 159, "carTypeName": "\u5c0f\u8f7f\u8f66", "carTypeWeight": 30, "plate": "\u5dddA12345", "inGreeterId": 16, "inGreeterName": "\u56fd\u950b", "productId": 1, "productName": "\u852c\u83dc", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 129, "grossWeightDate": "2021-08-24 17:06:12", "newWeight": 99, "tareWeight": 30, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA12345", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "cateId": 1, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": "", "origin": "", "originCode": "", "tradeType": "", "tradeTypeName": "", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": "", "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:06:12] [INFO] : ======================================================================================
[2021-08-24 17:06:12] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'carTypeId': 159}
{}
[2021-08-24 17:06:13] [INFO] : ======================================================================================
[2021-08-24 17:06:13] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=ZC
None
{}
[2021-08-24 17:06:13] [INFO] : ======================================================================================
[2021-08-24 17:06:13] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:06:13] [INFO] : ======================================================================================
[2021-08-24 17:06:13] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"}
{}
[2021-08-24 17:06:13] [INFO] : ======================================================================================
[2021-08-24 17:06:13] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:06:13] [INFO] : ======================================================================================
[2021-08-24 17:06:13] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:06:14] [INFO] : ======================================================================================
[2021-08-24 17:06:14] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:06:14] [INFO] : ======================================================================================
[2021-08-24 17:06:14] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:06:14] [INFO] : ======================================================================================
[2021-08-24 17:06:14] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:06:15] [INFO] : ======================================================================================
[2021-08-24 17:06:15] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66", "carTypeWeight": 10, "plate": "\u5dddA80420", "inGreeterId": 16, "inGreeterName": "\u56fd\u950b", "productId": 2182, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 109, "grossWeightDate": "2021-08-24 17:06:15", "newWeight": 99, "tareWeight": 10, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA80420", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "cateId": 2182, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": "", "origin": "", "originCode": "", "tradeType": "", "tradeTypeName": "", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": "", "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:06:15] [INFO] : ======================================================================================
[2021-08-24 17:06:15] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108240200223'}
{}
[2021-08-24 17:06:15] [INFO] : ======================================================================================
[2021-08-24 17:06:15] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/5715.action
None
{}
[2021-08-24 17:06:17] [INFO] : ======================================================================================
[2021-08-24 17:06:17] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=210823173732
None
{}
[2021-08-24 17:06:17] [INFO] : ======================================================================================
[2021-08-24 17:06:17] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州
None
{}
[2021-08-24 17:06:17] [INFO] : ======================================================================================
[2021-08-24 17:06:17] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action
{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 5715, 'goodsId': '5729', 'number': '202108240200223', 'modified': '2021-08-24 17:06:17', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A80420', 'autocomplete-cartype': '456(地排车)', 'carTypeName': '地排车', 'carTypeCode': '456', 'carTypeId': '158', 'carTypeWeight': '10', 'storeTareWeight': '', 'proveType': '666', 'grossWeight': '109', 'tareWeight': '10', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '哈达测试部', 'calcDepId': '129', 'regionName': '', 'regionId': '0', 'productName': '雪莲果', 'productId': '2182', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-24 17:06:16', 'remark': 'false', 'goodsTagIds': '', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-24 17:06:16', 'tareWeightDate': '2021-08-24 17:06:16', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '国锋', 'inGreeterId': '16', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''}
{}
[2021-08-24 17:06:18] [INFO] : ======================================================================================
[2021-08-24 17:06:18] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doPay.action
protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=1&id=5715&goodsId=5729&number=202108240200223&modified=2021-08-24%2017%3A06%3A16&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=20300&customerId=141951&fundAccount=107621&ic=210823173732&customerName=%E5%93%88%E6%B5%8B&customerPhone=18089008005&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA80420&autocomplete-cartype=456%28%E5%9C%B0%E6%8E%92%E8%BD%A6%29&carTypeName=%E5%9C%B0%E6%8E%92%E8%BD%A6&carTypeCode=456&carTypeId=158&carTypeWeight=10&storeTareWeight=&proveType=666&grossWeight=109&tareWeight=10&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E5%93%88%E8%BE%BE%E6%B5%8B%E8%AF%95%E9%83%A8&calcDepId=129&dep=129®ionName=234®ionId=271&productName=%E9%9B%AA%E8%8E%B2%E6%9E%9C&productId=2182&productArea=%E9%87%8D%E5%BA%86%2C%E9%87%8D%E5%BA%86%E5%B8%82%2C%E4%B8%87%E5%B7%9E%E5%8C%BA&parentId=500100&levelType=&originId=500101&tradeTypeId=&chargeTotalAmount=20300&chargeTotalAmountYuan=203&freezeMoneySymbol=203&comparisonFreezeAmount=203&created=2021-08-24%2017%3A06%3A16&remark=&marketFlag=hd&totalMoney=20300&receivable=20300&collectionPrice=0&discountAmount=0&handReceivableAmount=0&itemReceivableAmount=20300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=20300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=1616&driverTel=&grossWeightDate=2021-08-24%2017%3A06%3A16&tareWeightDate=2021-08-24%2017%3A06%3A16&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=%E5%9B%BD%E9%94%8B&inGreeterId=16&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=107621&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=488&488=200.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A488%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A20000%2C%22require%22%3A1%7D&billItemCheckIds=489&489=0.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A489%2C%22name%22%3A%22%E8%BF%94%E7%82%B9%22%2C%22receivable%22%3A0%2C%22require%22%3A1%7D&billItemCheckIds=494&494=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A494%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D
{}
[2021-08-24 17:06:21] [INFO] : ======================================================================================
[2021-08-24 17:06:21] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108240200223'}
{}
[2021-08-24 17:06:21] [INFO] : ======================================================================================
[2021-08-24 17:06:21] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'startTime': '2021-08-24 17:06:16', 'endTime': '2021-08-24 17:06:16'}
{}
[2021-08-24 17:06:22] [INFO] : ======================================================================================
[2021-08-24 17:06:22] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=ZC
None
{}
[2021-08-24 17:06:22] [INFO] : ======================================================================================
[2021-08-24 17:06:22] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:06:22] [INFO] : ======================================================================================
[2021-08-24 17:06:22] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u852c\u83dc"}
{}
[2021-08-24 17:06:22] [INFO] : ======================================================================================
[2021-08-24 17:06:22] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:06:22] [INFO] : ======================================================================================
[2021-08-24 17:06:22] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:06:23] [INFO] : ======================================================================================
[2021-08-24 17:06:23] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:06:23] [INFO] : ======================================================================================
[2021-08-24 17:06:23] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:06:23] [INFO] : ======================================================================================
[2021-08-24 17:06:23] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:06:24] [INFO] : ======================================================================================
[2021-08-24 17:06:24] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66", "carTypeWeight": 10, "plate": "\u5dddA12345", "inGreeterId": 16, "inGreeterName": "\u56fd\u950b", "productId": 1, "productName": "\u852c\u83dc", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 109, "grossWeightDate": "2021-08-24 17:06:24", "newWeight": 99, "tareWeight": 10, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA12345", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 131, "depName": "\u6d4b\u8bd5\u4e00\u7ec4", "cateId": 1, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": "", "origin": "", "originCode": "", "tradeType": "", "tradeTypeName": "", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": "", "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:06:24] [INFO] : ======================================================================================
[2021-08-24 17:06:24] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'dep': 131}
{}
[2021-08-24 17:06:24] [INFO] : ======================================================================================
[2021-08-24 17:06:24] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=ZC
None
{}
[2021-08-24 17:06:25] [INFO] : ======================================================================================
[2021-08-24 17:06:25] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:06:25] [INFO] : ======================================================================================
[2021-08-24 17:06:25] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"}
{}
[2021-08-24 17:06:25] [INFO] : ======================================================================================
[2021-08-24 17:06:25] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:06:25] [INFO] : ======================================================================================
[2021-08-24 17:06:25] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:06:25] [INFO] : ======================================================================================
[2021-08-24 17:06:25] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:06:26] [INFO] : ======================================================================================
[2021-08-24 17:06:26] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:06:26] [INFO] : ======================================================================================
[2021-08-24 17:06:26] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:06:26] [INFO] : ======================================================================================
[2021-08-24 17:06:26] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66", "carTypeWeight": 10, "plate": "\u5dddA60487", "inGreeterId": 16, "inGreeterName": "\u56fd\u950b", "productId": 2182, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 109, "grossWeightDate": "2021-08-24 17:06:26", "newWeight": 99, "tareWeight": 10, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA60487", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "cateId": 2182, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": "", "origin": "", "originCode": "", "tradeType": "", "tradeTypeName": "", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": "", "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:06:27] [INFO] : ======================================================================================
[2021-08-24 17:06:27] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108240200225'}
{}
[2021-08-24 17:06:27] [INFO] : ======================================================================================
[2021-08-24 17:06:27] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/5717.action
None
{}
[2021-08-24 17:06:28] [INFO] : ======================================================================================
[2021-08-24 17:06:28] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=210823173732
None
{}
[2021-08-24 17:06:29] [INFO] : ======================================================================================
[2021-08-24 17:06:29] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州
None
{}
[2021-08-24 17:06:29] [INFO] : ======================================================================================
[2021-08-24 17:06:29] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action
{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 5717, 'goodsId': '5731', 'number': '202108240200225', 'modified': '2021-08-24 17:06:29', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A60487', 'autocomplete-cartype': '456(地排车)', 'carTypeName': '地排车', 'carTypeCode': '456', 'carTypeId': '158', 'carTypeWeight': '10', 'storeTareWeight': '', 'proveType': '666', 'grossWeight': '109', 'tareWeight': '10', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '哈达测试部', 'calcDepId': '129', 'regionName': '', 'regionId': '0', 'productName': '雪莲果', 'productId': '2182', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-24 17:06:28', 'remark': 'false', 'goodsTagIds': '', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-24 17:06:27', 'tareWeightDate': '2021-08-24 17:06:27', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '国锋', 'inGreeterId': '16', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''}
{}
[2021-08-24 17:06:29] [INFO] : ======================================================================================
[2021-08-24 17:06:29] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doPay.action
protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=1&id=5717&goodsId=5731&number=202108240200225&modified=2021-08-24%2017%3A06%3A28&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=20300&customerId=141951&fundAccount=107621&ic=210823173732&customerName=%E5%93%88%E6%B5%8B&customerPhone=18089008005&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA60487&autocomplete-cartype=456%28%E5%9C%B0%E6%8E%92%E8%BD%A6%29&carTypeName=%E5%9C%B0%E6%8E%92%E8%BD%A6&carTypeCode=456&carTypeId=158&carTypeWeight=10&storeTareWeight=&proveType=666&grossWeight=109&tareWeight=10&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E5%93%88%E8%BE%BE%E6%B5%8B%E8%AF%95%E9%83%A8&calcDepId=129&dep=129®ionName=234®ionId=271&productName=%E9%9B%AA%E8%8E%B2%E6%9E%9C&productId=2182&productArea=%E9%87%8D%E5%BA%86%2C%E9%87%8D%E5%BA%86%E5%B8%82%2C%E4%B8%87%E5%B7%9E%E5%8C%BA&parentId=500100&levelType=&originId=500101&tradeTypeId=&chargeTotalAmount=20300&chargeTotalAmountYuan=203&freezeMoneySymbol=203&comparisonFreezeAmount=203&created=2021-08-24%2017%3A06%3A28&remark=&marketFlag=hd&totalMoney=20300&receivable=20300&collectionPrice=0&discountAmount=0&handReceivableAmount=0&itemReceivableAmount=20300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=20300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=1616&driverTel=&grossWeightDate=2021-08-24%2017%3A06%3A27&tareWeightDate=2021-08-24%2017%3A06%3A27&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=%E5%9B%BD%E9%94%8B&inGreeterId=16&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=107621&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=488&488=200.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A488%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A20000%2C%22require%22%3A1%7D&billItemCheckIds=489&489=0.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A489%2C%22name%22%3A%22%E8%BF%94%E7%82%B9%22%2C%22receivable%22%3A0%2C%22require%22%3A1%7D&billItemCheckIds=494&494=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A494%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D
{}
[2021-08-24 17:06:33] [INFO] : ======================================================================================
[2021-08-24 17:06:33] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108240200225'}
{}
[2021-08-24 17:06:33] [INFO] : ======================================================================================
[2021-08-24 17:06:33] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'startPayTime': '2021-08-24 17:06:32', 'endPayTime': '2021-08-24 17:06:32'}
{}
[2021-08-24 17:06:33] [INFO] : ======================================================================================
[2021-08-24 17:06:33] [INFO] : http://test.jmsf.diligrp.com:8385/category/search.action?name=蔬菜
None
{'params': {'name': '蔬菜', 'keyword': '蔬菜'}}
[2021-08-24 17:06:33] [INFO] : ======================================================================================
[2021-08-24 17:06:33] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=ZC
None
{}
[2021-08-24 17:06:34] [INFO] : ======================================================================================
[2021-08-24 17:06:34] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:06:34] [INFO] : ======================================================================================
[2021-08-24 17:06:34] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u852c\u83dc"}
{}
[2021-08-24 17:06:34] [INFO] : ======================================================================================
[2021-08-24 17:06:34] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:06:34] [INFO] : ======================================================================================
[2021-08-24 17:06:34] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:06:34] [INFO] : ======================================================================================
[2021-08-24 17:06:34] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:06:35] [INFO] : ======================================================================================
[2021-08-24 17:06:35] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:06:35] [INFO] : ======================================================================================
[2021-08-24 17:06:35] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:06:35] [INFO] : ======================================================================================
[2021-08-24 17:06:35] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66", "carTypeWeight": 10, "plate": "\u5dddA12345", "inGreeterId": 16, "inGreeterName": "\u56fd\u950b", "productId": 1, "productName": "\u852c\u83dc", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 109, "grossWeightDate": "2021-08-24 17:06:35", "newWeight": 99, "tareWeight": 10, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA12345", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "cateId": 1, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": "", "origin": "", "originCode": "", "tradeType": "", "tradeTypeName": "", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": "", "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:06:36] [INFO] : ======================================================================================
[2021-08-24 17:06:36] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'productName': '蔬菜', 'productId': 1}
{}
[2021-08-24 17:06:36] [INFO] : ======================================================================================
[2021-08-24 17:06:36] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=ZC
None
{}
[2021-08-24 17:06:37] [INFO] : ======================================================================================
[2021-08-24 17:06:37] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:06:37] [INFO] : ======================================================================================
[2021-08-24 17:06:37] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"}
{}
[2021-08-24 17:06:37] [INFO] : ======================================================================================
[2021-08-24 17:06:37] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:06:37] [INFO] : ======================================================================================
[2021-08-24 17:06:37] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:06:37] [INFO] : ======================================================================================
[2021-08-24 17:06:37] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:06:38] [INFO] : ======================================================================================
[2021-08-24 17:06:38] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:06:38] [INFO] : ======================================================================================
[2021-08-24 17:06:38] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:06:38] [INFO] : ======================================================================================
[2021-08-24 17:06:38] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66", "carTypeWeight": 10, "plate": "\u5dddA90446", "inGreeterId": 16, "inGreeterName": "\u56fd\u950b", "productId": 2182, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 109, "grossWeightDate": "2021-08-24 17:06:38", "newWeight": 99, "tareWeight": 10, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA90446", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "cateId": 2182, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": "", "origin": "", "originCode": "", "tradeType": "", "tradeTypeName": "", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": "", "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:06:39] [INFO] : ======================================================================================
[2021-08-24 17:06:39] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108240200227'}
{}
[2021-08-24 17:06:39] [INFO] : ======================================================================================
[2021-08-24 17:06:39] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/5719.action
None
{}
[2021-08-24 17:06:41] [INFO] : ======================================================================================
[2021-08-24 17:06:41] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=888810032426
None
{}
[2021-08-24 17:06:41] [INFO] : ======================================================================================
[2021-08-24 17:06:41] [INFO] : http://test.jmsf.diligrp.com:8385/provider/getLookupList.action
{'provider': 'authDepartmentProvider'}
{}
[2021-08-24 17:06:41] [INFO] : ======================================================================================
[2021-08-24 17:06:41] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=ZC
None
{}
[2021-08-24 17:06:41] [INFO] : ======================================================================================
[2021-08-24 17:06:41] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:06:41] [INFO] : ======================================================================================
[2021-08-24 17:06:41] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u6c34\u751f\u852c\u83dc"}
{}
[2021-08-24 17:06:41] [INFO] : ======================================================================================
[2021-08-24 17:06:41] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:06:42] [INFO] : ======================================================================================
[2021-08-24 17:06:42] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:06:42] [INFO] : ======================================================================================
[2021-08-24 17:06:42] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:06:42] [INFO] : ======================================================================================
[2021-08-24 17:06:42] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:06:43] [INFO] : ======================================================================================
[2021-08-24 17:06:43] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:06:43] [INFO] : ======================================================================================
[2021-08-24 17:06:43] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66", "carTypeWeight": 10, "plate": "\u5dddA12345", "inGreeterId": 16, "inGreeterName": "\u56fd\u950b", "productId": 467, "productName": "\u6c34\u751f\u852c\u83dc", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 109, "grossWeightDate": "2021-08-24 17:06:43", "newWeight": 99, "tareWeight": 10, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA12345", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "cateId": 467, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": "", "origin": "", "originCode": "", "tradeType": "", "tradeTypeName": "", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": "", "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:06:43] [INFO] : ======================================================================================
[2021-08-24 17:06:43] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108240200228'}
{}
[2021-08-24 17:06:43] [INFO] : ======================================================================================
[2021-08-24 17:06:43] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/update/5720.action
None
{}
[2021-08-24 17:06:45] [INFO] : ======================================================================================
[2021-08-24 17:06:45] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州
None
{}
[2021-08-24 17:06:45] [INFO] : ======================================================================================
[2021-08-24 17:06:45] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action
{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'update', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 5720, 'goodsId': '5734', 'number': '202108240200228', 'modified': '2021-08-24 17:06:45', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A12345', 'autocomplete-cartype': '456(地排车)', 'carTypeName': '地排车', 'carTypeCode': '456', 'carTypeId': '158', 'carTypeWeight': '10', 'storeTareWeight': '', 'proveType': '666', 'grossWeight': '109', 'tareWeight': '10', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '哈达测试部', 'regionName': '', 'regionId': '0', 'productName': '水生蔬菜', 'productId': '467', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-24 17:06:44', 'remark': 'false', 'goodsTagIds': '', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '蔬菜', 'categoryId': '1', 'driverTel': '', 'grossWeightDate': '2021-08-24 17:06:44', 'tareWeightDate': '2021-08-24 17:06:44', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '国锋', 'inGreeterId': '16', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': ''}
{}
[2021-08-24 17:06:45] [INFO] : ======================================================================================
[2021-08-24 17:06:45] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/doUpdate.action
protocolId=&pwd=111111&clientRedirectTag=&viewType=update&optType=0&optUrl=&correctInfo=1&weightType=1&id=5720&goodsId=5734&number=202108240200228&modified=2021-08-24%2017%3A06%3A44&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=20300&customerId=0&fundAccount=&accountId=&ic=&customerName=&customerPhone=&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA12345&autocomplete-cartype=456%28%E5%9C%B0%E6%8E%92%E8%BD%A6%29&carTypeName=%E5%9C%B0%E6%8E%92%E8%BD%A6&carTypeCode=456&carTypeId=158&carTypeWeight=10&storeTareWeight=&proveType=666&grossWeight=109&tareWeight=10&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E5%93%88%E8%BE%BE%E6%B5%8B%E8%AF%95%E9%83%A8&dep=129®ionId=271&productName=%E6%B0%B4%E7%94%9F%E8%94%AC%E8%8F%9C&productId=467&productArea=%E9%87%8D%E5%BA%86%2C%E9%87%8D%E5%BA%86%E5%B8%82%2C%E4%B8%87%E5%B7%9E%E5%8C%BA&originId=500101&tradeTypeId=&chargeTotalAmount=20300&chargeTotalAmountYuan=203&freezeMoneySymbol=203&comparisonFreezeAmount=203&created=2021-08-24%2017%3A06%3A44&remark=%E5%A4%87%E6%B3%A8&shareRatio=0&handlingTeam=&steveTeamId=&handlingRatio=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&marketFlag=hd&totalMoney=20300&receivable=20300&collectionPrice=0&discountAmount=0&handReceivableAmount=0&itemReceivableAmount=20300&receivableAmount=20300&categoryName=%E8%94%AC%E8%8F%9C&categoryId=1&driverTel=&grossWeightDate=2021-08-24%2017%3A06%3A44&tareWeightDate=2021-08-24%2017%3A06%3A44&grossPathName=&grossPathId=&tarePathId=&goodsRemark=%E5%A4%87%E6%B3%A8&inGreeterName=%E9%80%9A%E7%94%A8%E6%B5%8B%E8%AF%95&inGreeterId=274&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepId=0®ionName=234&parentId=500100&calcDepId=129&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=488&488=200.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A488%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A20000%2C%22require%22%3A1%7D&billItemCheckIds=489&489=0.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A489%2C%22name%22%3A%22%E8%BF%94%E7%82%B9%22%2C%22receivable%22%3A0%2C%22require%22%3A1%7D&billItemCheckIds=494&494=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A494%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D
{}
[2021-08-24 17:06:46] [INFO] : ======================================================================================
[2021-08-24 17:06:46] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/view/5720.action
None
{}
[2021-08-24 17:06:47] [INFO] : ======================================================================================
[2021-08-24 17:06:47] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'dep': [129], 'regionId': '271'}
{}
[2021-08-24 17:06:49] [INFO] : ======================================================================================
[2021-08-24 17:06:49] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=ZC
None
{}
[2021-08-24 17:06:49] [INFO] : ======================================================================================
[2021-08-24 17:06:49] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:06:49] [INFO] : ======================================================================================
[2021-08-24 17:06:49] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u852c\u83dc"}
{}
[2021-08-24 17:06:49] [INFO] : ======================================================================================
[2021-08-24 17:06:49] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:06:49] [INFO] : ======================================================================================
[2021-08-24 17:06:49] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:06:50] [INFO] : ======================================================================================
[2021-08-24 17:06:50] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:06:50] [INFO] : ======================================================================================
[2021-08-24 17:06:50] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:06:50] [INFO] : ======================================================================================
[2021-08-24 17:06:50] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:06:51] [INFO] : ======================================================================================
[2021-08-24 17:06:51] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "875", "carTypeId": 159, "carTypeName": "\u5c0f\u8f7f\u8f66", "carTypeWeight": 30, "plate": "\u5dddA12345", "inGreeterId": 16, "inGreeterName": "\u56fd\u950b", "productId": 1, "productName": "\u852c\u83dc", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 129, "grossWeightDate": "2021-08-24 17:06:51", "newWeight": 99, "tareWeight": 30, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA12345", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "cateId": 1, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": "", "origin": "", "originCode": "", "tradeType": "", "tradeTypeName": "", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": "", "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:06:51] [INFO] : ======================================================================================
[2021-08-24 17:06:51] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'status': '4'}
{}
[2021-08-24 17:06:52] [INFO] : ======================================================================================
[2021-08-24 17:06:52] [INFO] : http://test.jmsf.diligrp.com:8385/provider/getLookupList.action
{'provider': 'categoryProvider'}
{}
[2021-08-24 17:06:52] [INFO] : ======================================================================================
[2021-08-24 17:06:52] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=2&moduleCode=ZC
None
{}
[2021-08-24 17:06:52] [INFO] : ======================================================================================
[2021-08-24 17:06:52] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:06:52] [INFO] : ======================================================================================
[2021-08-24 17:06:52] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"}
{}
[2021-08-24 17:06:52] [INFO] : ======================================================================================
[2021-08-24 17:06:52] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query
{"marketId": 2, "pageNum": 100, "pageSize": 100}
{}
[2021-08-24 17:06:53] [INFO] : ======================================================================================
[2021-08-24 17:06:53] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": ""}
{}
[2021-08-24 17:06:53] [INFO] : ======================================================================================
[2021-08-24 17:06:53] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:06:53] [INFO] : ======================================================================================
[2021-08-24 17:06:53] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:06:53] [INFO] : ======================================================================================
[2021-08-24 17:06:53] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:06:54] [INFO] : ======================================================================================
[2021-08-24 17:06:54] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66", "carTypeWeight": 10, "plate": "\u5dddA12345", "inGreeterId": 16, "inGreeterName": "\u56fd\u950b", "productId": 2182, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 109, "grossWeightDate": "2021-08-24 17:06:54", "newWeight": 99, "tareWeight": 10, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA12345", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "cateId": 2182, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": "", "origin": "", "originCode": "", "tradeType": "", "tradeTypeName": "", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": "", "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:06:54] [INFO] : ======================================================================================
[2021-08-24 17:06:54] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action
{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'categoryId': ['1616']}
{}
[2021-08-24 17:06:56] [INFO] : ======================================================================================
[2021-08-24 17:06:56] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:06:57] [INFO] : ======================================================================================
[2021-08-24 17:06:57] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u852c\u83dc"}
{}
[2021-08-24 17:06:57] [INFO] : ======================================================================================
[2021-08-24 17:06:57] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "sy", "departmentId": 58, "keyword": ""}
{}
[2021-08-24 17:06:57] [INFO] : ======================================================================================
[2021-08-24 17:06:57] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/tradeType/query
{"pageNum": 100, "pageSize": 100, "marketId": 9}
{}
[2021-08-24 17:06:57] [INFO] : ======================================================================================
[2021-08-24 17:06:57] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'goods_tag'}}
[2021-08-24 17:06:58] [INFO] : ======================================================================================
[2021-08-24 17:06:58] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/address
{"province": "C", "city": null, "area": null}
{}
[2021-08-24 17:06:58] [INFO] : ======================================================================================
[2021-08-24 17:06:58] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:06:58] [INFO] : ======================================================================================
[2021-08-24 17:06:58] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:06:59] [INFO] : ======================================================================================
[2021-08-24 17:06:59] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:06:59] [INFO] : ======================================================================================
[2021-08-24 17:06:59] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/sparePartsWeighSave
{"driverTel": "", "inGreeterId": 223, "inGreeterName": "\u6d4b\u8bd5\u6c88\u9633", "itemWeight": 11, "productId": 1, "productName": "\u852c\u83dc", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "qty": 33, "weighRemark": null, "weight": 220, "weighmanRecord": {"grossWeight": null, "grossWeightDate": null, "newWeight": null, "tareWeight": null, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "plate": "\u5dddA90224", "carTypeId": 158, "carTypeCode": "456", "carTypeName": "\u5730\u6392\u8f66", "pathAddress": "A4-BB-6D-0A-F4-13", "entryPlateInputType": 1, "feeDepId": 0, "feeDepName": null, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "type": 2, "tradeTypeId": 70, "tradeType": "9001", "tradeTypeName": "\u6c88\u96331\u53f7", "goodsTagId": 663, "originId": 500101, "origin": "\u4e07\u5dde\u533a", "originCode": "023", "trailerNumber": "\u5dddA90224", "cateId": 1, "productState": "1"}
{}
[2021-08-24 17:06:59] [INFO] : ======================================================================================
[2021-08-24 17:06:59] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/address
{"province": "\u56db\u5ddd\u7701", "city": null, "area": null}
{}
[2021-08-24 17:07:00] [INFO] : ======================================================================================
[2021-08-24 17:07:00] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 2, "state": 1, "keyword": ""}
{}
[2021-08-24 17:07:01] [INFO] : ======================================================================================
[2021-08-24 17:07:01] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:07:01] [INFO] : ======================================================================================
[2021-08-24 17:07:01] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": 6, "keyword": ""}
{}
[2021-08-24 17:07:01] [INFO] : ======================================================================================
[2021-08-24 17:07:01] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:07:02] [INFO] : ======================================================================================
[2021-08-24 17:07:02] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:07:02] [INFO] : ======================================================================================
[2021-08-24 17:07:02] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/address
{"province": "\u56db\u5ddd\u7701", "city": "\u6210\u90fd\u5e02", "area": "\u9526\u6c5f\u533a"}
{}
[2021-08-24 17:07:02] [INFO] : ======================================================================================
[2021-08-24 17:07:02] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 2, "state": 1, "keyword": "\u706b\u9f99\u679c"}
{}
[2021-08-24 17:07:02] [INFO] : ======================================================================================
[2021-08-24 17:07:02] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': '哈达测试部'}}
[2021-08-24 17:07:03] [INFO] : ======================================================================================
[2021-08-24 17:07:03] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "hd", "departmentId": null, "keyword": "\u54c8\u8fbe\u6d4b\u8bd5"}
{}
[2021-08-24 17:07:03] [INFO] : ======================================================================================
[2021-08-24 17:07:03] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:07:03] [INFO] : ======================================================================================
[2021-08-24 17:07:03] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/tradeType/query
{"pageNum": 100, "pageSize": 100, "marketId": 9}
{}
[2021-08-24 17:07:03] [INFO] : ======================================================================================
[2021-08-24 17:07:03] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType
{"businessCode": "jmsf"}
{}
[2021-08-24 17:07:03] [INFO] : ======================================================================================
[2021-08-24 17:07:03] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree
{"marketId": 9, "state": 1, "keyword": "\u852c\u83dc"}
{}
[2021-08-24 17:07:04] [INFO] : ======================================================================================
[2021-08-24 17:07:04] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api
{"firmCode": "sy", "departmentId": 58, "keyword": ""}
{}
[2021-08-24 17:07:04] [INFO] : ======================================================================================
[2021-08-24 17:07:04] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/tradeType/query
{"pageNum": 100, "pageSize": 100, "marketId": 9}
{}
[2021-08-24 17:07:04] [INFO] : ======================================================================================
[2021-08-24 17:07:04] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/address
{"province": "C", "city": null, "area": null}
{}
[2021-08-24 17:07:04] [INFO] : ======================================================================================
[2021-08-24 17:07:04] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep
None
{'params': {'keyword': ''}}
[2021-08-24 17:07:05] [INFO] : ======================================================================================
[2021-08-24 17:07:05] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid
None
{'params': {'pid': 'prove_type'}}
[2021-08-24 17:07:05] [INFO] : ======================================================================================
[2021-08-24 17:07:05] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action
None
{}
[2021-08-24 17:07:05] [INFO] : ======================================================================================
[2021-08-24 17:07:05] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave
{"carTypeCode": "456", "carTypeId": 158, "carTypeName": "\u5730\u6392\u8f66", "carTypeWeight": 10, "plate": "\u5dddA12323", "inGreeterId": 223, "inGreeterName": "\u6d4b\u8bd5\u6c88\u9633", "productId": 1, "productName": "\u852c\u83dc", "proveTypeCode": 666, "proveTypeName": "\u4ea7\u5730\u8bc1\u660e", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 59, "grossWeightDate": "2021-08-24 17:07:05", "newWeight": 49, "tareWeight": 10, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA12323", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 129, "depName": "\u54c8\u8fbe\u6d4b\u8bd5\u90e8", "cateId": 1, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": 500101, "origin": "\u4e07\u5dde\u533a", "originCode": "023", "tradeType": "9001", "tradeTypeName": "\u6c88\u96331\u53f7", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": 70, "id": 0, "protocolId": null, "goodsTagId": ""}
{}
[2021-08-24 17:07:06] [INFO] : 发送邮件
[2021-08-24 17:07:11] [INFO] : 邮件发送完毕