Commit b3993011347a96bd59979729038daea9cb190c0a
1 parent
ad4adcab
增加市场普适性
Showing
6 changed files
with
101 additions
and
345 deletions
commons/api/entranceFeeBillList/operationDoFreeze.py
... | ... | @@ -50,6 +50,11 @@ def do_doFreeze(host="",autocompletecartype=None,fee_str="",**kwargs): |
50 | 50 | "shipperPhone": "", "feeDepName": "", "calcFeeDepId": "", "feeDepId": "","accountId":""} |
51 | 51 | data["autocomplete-cartype"] = autocompletecartype |
52 | 52 | data = dict(data, **kwargs) |
53 | + | |
54 | + # 当模板没有配置货物标签时,参数不能传递货物标签所以需要删除 | |
55 | + if kwargs["goodsTagIds"] =="": | |
56 | + del data["goodsTagIds"] | |
57 | + | |
53 | 58 | data_uc = jsonToUrlcode.jsonToUrlcode(data_json=data)+fee_str |
54 | 59 | print("================开始请求================") |
55 | 60 | res = my.useHeadersRequests("post", url=url, data=data_uc, headers=headers) |
... | ... | @@ -69,6 +74,7 @@ def do_freezeOrder(host="http://test.jmsf.diligrp.com:8385",attrName="收费单 |
69 | 74 | |
70 | 75 | # 正则取值 |
71 | 76 | regionId = re.findall('<option value="(.*?)" bind-name="', resOrderDetails.text)[0] |
77 | + regionName=re.findall('" bind-name="(.*?)" bind-index', resOrderDetails.text)[0] | |
72 | 78 | |
73 | 79 | # bs取值 |
74 | 80 | orderDetailsList = BeautifulSoup(resOrderDetails.text, "html.parser").findAll("input") |
... | ... | @@ -82,11 +88,18 @@ def do_freezeOrder(host="http://test.jmsf.diligrp.com:8385",attrName="收费单 |
82 | 88 | correctInfo = orderDetailsDict["correctInfo"] |
83 | 89 | weightType = orderDetailsDict["weightType"] |
84 | 90 | correctDiscount = orderDetailsDict["correctDiscount"] |
85 | - goodsTagIds = orderDetailsDict["goodsTagIds"] | |
91 | + | |
92 | + # goodsTagIds = orderDetailsDict["goodsTagIds"] | |
93 | + # 货物标签特别判断 | |
94 | + if "goodsTagIds" in orderDetailsDict.keys(): | |
95 | + goodsTagIds = orderDetailsDict["goodsTagIds"] | |
96 | + else: | |
97 | + goodsTagIds = "" | |
98 | + | |
86 | 99 | sumPrice = orderDetailsDict["sumPrice"] |
87 | 100 | tradeTypeId = orderDetailsDict["tradeTypeId"] |
88 | 101 | shareRatio = orderDetailsDict["shareRatio"] |
89 | - regionName=orderDetailsDict["regionName"] | |
102 | + # regionName=orderDetailsDict["regionName"] | |
90 | 103 | plate = orderDetailsDict["plate"] |
91 | 104 | carTypeName = orderDetailsDict["carTypeName"] |
92 | 105 | carTypeCode = orderDetailsDict["carTypeCode"] |
... | ... | @@ -123,8 +136,8 @@ def do_freezeOrder(host="http://test.jmsf.diligrp.com:8385",attrName="收费单 |
123 | 136 | res = eFBL.get_city(host=host, name="万州") |
124 | 137 | print(res.text) |
125 | 138 | originId = res.json()["suggestions"][0]["id"] |
126 | - # parentId = res.json()["suggestions"][0]["parentId"] | |
127 | - # value = res.json()["suggestions"][0]["value"] | |
139 | + parentId = res.json()["suggestions"][0]["parentId"] | |
140 | + productArea = res.json()["suggestions"][0]["value"] | |
128 | 141 | |
129 | 142 | # # 获取缴费金额 |
130 | 143 | autocompletecartype = f"{carTypeCode}({carTypeName})" |
... | ... | @@ -141,7 +154,7 @@ def do_freezeOrder(host="http://test.jmsf.diligrp.com:8385",attrName="收费单 |
141 | 154 | grossWeight=grossWeight, |
142 | 155 | tareWeight=tareWeight, unitPrice=unitPrice, depName=depName, productName=productName, |
143 | 156 | productId=productId, originId=originId, tradeTypeId=tradeTypeId, created=created, |
144 | - goodsTagIds=goodsTagIds, | |
157 | + goodsTagIds=goodsTagIds,regionName=regionName, | |
145 | 158 | shareRatio=shareRatio, categoryName=categoryName, categoryId=categoryId, |
146 | 159 | grossWeightDate=grossWeightDate, |
147 | 160 | tareWeightDate=tareWeightDate, sumPrice=sumPrice, calcDepId=calcDepId, weight=weight, |
... | ... | @@ -205,7 +218,7 @@ def do_freezeOrder(host="http://test.jmsf.diligrp.com:8385",attrName="收费单 |
205 | 218 | itemReceivableAmount=itemReceivableAmount, receivableAmount=receivableAmount, |
206 | 219 | categoryName=categoryName, |
207 | 220 | categoryId=categoryId, grossWeightDate=grossWeightDate, tareWeightDate=tareWeightDate, |
208 | - sumPrice=sumPrice, | |
221 | + sumPrice=sumPrice,parentId=parentId, | |
209 | 222 | chargeTotalAmountYuan=chargeTotalAmountYuan) |
210 | 223 | |
211 | 224 | print(aa.text) | ... | ... |
commons/api/zcApi.py
... | ... | @@ -235,7 +235,14 @@ def create_jmsf(host=None,carTypeName=None,keyword="蔬菜",userName=None,transa |
235 | 235 | if "进门接车员" in templateAttr_list: |
236 | 236 | print('my.userInfo["data"]["user"]', my.userInfo["data"]["user"]) |
237 | 237 | firmCode = my.userInfo["data"]["user"]["firmCode"] |
238 | - departmentId = my.userInfo["data"]["user"]["departmentId"] | |
238 | + firmId = my.userInfo["data"]["user"]["firmId"] | |
239 | + res_config = gLL.get_config(host=host,marketId=firmId) | |
240 | + departmentId = [i["value"] for i in res_config.json()["rows"] if i["name"]=="DepartmentId"][0] | |
241 | + print("==========1============") | |
242 | + print(my.userInfo["data"]["user"]) | |
243 | + print(firmCode) | |
244 | + print(departmentId) | |
245 | + print("==========1============") | |
239 | 246 | listByExample = get_listByExample(host=host,firmCode=firmCode,departmentId=departmentId) |
240 | 247 | print("listByExample",listByExample.json()) |
241 | 248 | if userName == None: | ... | ... |
commons/basic/getLookupList.py
... | ... | @@ -59,9 +59,18 @@ def get_templateAttr(host="http://test.gateway.diligrp.com:8285",moduleCode="ZC" |
59 | 59 | attr_list = [i["unitName"] for i in get_templateUnit(host=host,moduleCode=moduleCode).json()["data"]] |
60 | 60 | return attr_list |
61 | 61 | |
62 | +def get_config(host="",marketId="9"): | |
63 | + """通过部门编号获取区域""" | |
64 | + url = host + "/assets-service/api/config/query" | |
65 | + data = {"marketId":9,"pageNum":100,"pageSize":100} | |
66 | + headers = dct.jsonCode() | |
67 | + res = my.useHeadersRequests(method="POST", url=url, data=json.dumps(data), headers=headers) | |
68 | + return res | |
69 | + | |
62 | 70 | # host="http://test.jmsf.diligrp.com:8385" |
63 | -# host="http://test.gateway.diligrp.com:8285" | |
71 | +host="http://test.gateway.diligrp.com:8285" | |
64 | 72 | # print(get_LookupList(host=host,providerName="货物品类").json()) |
65 | 73 | # print(get_reach(host).json()) |
66 | 74 | # print(get_category(host=host,productName="蔬菜").json()) |
67 | -# print(get_templateAttr(host=host)) | |
68 | 75 | \ No newline at end of file |
76 | +# print(get_templateAttr(host=host)) | |
77 | +print([i["value"] for i in get_config(host=host).json()["rows"] if i["name"]=="DepartmentId"][0]) | |
69 | 78 | \ No newline at end of file | ... | ... |
report/test.log
1 | -[2021-08-24 13:46:13] [INFO] : ====================================================================================== | |
2 | -[2021-08-24 13:46:13] [INFO] : http://test.uap.diligrp.com/api/authenticationApi/loginWeb | |
3 | -{'data': None, 'json': {'userName': 'sy_chen', 'password': 'Y4zpUjh6tkPxhF2vTsaCdmBXktl2d013uA6s9CM3Q7Im97ID8tmEXcaFcbgVGBd+9/qBoz5zHCTRc1lxg441QSyNcm8xohHLsYNWi4/OQPifw98rN7iubWQfgOIIJg/s1qBKpRpd/F7wxiHdEYN8Wq03WMTCzhrgkvSt9xjZf24='}, 'headers': {'Content-Type': 'text/plain;charset=utf-8', 'Host': 'test.uap.diligrp.com', 'Content-Length': '209', 'Expect': '100-continue'}} | |
1 | +[2021-08-24 14:23:23] [INFO] : ====================================================================================== | |
2 | +[2021-08-24 14:23:23] [INFO] : http://test.uap.diligrp.com/api/authenticationApi/loginWeb | |
3 | +{'data': None, 'json': {'userName': 'sy_chen', 'password': 'H2+hKsNXm+sWUzOs4itYTSdjIX4VbHpCDHodXmTh0kzN14KbZST9IXX+EvB/fXctpuklQu47X+xRSGnHN+BU9SDjwAX8VEZZOOEHMxEn/lwNRZgbaMgwpBquXLagAMW8XKL0EpvO/RoypWY62uawXkXRbLXFz6pDEy5JEgEhiA4='}, 'headers': {'Content-Type': 'text/plain;charset=utf-8', 'Host': 'test.uap.diligrp.com', 'Content-Length': '209', 'Expect': '100-continue'}} | |
4 | 4 | |
5 | -[2021-08-24 13:46:13] [INFO] : ====================================================================================== | |
6 | -[2021-08-24 13:46:13] [INFO] : http://test.uap.diligrp.com/api/authenticationApi/loginWeb | |
7 | -{'data': None, 'json': {'userName': '哈尔滨田太子', 'password': 'Wl5NNc6ez4rGjH4IAI8+h+CBqGEfNTE8eSaoLrux5ue4o49OJb2Y8BF63wI33IN/b628Biu5Cy8FOdC3yb7yxg0AZ7+H37aisKsZbU84vdoKkvzZv/VGcnx/P7s5DQ4hGBViQvwOiMwjtRrjrtstcjtr4V7wOgmPYgYNb1dcYcg='}, 'headers': {'Content-Type': 'text/plain;charset=utf-8', 'Host': 'test.uap.diligrp.com', 'Content-Length': '209', 'Expect': '100-continue'}} | |
5 | +[2021-08-24 14:23:23] [INFO] : ====================================================================================== | |
6 | +[2021-08-24 14:23:23] [INFO] : http://test.uap.diligrp.com/api/authenticationApi/loginWeb | |
7 | +{'data': None, 'json': {'userName': '哈尔滨田太子', 'password': 'Wb/uT3WvDmxdY3Ti2pSPFt0CUDp+3H1kDJ4rOmQBK04p/2lDzJQZ/zDf+a5/NQi8wA/nmFOp6oI18exnz7z2GZfdIOUCAWMP2y+tsuSPTS3sRiLuDFxGJ3KfEy5uhbw/koEgIUlGTwvwRM3UQZFuHufIGk4vkuyMnIq0+dww33s='}, 'headers': {'Content-Type': 'text/plain;charset=utf-8', 'Host': 'test.uap.diligrp.com', 'Content-Length': '209', 'Expect': '100-continue'}} | |
8 | 8 | |
9 | -[2021-08-24 13:46:13] [INFO] : ====================================================================================== | |
10 | -[2021-08-24 13:46:13] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=888810033081 | |
11 | -None | |
9 | +[2021-08-24 14:23:23] [INFO] : ====================================================================================== | |
10 | +[2021-08-24 14:23:23] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query | |
11 | +{"marketId": 9, "pageNum": 100, "pageSize": 100} | |
12 | 12 | {} |
13 | 13 | |
14 | -[2021-08-24 13:46:14] [INFO] : ====================================================================================== | |
15 | -[2021-08-24 13:46:14] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=9&moduleCode=ZC | |
14 | +[2021-08-24 14:23:24] [INFO] : ====================================================================================== | |
15 | +[2021-08-24 14:23:24] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=9&moduleCode=ZC | |
16 | 16 | None |
17 | 17 | {} |
18 | 18 | |
19 | -[2021-08-24 13:46:14] [INFO] : ====================================================================================== | |
20 | -[2021-08-24 13:46:14] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType | |
19 | +[2021-08-24 14:23:24] [INFO] : ====================================================================================== | |
20 | +[2021-08-24 14:23:24] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType | |
21 | 21 | {"businessCode": "jmsf"} |
22 | 22 | {} |
23 | 23 | |
24 | -[2021-08-24 13:46:14] [INFO] : ====================================================================================== | |
25 | -[2021-08-24 13:46:14] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree | |
24 | +[2021-08-24 14:23:24] [INFO] : ====================================================================================== | |
25 | +[2021-08-24 14:23:24] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree | |
26 | 26 | {"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"} |
27 | 27 | {} |
28 | 28 | |
29 | -[2021-08-24 13:46:14] [INFO] : ====================================================================================== | |
30 | -[2021-08-24 13:46:14] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api | |
31 | -{"firmCode": "sy", "departmentId": 56, "keyword": ""} | |
32 | -{} | |
33 | - | |
34 | -[2021-08-24 13:46:15] [INFO] : ====================================================================================== | |
35 | -[2021-08-24 13:46:15] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/tradeType/query | |
36 | -{"pageNum": 100, "pageSize": 100, "marketId": 9} | |
37 | -{} | |
38 | - | |
39 | -[2021-08-24 13:46:15] [INFO] : ====================================================================================== | |
40 | -[2021-08-24 13:46:15] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | |
41 | -None | |
42 | -{'params': {'pid': 'goods_tag'}} | |
43 | - | |
44 | -[2021-08-24 13:46:15] [INFO] : ====================================================================================== | |
45 | -[2021-08-24 13:46:15] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/address | |
46 | -{"province": "C", "city": null, "area": null} | |
47 | -{} | |
48 | - | |
49 | -[2021-08-24 13:46:15] [INFO] : ====================================================================================== | |
50 | -[2021-08-24 13:46:15] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep | |
51 | -None | |
52 | -{'params': {'keyword': ''}} | |
53 | - | |
54 | -[2021-08-24 13:46:16] [INFO] : ====================================================================================== | |
55 | -[2021-08-24 13:46:16] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | |
56 | -None | |
57 | -{'params': {'pid': 'prove_type'}} | |
58 | - | |
59 | -[2021-08-24 13:46:16] [INFO] : ====================================================================================== | |
60 | -[2021-08-24 13:46:16] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action | |
61 | -None | |
29 | +[2021-08-24 14:23:24] [INFO] : ====================================================================================== | |
30 | +[2021-08-24 14:23:24] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/config/query | |
31 | +{"marketId": 9, "pageNum": 100, "pageSize": 100} | |
62 | 32 | {} |
63 | 33 | |
64 | -[2021-08-24 13:46:16] [INFO] : ====================================================================================== | |
65 | -[2021-08-24 13:46:16] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave | |
66 | -{"carTypeCode": "003", "carTypeId": 53, "carTypeName": "\u677f\u8f66", "carTypeWeight": 333, "plate": "\u5dddB25696", "inGreeterId": 229, "inGreeterName": "\u8fd0\u7ef4\u4f53\u9a8c", "productId": 2182, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 665, "proveTypeName": "\u98df\u54c1\u5b89\u5168", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 432, "grossWeightDate": "2021-08-24 13:46:16", "newWeight": 99, "tareWeight": 333, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddB25696", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 58, "depName": "\u6c34\u679c\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": 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": 663} | |
34 | +[2021-08-24 14:23:24] [INFO] : ====================================================================================== | |
35 | +[2021-08-24 14:23:24] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api | |
36 | +{"firmCode": "sy", "departmentId": "58", "keyword": ""} | |
67 | 37 | {} |
68 | 38 | |
69 | -[2021-08-24 13:46:17] [INFO] : ====================================================================================== | |
70 | -[2021-08-24 13:46:17] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action | |
71 | -{'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': '202108240900159'} | |
72 | -{} | |
73 | - | |
74 | -[2021-08-24 13:46:17] [INFO] : ====================================================================================== | |
75 | -[2021-08-24 13:46:17] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/5147.action | |
76 | -None | |
77 | -{} | |
78 | - | |
79 | -[2021-08-24 13:46:19] [INFO] : ====================================================================================== | |
80 | -[2021-08-24 13:46:19] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=888810032426 | |
81 | -None | |
82 | -{} | |
83 | - | |
84 | -[2021-08-24 13:46:19] [INFO] : ====================================================================================== | |
85 | -[2021-08-24 13:46:19] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州 | |
86 | -None | |
87 | -{} | |
88 | - | |
89 | -[2021-08-24 13:46:19] [INFO] : ====================================================================================== | |
90 | -[2021-08-24 13:46:19] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action | |
91 | -{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 5147, 'goodsId': '5161', 'number': '202108240900159', 'modified': '2021-08-24 13:46:19', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川B25696', 'autocomplete-cartype': '003(板车)', 'carTypeName': '板车', 'carTypeCode': '003', 'carTypeId': '53', 'carTypeWeight': '333', 'storeTareWeight': '', 'proveType': '665', 'grossWeight': '432', 'tareWeight': '333', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '水果部', 'calcDepId': '58', 'regionName': '', 'regionId': '0', 'productName': '雪莲果', 'productId': '2182', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '70', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-24 13:46:18', 'remark': 'false', 'goodsTagIds': '663', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-24 13:46:18', 'tareWeightDate': '2021-08-24 13:46:18', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '运维体验', 'inGreeterId': '229', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''} | |
92 | -{} | |
93 | - | |
94 | -[2021-08-24 13:46:20] [INFO] : ====================================================================================== | |
95 | -[2021-08-24 13:46:20] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doFreeze.action | |
96 | -protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=1&id=5147&goodsId=5161&number=202108240900159&modified=2021-08-24%2013%3A46%3A18&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=4800&customerId=384&fundAccount=107575&ic=888810032426&customerName=%2A%2A%2A%2A%2A%2A&customerPhone=19010001000&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DB25696&autocomplete-cartype=003%28%E6%9D%BF%E8%BD%A6%29&carTypeName=%E6%9D%BF%E8%BD%A6&carTypeCode=003&carTypeId=53&carTypeWeight=333&storeTareWeight=&proveType=665&grossWeight=432&tareWeight=333&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E6%B0%B4%E6%9E%9C%E9%83%A8&calcDepId=58&dep=58®ionName=®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&parentId=&levelType=&originId=500101&tradeTypeId=70&chargeTotalAmount=4800&chargeTotalAmountYuan=48&freezeMoneySymbol=53&comparisonFreezeAmount=53&created=2021-08-24%2013%3A46%3A18&remark=&goodsTagIds=663&marketFlag=sy&totalMoney=4800&receivable=5300&collectionPrice=0&discountAmount=500&handReceivableAmount=0&itemReceivableAmount=5300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=5300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=1616&driverTel=&grossWeightDate=2021-08-24%2013%3A46%3A18&tareWeightDate=2021-08-24%2013%3A46%3A18&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=&inGreeterId=0&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=107575&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=103&103=50.00&billItems=%7B%22discount%22%3A500%2C%22id%22%3A103%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A5000%2C%22require%22%3A1%7D&billItemDicCheckIds=105&billItemsDic=%7B%22discount%22%3A0%2C%22id%22%3A105%2C%22name%22%3A%22%E4%BC%98%E6%83%A0%E6%94%B6%E8%B4%B9%22%2C%22receivable%22%3A500%2C%22require%22%3A0%7D&billItemCheckIds=106&106=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A106%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D | |
97 | -{} | |
98 | - | |
99 | -[2021-08-24 13:46:23] [INFO] : ====================================================================================== | |
100 | -[2021-08-24 13:46:23] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listBackSkinTrucks | |
101 | -{"plate": "", "number": "", "customerName": "******"} | |
102 | -{} | |
103 | - | |
104 | -[2021-08-24 13:46:25] [INFO] : ====================================================================================== | |
105 | -[2021-08-24 13:46:25] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=9&moduleCode=ZC | |
106 | -None | |
107 | -{} | |
108 | - | |
109 | -[2021-08-24 13:46:25] [INFO] : ====================================================================================== | |
110 | -[2021-08-24 13:46:25] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType | |
111 | -{"businessCode": "jmsf"} | |
112 | -{} | |
113 | - | |
114 | -[2021-08-24 13:46:25] [INFO] : ====================================================================================== | |
115 | -[2021-08-24 13:46:25] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree | |
116 | -{"marketId": 9, "state": 1, "keyword": "\u706b\u9f99\u679c"} | |
117 | -{} | |
118 | - | |
119 | -[2021-08-24 13:46:26] [INFO] : ====================================================================================== | |
120 | -[2021-08-24 13:46:26] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api | |
121 | -{"firmCode": "sy", "departmentId": 56, "keyword": ""} | |
122 | -{} | |
123 | - | |
124 | -[2021-08-24 13:46:26] [INFO] : ====================================================================================== | |
125 | -[2021-08-24 13:46:26] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/tradeType/query | |
39 | +[2021-08-24 14:23:24] [INFO] : ====================================================================================== | |
40 | +[2021-08-24 14:23:24] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/tradeType/query | |
126 | 41 | {"pageNum": 100, "pageSize": 100, "marketId": 9} |
127 | 42 | {} |
128 | 43 | |
129 | -[2021-08-24 13:46:26] [INFO] : ====================================================================================== | |
130 | -[2021-08-24 13:46:26] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | |
44 | +[2021-08-24 14:23:25] [INFO] : ====================================================================================== | |
45 | +[2021-08-24 14:23:25] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | |
131 | 46 | None |
132 | 47 | {'params': {'pid': 'goods_tag'}} |
133 | 48 | |
134 | -[2021-08-24 13:46:26] [INFO] : ====================================================================================== | |
135 | -[2021-08-24 13:46:26] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/address | |
49 | +[2021-08-24 14:23:25] [INFO] : ====================================================================================== | |
50 | +[2021-08-24 14:23:25] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/address | |
136 | 51 | {"province": "C", "city": null, "area": null} |
137 | 52 | {} |
138 | 53 | |
139 | -[2021-08-24 13:46:27] [INFO] : ====================================================================================== | |
140 | -[2021-08-24 13:46:27] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep | |
54 | +[2021-08-24 14:23:25] [INFO] : ====================================================================================== | |
55 | +[2021-08-24 14:23:25] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep | |
141 | 56 | None |
142 | 57 | {'params': {'keyword': ''}} |
143 | 58 | |
144 | -[2021-08-24 13:46:27] [INFO] : ====================================================================================== | |
145 | -[2021-08-24 13:46:27] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | |
59 | +[2021-08-24 14:23:26] [INFO] : ====================================================================================== | |
60 | +[2021-08-24 14:23:26] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | |
146 | 61 | None |
147 | 62 | {'params': {'pid': 'prove_type'}} |
148 | 63 | |
149 | -[2021-08-24 13:46:27] [INFO] : ====================================================================================== | |
150 | -[2021-08-24 13:46:27] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action | |
64 | +[2021-08-24 14:23:26] [INFO] : ====================================================================================== | |
65 | +[2021-08-24 14:23:26] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action | |
151 | 66 | None |
152 | 67 | {} |
153 | 68 | |
154 | -[2021-08-24 13:46:28] [INFO] : ====================================================================================== | |
155 | -[2021-08-24 13:46:28] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave | |
156 | -{"carTypeCode": "003", "carTypeId": 53, "carTypeName": "\u677f\u8f66", "carTypeWeight": 333, "plate": "\u5dddB90201", "inGreeterId": 229, "inGreeterName": "\u8fd0\u7ef4\u4f53\u9a8c", "productId": 1694, "productName": "\u706b\u9f99\u679c\u7c7b", "proveTypeCode": 665, "proveTypeName": "\u98df\u54c1\u5b89\u5168", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 432, "grossWeightDate": "2021-08-24 13:46:28", "newWeight": 99, "tareWeight": 333, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddB90201", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 58, "depName": "\u6c34\u679c\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": 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": 663} | |
69 | +[2021-08-24 14:23:26] [INFO] : ====================================================================================== | |
70 | +[2021-08-24 14:23:26] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave | |
71 | +{"carTypeCode": "003", "carTypeId": 53, "carTypeName": "\u677f\u8f66", "carTypeWeight": 333, "plate": "\u5dddA91818", "inGreeterId": 274, "inGreeterName": "\u901a\u7528\u6d4b\u8bd5", "productId": 2182, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 665, "proveTypeName": "\u98df\u54c1\u5b89\u5168", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 432, "grossWeightDate": "2021-08-24 14:23:26", "newWeight": 99, "tareWeight": 333, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA91818", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 58, "depName": "\u6c34\u679c\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": 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": 663} | |
157 | 72 | {} |
158 | 73 | |
159 | -[2021-08-24 13:46:28] [INFO] : ====================================================================================== | |
160 | -[2021-08-24 13:46:28] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action | |
161 | -{'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': '202108240900160'} | |
74 | +[2021-08-24 14:23:27] [INFO] : ====================================================================================== | |
75 | +[2021-08-24 14:23:27] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action | |
76 | +{'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': '202108240900199'} | |
162 | 77 | {} |
163 | 78 | |
164 | -[2021-08-24 13:46:29] [INFO] : ====================================================================================== | |
165 | -[2021-08-24 13:46:29] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/5148.action | |
79 | +[2021-08-24 14:23:27] [INFO] : ====================================================================================== | |
80 | +[2021-08-24 14:23:27] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/5195.action | |
166 | 81 | None |
167 | 82 | {} |
168 | 83 | |
169 | -[2021-08-24 13:46:30] [INFO] : ====================================================================================== | |
170 | -[2021-08-24 13:46:30] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=888810032426 | |
171 | -None | |
172 | -{} | |
173 | - | |
174 | -[2021-08-24 13:46:31] [INFO] : ====================================================================================== | |
175 | -[2021-08-24 13:46:31] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州 | |
176 | -None | |
177 | -{} | |
178 | - | |
179 | -[2021-08-24 13:46:31] [INFO] : ====================================================================================== | |
180 | -[2021-08-24 13:46:31] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action | |
181 | -{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 5148, 'goodsId': '5162', 'number': '202108240900160', 'modified': '2021-08-24 13:46:31', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川B90201', 'autocomplete-cartype': '003(板车)', 'carTypeName': '板车', 'carTypeCode': '003', 'carTypeId': '53', 'carTypeWeight': '333', 'storeTareWeight': '', 'proveType': '665', 'grossWeight': '432', 'tareWeight': '333', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '水果部', 'calcDepId': '58', 'regionName': '', 'regionId': '0', 'productName': '火龙果类', 'productId': '1694', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '70', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-24 13:46:29', 'remark': 'false', 'goodsTagIds': '663', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-24 13:46:29', 'tareWeightDate': '2021-08-24 13:46:29', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '运维体验', 'inGreeterId': '229', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''} | |
182 | -{} | |
183 | - | |
184 | -[2021-08-24 13:46:31] [INFO] : ====================================================================================== | |
185 | -[2021-08-24 13:46:31] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doFreeze.action | |
186 | -protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=1&id=5148&goodsId=5162&number=202108240900160&modified=2021-08-24%2013%3A46%3A29&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=4800&customerId=384&fundAccount=107575&ic=888810032426&customerName=%2A%2A%2A%2A%2A%2A&customerPhone=19010001000&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DB90201&autocomplete-cartype=003%28%E6%9D%BF%E8%BD%A6%29&carTypeName=%E6%9D%BF%E8%BD%A6&carTypeCode=003&carTypeId=53&carTypeWeight=333&storeTareWeight=&proveType=665&grossWeight=432&tareWeight=333&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E6%B0%B4%E6%9E%9C%E9%83%A8&calcDepId=58&dep=58®ionName=®ionId=72&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=&levelType=&originId=500101&tradeTypeId=70&chargeTotalAmount=4800&chargeTotalAmountYuan=48&freezeMoneySymbol=53&comparisonFreezeAmount=53&created=2021-08-24%2013%3A46%3A29&remark=&goodsTagIds=663&marketFlag=sy&totalMoney=4800&receivable=5300&collectionPrice=0&discountAmount=500&handReceivableAmount=0&itemReceivableAmount=5300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=5300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=1616&driverTel=&grossWeightDate=2021-08-24%2013%3A46%3A29&tareWeightDate=2021-08-24%2013%3A46%3A29&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=&inGreeterId=0&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=107575&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=103&103=50.00&billItems=%7B%22discount%22%3A500%2C%22id%22%3A103%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A5000%2C%22require%22%3A1%7D&billItemDicCheckIds=105&billItemsDic=%7B%22discount%22%3A0%2C%22id%22%3A105%2C%22name%22%3A%22%E4%BC%98%E6%83%A0%E6%94%B6%E8%B4%B9%22%2C%22receivable%22%3A500%2C%22require%22%3A0%7D&billItemCheckIds=106&106=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A106%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D | |
187 | -{} | |
188 | - | |
189 | -[2021-08-24 13:46:35] [INFO] : ====================================================================================== | |
190 | -[2021-08-24 13:46:35] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listBackSkinTrucks | |
191 | -{"plate": "", "number": "202108240900160", "customerName": ""} | |
192 | -{} | |
193 | - | |
194 | -[2021-08-24 13:46:35] [INFO] : ====================================================================================== | |
195 | -[2021-08-24 13:46:35] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=9&moduleCode=ZC | |
84 | +[2021-08-24 14:23:29] [INFO] : ====================================================================================== | |
85 | +[2021-08-24 14:23:29] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=888810032426 | |
196 | 86 | None |
197 | 87 | {} |
198 | 88 | |
199 | -[2021-08-24 13:46:35] [INFO] : ====================================================================================== | |
200 | -[2021-08-24 13:46:35] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType | |
201 | -{"businessCode": "jmsf"} | |
202 | -{} | |
203 | - | |
204 | -[2021-08-24 13:46:35] [INFO] : ====================================================================================== | |
205 | -[2021-08-24 13:46:35] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree | |
206 | -{"marketId": 9, "state": 1, "keyword": "\u706b\u9f99\u679c"} | |
207 | -{} | |
208 | - | |
209 | -[2021-08-24 13:46:35] [INFO] : ====================================================================================== | |
210 | -[2021-08-24 13:46:35] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api | |
211 | -{"firmCode": "sy", "departmentId": 56, "keyword": ""} | |
212 | -{} | |
213 | - | |
214 | -[2021-08-24 13:46:36] [INFO] : ====================================================================================== | |
215 | -[2021-08-24 13:46:36] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/tradeType/query | |
216 | -{"pageNum": 100, "pageSize": 100, "marketId": 9} | |
217 | -{} | |
218 | - | |
219 | -[2021-08-24 13:46:36] [INFO] : ====================================================================================== | |
220 | -[2021-08-24 13:46:36] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | |
89 | +[2021-08-24 14:23:30] [INFO] : ====================================================================================== | |
90 | +[2021-08-24 14:23:30] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州 | |
221 | 91 | None |
222 | -{'params': {'pid': 'goods_tag'}} | |
223 | - | |
224 | -[2021-08-24 13:46:36] [INFO] : ====================================================================================== | |
225 | -[2021-08-24 13:46:36] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/address | |
226 | -{"province": "C", "city": null, "area": null} | |
227 | -{} | |
228 | - | |
229 | -[2021-08-24 13:46:36] [INFO] : ====================================================================================== | |
230 | -[2021-08-24 13:46:36] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep | |
231 | -None | |
232 | -{'params': {'keyword': ''}} | |
233 | - | |
234 | -[2021-08-24 13:46:37] [INFO] : ====================================================================================== | |
235 | -[2021-08-24 13:46:37] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | |
236 | -None | |
237 | -{'params': {'pid': 'prove_type'}} | |
238 | - | |
239 | -[2021-08-24 13:46:37] [INFO] : ====================================================================================== | |
240 | -[2021-08-24 13:46:37] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action | |
241 | -None | |
242 | -{} | |
243 | - | |
244 | -[2021-08-24 13:46:37] [INFO] : ====================================================================================== | |
245 | -[2021-08-24 13:46:37] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave | |
246 | -{"carTypeCode": "003", "carTypeId": 53, "carTypeName": "\u677f\u8f66", "carTypeWeight": 333, "plate": "\u5dddB65592", "inGreeterId": 229, "inGreeterName": "\u8fd0\u7ef4\u4f53\u9a8c", "productId": 1694, "productName": "\u706b\u9f99\u679c\u7c7b", "proveTypeCode": 665, "proveTypeName": "\u98df\u54c1\u5b89\u5168", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 432, "grossWeightDate": "2021-08-24 13:46:37", "newWeight": 99, "tareWeight": 333, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddB65592", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 58, "depName": "\u6c34\u679c\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": 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": 663} | |
247 | -{} | |
248 | - | |
249 | -[2021-08-24 13:46:38] [INFO] : ====================================================================================== | |
250 | -[2021-08-24 13:46:38] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action | |
251 | -{'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': '202108240900161'} | |
252 | -{} | |
253 | - | |
254 | -[2021-08-24 13:46:38] [INFO] : ====================================================================================== | |
255 | -[2021-08-24 13:46:38] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/5149.action | |
256 | -None | |
257 | -{} | |
258 | - | |
259 | -[2021-08-24 13:46:40] [INFO] : ====================================================================================== | |
260 | -[2021-08-24 13:46:40] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=888810032426 | |
261 | -None | |
262 | -{} | |
263 | - | |
264 | -[2021-08-24 13:46:40] [INFO] : ====================================================================================== | |
265 | -[2021-08-24 13:46:40] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州 | |
266 | -None | |
267 | -{} | |
268 | - | |
269 | -[2021-08-24 13:46:40] [INFO] : ====================================================================================== | |
270 | -[2021-08-24 13:46:40] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action | |
271 | -{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 5149, 'goodsId': '5163', 'number': '202108240900161', 'modified': '2021-08-24 13:46:40', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川B65592', 'autocomplete-cartype': '003(板车)', 'carTypeName': '板车', 'carTypeCode': '003', 'carTypeId': '53', 'carTypeWeight': '333', 'storeTareWeight': '', 'proveType': '665', 'grossWeight': '432', 'tareWeight': '333', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '水果部', 'calcDepId': '58', 'regionName': '', 'regionId': '0', 'productName': '火龙果类', 'productId': '1694', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '70', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-24 13:46:39', 'remark': 'false', 'goodsTagIds': '663', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-24 13:46:39', 'tareWeightDate': '2021-08-24 13:46:39', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '运维体验', 'inGreeterId': '229', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''} | |
272 | -{} | |
273 | - | |
274 | -[2021-08-24 13:46:41] [INFO] : ====================================================================================== | |
275 | -[2021-08-24 13:46:41] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doFreeze.action | |
276 | -protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=1&id=5149&goodsId=5163&number=202108240900161&modified=2021-08-24%2013%3A46%3A39&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=4800&customerId=384&fundAccount=107575&ic=888810032426&customerName=%2A%2A%2A%2A%2A%2A&customerPhone=19010001000&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DB65592&autocomplete-cartype=003%28%E6%9D%BF%E8%BD%A6%29&carTypeName=%E6%9D%BF%E8%BD%A6&carTypeCode=003&carTypeId=53&carTypeWeight=333&storeTareWeight=&proveType=665&grossWeight=432&tareWeight=333&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E6%B0%B4%E6%9E%9C%E9%83%A8&calcDepId=58&dep=58®ionName=®ionId=72&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=&levelType=&originId=500101&tradeTypeId=70&chargeTotalAmount=4800&chargeTotalAmountYuan=48&freezeMoneySymbol=53&comparisonFreezeAmount=53&created=2021-08-24%2013%3A46%3A39&remark=&goodsTagIds=663&marketFlag=sy&totalMoney=4800&receivable=5300&collectionPrice=0&discountAmount=500&handReceivableAmount=0&itemReceivableAmount=5300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=5300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=1616&driverTel=&grossWeightDate=2021-08-24%2013%3A46%3A39&tareWeightDate=2021-08-24%2013%3A46%3A39&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=&inGreeterId=0&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=107575&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=103&103=50.00&billItems=%7B%22discount%22%3A500%2C%22id%22%3A103%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A5000%2C%22require%22%3A1%7D&billItemDicCheckIds=105&billItemsDic=%7B%22discount%22%3A0%2C%22id%22%3A105%2C%22name%22%3A%22%E4%BC%98%E6%83%A0%E6%94%B6%E8%B4%B9%22%2C%22receivable%22%3A500%2C%22require%22%3A0%7D&billItemCheckIds=106&106=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A106%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D | |
277 | -{} | |
278 | - | |
279 | -[2021-08-24 13:46:44] [INFO] : ====================================================================================== | |
280 | -[2021-08-24 13:46:44] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listBackSkinTrucks | |
281 | -{"plate": "\u5dddB65592", "number": "", "customerName": ""} | |
282 | -{} | |
283 | - | |
284 | -[2021-08-24 13:46:45] [INFO] : ====================================================================================== | |
285 | -[2021-08-24 13:46:45] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/template/getTemplateUnit?marketCode=9&moduleCode=ZC | |
286 | -None | |
287 | -{} | |
288 | - | |
289 | -[2021-08-24 13:46:45] [INFO] : ====================================================================================== | |
290 | -[2021-08-24 13:46:45] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType | |
291 | -{"businessCode": "jmsf"} | |
292 | -{} | |
293 | - | |
294 | -[2021-08-24 13:46:45] [INFO] : ====================================================================================== | |
295 | -[2021-08-24 13:46:45] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree | |
296 | -{"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"} | |
297 | -{} | |
298 | - | |
299 | -[2021-08-24 13:46:45] [INFO] : ====================================================================================== | |
300 | -[2021-08-24 13:46:45] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api | |
301 | -{"firmCode": "sy", "departmentId": 56, "keyword": ""} | |
302 | -{} | |
303 | - | |
304 | -[2021-08-24 13:46:45] [INFO] : ====================================================================================== | |
305 | -[2021-08-24 13:46:45] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/tradeType/query | |
306 | -{"pageNum": 100, "pageSize": 100, "marketId": 9} | |
307 | -{} | |
308 | - | |
309 | -[2021-08-24 13:46:45] [INFO] : ====================================================================================== | |
310 | -[2021-08-24 13:46:45] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | |
311 | -None | |
312 | -{'params': {'pid': 'goods_tag'}} | |
313 | - | |
314 | -[2021-08-24 13:46:46] [INFO] : ====================================================================================== | |
315 | -[2021-08-24 13:46:46] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/address | |
316 | -{"province": "C", "city": null, "area": null} | |
317 | -{} | |
318 | - | |
319 | -[2021-08-24 13:46:46] [INFO] : ====================================================================================== | |
320 | -[2021-08-24 13:46:46] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep | |
321 | -None | |
322 | -{'params': {'keyword': ''}} | |
323 | - | |
324 | -[2021-08-24 13:46:47] [INFO] : ====================================================================================== | |
325 | -[2021-08-24 13:46:47] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | |
326 | -None | |
327 | -{'params': {'pid': 'prove_type'}} | |
328 | - | |
329 | -[2021-08-24 13:46:47] [INFO] : ====================================================================================== | |
330 | -[2021-08-24 13:46:47] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action | |
331 | -None | |
332 | -{} | |
333 | - | |
334 | -[2021-08-24 13:46:47] [INFO] : ====================================================================================== | |
335 | -[2021-08-24 13:46:47] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave | |
336 | -{"carTypeCode": "003", "carTypeId": 53, "carTypeName": "\u677f\u8f66", "carTypeWeight": 333, "plate": "\u5dddB15707", "inGreeterId": 229, "inGreeterName": "\u8fd0\u7ef4\u4f53\u9a8c", "productId": 2182, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 665, "proveTypeName": "\u98df\u54c1\u5b89\u5168", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 432, "grossWeightDate": "2021-08-24 13:46:47", "newWeight": 99, "tareWeight": 333, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddB15707", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 58, "depName": "\u6c34\u679c\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": 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": 663} | |
337 | -{} | |
338 | - | |
339 | -[2021-08-24 13:46:48] [INFO] : ====================================================================================== | |
340 | -[2021-08-24 13:46:48] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action | |
341 | -{'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': '202108240900162'} | |
342 | -{} | |
343 | - | |
344 | -[2021-08-24 13:46:48] [INFO] : ====================================================================================== | |
345 | -[2021-08-24 13:46:48] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/5150.action | |
346 | -None | |
347 | -{} | |
348 | - | |
349 | -[2021-08-24 13:46:50] [INFO] : ====================================================================================== | |
350 | -[2021-08-24 13:46:50] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=888810032426 | |
351 | -None | |
352 | -{} | |
353 | - | |
354 | -[2021-08-24 13:46:50] [INFO] : ====================================================================================== | |
355 | -[2021-08-24 13:46:50] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州 | |
356 | -None | |
357 | -{} | |
358 | - | |
359 | -[2021-08-24 13:46:50] [INFO] : ====================================================================================== | |
360 | -[2021-08-24 13:46:50] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action | |
361 | -{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 5150, 'goodsId': '5164', 'number': '202108240900162', 'modified': '2021-08-24 13:46:50', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川B15707', 'autocomplete-cartype': '003(板车)', 'carTypeName': '板车', 'carTypeCode': '003', 'carTypeId': '53', 'carTypeWeight': '333', 'storeTareWeight': '', 'proveType': '665', 'grossWeight': '432', 'tareWeight': '333', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '水果部', 'calcDepId': '58', 'regionName': '', 'regionId': '0', 'productName': '雪莲果', 'productId': '2182', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '70', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-24 13:46:49', 'remark': 'false', 'goodsTagIds': '663', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-24 13:46:48', 'tareWeightDate': '2021-08-24 13:46:48', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '运维体验', 'inGreeterId': '229', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''} | |
362 | -{} | |
363 | - | |
364 | -[2021-08-24 13:46:51] [INFO] : ====================================================================================== | |
365 | -[2021-08-24 13:46:51] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doFreeze.action | |
366 | -protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=1&id=5150&goodsId=5164&number=202108240900162&modified=2021-08-24%2013%3A46%3A49&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=4800&customerId=384&fundAccount=107575&ic=888810032426&customerName=%2A%2A%2A%2A%2A%2A&customerPhone=19010001000&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DB15707&autocomplete-cartype=003%28%E6%9D%BF%E8%BD%A6%29&carTypeName=%E6%9D%BF%E8%BD%A6&carTypeCode=003&carTypeId=53&carTypeWeight=333&storeTareWeight=&proveType=665&grossWeight=432&tareWeight=333&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E6%B0%B4%E6%9E%9C%E9%83%A8&calcDepId=58&dep=58®ionName=®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&parentId=&levelType=&originId=500101&tradeTypeId=70&chargeTotalAmount=4800&chargeTotalAmountYuan=48&freezeMoneySymbol=53&comparisonFreezeAmount=53&created=2021-08-24%2013%3A46%3A49&remark=&goodsTagIds=663&marketFlag=sy&totalMoney=4800&receivable=5300&collectionPrice=0&discountAmount=500&handReceivableAmount=0&itemReceivableAmount=5300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=5300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=1616&driverTel=&grossWeightDate=2021-08-24%2013%3A46%3A48&tareWeightDate=2021-08-24%2013%3A46%3A48&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=&inGreeterId=0&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=107575&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=103&103=50.00&billItems=%7B%22discount%22%3A500%2C%22id%22%3A103%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A5000%2C%22require%22%3A1%7D&billItemDicCheckIds=105&billItemsDic=%7B%22discount%22%3A0%2C%22id%22%3A105%2C%22name%22%3A%22%E4%BC%98%E6%83%A0%E6%94%B6%E8%B4%B9%22%2C%22receivable%22%3A500%2C%22require%22%3A0%7D&billItemCheckIds=106&106=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A106%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D | |
367 | 92 | {} |
368 | 93 | |
369 | -[2021-08-24 13:46:54] [INFO] : ====================================================================================== | |
370 | -[2021-08-24 13:46:54] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listBackSkinTrucks | |
371 | -{"plate": "", "number": "202108240900162", "customerName": ""} | |
94 | +[2021-08-24 14:23:30] [INFO] : ====================================================================================== | |
95 | +[2021-08-24 14:23:30] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action | |
96 | +{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 5195, 'goodsId': '5209', 'number': '202108240900199', 'modified': '2021-08-24 14:23:30', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A91818', 'autocomplete-cartype': '003(板车)', 'carTypeName': '板车', 'carTypeCode': '003', 'carTypeId': '53', 'carTypeWeight': '333', 'storeTareWeight': '', 'proveType': '665', 'grossWeight': '432', 'tareWeight': '333', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '水果部', 'calcDepId': '58', 'regionName': '', 'regionId': '0', 'productName': '雪莲果', 'productId': '2182', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '70', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-24 14:23:28', 'remark': 'false', 'goodsTagIds': '663', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-24 14:23:28', 'tareWeightDate': '2021-08-24 14:23:28', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '通用测试', 'inGreeterId': '274', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''} | |
372 | 97 | {} |
373 | 98 | |
374 | -[2021-08-24 13:46:54] [INFO] : ====================================================================================== | |
375 | -[2021-08-24 13:46:54] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api | |
376 | -{"firmCode": "sy", "departmentId": 58, "keyword": ""} | |
99 | +[2021-08-24 14:23:30] [INFO] : ====================================================================================== | |
100 | +[2021-08-24 14:23:30] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doPay.action | |
101 | +protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=1&id=5195&goodsId=5209&number=202108240900199&modified=2021-08-24%2014%3A23%3A28&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=4800&customerId=384&fundAccount=107575&ic=888810032426&customerName=%2A%2A%2A%2A%2A%2A&customerPhone=19010001000&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA91818&autocomplete-cartype=003%28%E6%9D%BF%E8%BD%A6%29&carTypeName=%E6%9D%BF%E8%BD%A6&carTypeCode=003&carTypeId=53&carTypeWeight=333&storeTareWeight=&proveType=665&grossWeight=432&tareWeight=333&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E6%B0%B4%E6%9E%9C%E9%83%A8&calcDepId=58&dep=58®ionName=A1%E5%8C%BA®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&parentId=500100&levelType=&originId=500101&tradeTypeId=70&chargeTotalAmount=4800&chargeTotalAmountYuan=48&freezeMoneySymbol=53&comparisonFreezeAmount=53&created=2021-08-24%2014%3A23%3A28&remark=&goodsTagIds=663&marketFlag=sy&totalMoney=4800&receivable=5300&collectionPrice=0&discountAmount=500&handReceivableAmount=0&itemReceivableAmount=5300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=5300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=1616&driverTel=&grossWeightDate=2021-08-24%2014%3A23%3A28&tareWeightDate=2021-08-24%2014%3A23%3A28&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=%E9%80%9A%E7%94%A8%E6%B5%8B%E8%AF%95&inGreeterId=274&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=107575&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=103&103=50.00&billItems=%7B%22discount%22%3A500%2C%22id%22%3A103%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A5000%2C%22require%22%3A1%7D&billItemDicCheckIds=105&billItemsDic=%7B%22discount%22%3A0%2C%22id%22%3A105%2C%22name%22%3A%22%E4%BC%98%E6%83%A0%E6%94%B6%E8%B4%B9%22%2C%22receivable%22%3A500%2C%22require%22%3A0%7D&billItemCheckIds=106&106=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A106%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D | |
377 | 102 | {} |
378 | 103 | |
379 | -[2021-08-24 13:46:54] [INFO] : ====================================================================================== | |
380 | -[2021-08-24 13:46:54] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/backSkinWeighSave | |
381 | -{"hasStoreTruck": 1, "number": "202108240900162", "outGreeterId": 223, "outGreeterName": "\u6d4b\u8bd5\u6c88\u9633", "plate": "\u5dddB15707", "rail": 1, "tareWeight": 344, "tareWeightDate": "2021-08-24 13:46:54", "weighImgs": [], "weighId": 0, "remark": "123", "carTypeWeight": 333, "trailerNumber": "\u5dddB15707", "pathAddress": "A4-BB-6D-0A-F4-13", "bskinWithGoods": -1, "ic": "", "customerName": null, "customerId": 0, "carTypeCode": "003", "carTypeId": 53, "carTypeName": "\u677f\u8f66"} | |
104 | +[2021-08-24 14:23:35] [INFO] : ====================================================================================== | |
105 | +[2021-08-24 14:23:35] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action | |
106 | +{'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': '沈阳长歌'} | |
382 | 107 | {} |
383 | 108 | ... | ... |
testcase/heb/test_HP/test_HP.py
... | ... | @@ -14,6 +14,7 @@ import unittest |
14 | 14 | from commons.scripts.readConf import rC |
15 | 15 | from commons.api import zcApi as zcA |
16 | 16 | from commons.api.entranceFeeBillList import entranceFeeBillList as eFBL |
17 | +from commons.api.entranceFeeBillList import operationDoFreeze as oDF | |
17 | 18 | from commons.api import hpApi |
18 | 19 | import time,random |
19 | 20 | |
... | ... | @@ -43,7 +44,7 @@ class test_HPCreate(unittest.TestCase): |
43 | 44 | cre_res = zcA.create_jmsf(host=self.gatewayHost,plate=plate,keyword=goods) |
44 | 45 | print(cre_res.json()) |
45 | 46 | number = cre_res.json()["data"]["number"] |
46 | - aa = eFBL.do_freezeOrder(host=self.jmsfHost,attrValue=number) | |
47 | + aa = oDF.do_freezeOrder(host=self.jmsfHost,attrValue=number) | |
47 | 48 | res,tareWeight = hpApi.do_backSkinWeighSave(host=self.gatewayHost,number=number) |
48 | 49 | assert res.json()["code"]=="200","回皮失败" |
49 | 50 | assert "data" in res.text,"回皮失败" |
... | ... | @@ -55,7 +56,7 @@ class test_HPCreate(unittest.TestCase): |
55 | 56 | cre_res = zcA.create_jmsf(host=self.gatewayHost,plate=plate,keyword=goods) |
56 | 57 | print(cre_res.json()) |
57 | 58 | number = cre_res.json()["data"]["number"] |
58 | - aa = eFBL.do_freezeOrder(host=self.jmsfHost,attrValue=number) | |
59 | + aa = oDF.do_freezeOrder(host=self.jmsfHost,attrValue=number) | |
59 | 60 | res = hpApi.get_listBackSkinTrucks(host=self.gatewayHost,plate=plate) |
60 | 61 | print(res.json()) |
61 | 62 | assert res.json()["code"]=="200","车号查询失败" |
... | ... | @@ -68,7 +69,7 @@ class test_HPCreate(unittest.TestCase): |
68 | 69 | cre_res = zcA.create_jmsf(host=self.gatewayHost,plate=plate,keyword=goods) |
69 | 70 | print(cre_res.json()) |
70 | 71 | number = cre_res.json()["data"]["number"] |
71 | - aa = eFBL.do_freezeOrder(host=self.jmsfHost,attrValue=number) | |
72 | + aa = oDF.do_freezeOrder(host=self.jmsfHost,attrValue=number) | |
72 | 73 | res = hpApi.get_listBackSkinTrucks(host=self.gatewayHost,number=number) |
73 | 74 | print(res.json()) |
74 | 75 | assert res.json()["code"]=="200","车号查询失败" |
... | ... | @@ -84,7 +85,7 @@ class test_HPCreate(unittest.TestCase): |
84 | 85 | cre_res = zcA.create_jmsf(host=self.gatewayHost,plate=plate,keyword=goods) |
85 | 86 | print(cre_res.json()) |
86 | 87 | number = cre_res.json()["data"]["number"] |
87 | - aa = eFBL.do_freezeOrder(host=self.jmsfHost,attrValue=number) | |
88 | + aa = oDF.do_freezeOrder(host=self.jmsfHost,attrValue=number) | |
88 | 89 | res = hpApi.get_listBackSkinTrucks(host=self.gatewayHost,customerName=customerName) |
89 | 90 | print(res.json()) |
90 | 91 | assert res.json()["code"]=="200","车号查询失败" | ... | ... |
testcase/heb/test_listPage/test_listPageOperation.py
... | ... | @@ -21,6 +21,7 @@ from commons.api.entranceFeeBillList import operationDoCorrect as oDC |
21 | 21 | from commons.api.entranceFeeBillList import operationDoAmend as oDA |
22 | 22 | from commons.api.entranceFeeBillList import operationDoUndo as oDU |
23 | 23 | from commons.api.entranceFeeBillList import operationDoUpdate as oDUp |
24 | +from commons.api.entranceFeeBillList import operationDoFreeze as oDF | |
24 | 25 | import random |
25 | 26 | |
26 | 27 | class test_listPage(unittest.TestCase): |
... | ... | @@ -89,7 +90,7 @@ class test_listPage(unittest.TestCase): |
89 | 90 | cre_res = zcA.create_jmsf(host=self.gatewayHost,plate=plate,keyword=goods) |
90 | 91 | print(cre_res.json()) |
91 | 92 | number = cre_res.json()["data"]["number"] |
92 | - res_pay = eFBL.do_freezeOrder(host=self.jmsfHost,attrValue=number,ic=self.ic) | |
93 | + res_pay = oDF.do_freezeOrder(host=self.jmsfHost,attrValue=number,ic=self.ic) | |
93 | 94 | assert res_pay.json()["code"]=="200","缴费失败" |
94 | 95 | assert res_pay.json()["message"] == "OK", "缴费失败" |
95 | 96 | res,tareWeight = hpApi.do_backSkinWeighSave(host=self.gatewayHost,number=number) |
... | ... | @@ -108,7 +109,7 @@ class test_listPage(unittest.TestCase): |
108 | 109 | cre_res = zcA.create_jmsf(host=self.gatewayHost,plate=plate,keyword=goods) |
109 | 110 | print(cre_res.json()) |
110 | 111 | number = cre_res.json()["data"]["number"] |
111 | - res_pay = eFBL.do_freezeOrder(host=self.jmsfHost,attrValue=number,ic=self.ic) | |
112 | + res_pay = oDF.do_freezeOrder(host=self.jmsfHost,attrValue=number,ic=self.ic) | |
112 | 113 | assert res_pay.json()["code"]=="200","冻结失败" |
113 | 114 | assert res_pay.json()["message"] == "OK", "冻结失败" |
114 | 115 | |
... | ... | @@ -119,7 +120,7 @@ class test_listPage(unittest.TestCase): |
119 | 120 | cre_res = zcA.create_jmsf(host=self.gatewayHost,plate=plate,keyword=goods) |
120 | 121 | print(cre_res.json()) |
121 | 122 | number = cre_res.json()["data"]["number"] |
122 | - eFBL.do_freezeOrder(host=self.jmsfHost,attrValue=number,ic=self.ic) | |
123 | + oDF.do_freezeOrder(host=self.jmsfHost,attrValue=number,ic=self.ic) | |
123 | 124 | res_unfreezeOrder = eOp.do_unfreezeOrder(host=self.jmsfHost,attrValue=number) |
124 | 125 | assert res_unfreezeOrder.json()["code"]=="200","解冻失败" |
125 | 126 | assert res_unfreezeOrder.json()["message"] == "OK", "解冻失败" | ... | ... |