Commit 68dd1fb0c705f3c447f9011d21ef2ac1bb0a42b1
Merge remote-tracking branch 'origin/master'
Showing
10 changed files
with
1004 additions
and
4138 deletions
commons/api/entranceFeeBillList/operationDoAmend.py
@@ -240,11 +240,11 @@ def do_amendOrder(host="http://test.jmsf.diligrp.com:8385",attrName="收费å•å | @@ -240,11 +240,11 @@ def do_amendOrder(host="http://test.jmsf.diligrp.com:8385",attrName="收费å•å | ||
240 | # customerName = res.json()["data"]["aInfo"]["customerName"] | 240 | # customerName = res.json()["data"]["aInfo"]["customerName"] |
241 | # accountId = res.json()["data"]["aInfo"]["accountId"] | 241 | # accountId = res.json()["data"]["aInfo"]["accountId"] |
242 | # mobile = res.json()["data"]["aInfo"]["mobile"] | 242 | # mobile = res.json()["data"]["aInfo"]["mobile"] |
243 | - | ||
244 | - customerId = "" | ||
245 | - customerName = "" | ||
246 | - accountId = "" | ||
247 | - mobile = "" | 243 | + customerId = orderDetailsDict["customerId"] |
244 | + customerName = orderDetailsDict["customerName"] | ||
245 | + accountId = orderDetailsDict["accountId"] | ||
246 | + mobile = orderDetailsDict["customerPhone"] | ||
247 | + ic = orderDetailsDict["ic"] | ||
248 | 248 | ||
249 | # çœå¸‚åŒºèŽ·å– | 249 | # çœå¸‚åŒºèŽ·å– |
250 | res = eFBL.get_city(host=host, name="万州") | 250 | res = eFBL.get_city(host=host, name="万州") |
commons/api/entranceFeeBillList/operationDoCorrect.py
@@ -246,11 +246,11 @@ def do_correctOrder(host="http://test.jmsf.diligrp.com:8385",attrName="收费单 | @@ -246,11 +246,11 @@ def do_correctOrder(host="http://test.jmsf.diligrp.com:8385",attrName="收费单 | ||
246 | # customerName = res.json()["data"]["aInfo"]["customerName"] | 246 | # customerName = res.json()["data"]["aInfo"]["customerName"] |
247 | # accountId = res.json()["data"]["aInfo"]["accountId"] | 247 | # accountId = res.json()["data"]["aInfo"]["accountId"] |
248 | # mobile = res.json()["data"]["aInfo"]["mobile"] | 248 | # mobile = res.json()["data"]["aInfo"]["mobile"] |
249 | - | ||
250 | - customerId = "" | ||
251 | - customerName = "" | ||
252 | - accountId = "" | ||
253 | - mobile = "" | 249 | + customerId = orderDetailsDict["customerId"] |
250 | + customerName = orderDetailsDict["customerName"] | ||
251 | + accountId = orderDetailsDict["accountId"] | ||
252 | + mobile = orderDetailsDict["customerPhone"] | ||
253 | + ic = orderDetailsDict["ic"] | ||
254 | 254 | ||
255 | # 省市区获取 | 255 | # 省市区获取 |
256 | res = eFBL.get_city(host=host, name="万州") | 256 | res = eFBL.get_city(host=host, name="万州") |
commons/api/entranceFeeBillList/operationDoInvalid.py
@@ -224,13 +224,18 @@ def do_invalidOrder(host="http://test.jmsf.diligrp.com:8385",attrName="收费单 | @@ -224,13 +224,18 @@ def do_invalidOrder(host="http://test.jmsf.diligrp.com:8385",attrName="收费单 | ||
224 | productPrice = orderDetailsDict["productPrice"] | 224 | productPrice = orderDetailsDict["productPrice"] |
225 | 225 | ||
226 | 226 | ||
227 | - # 用户信息获取 | ||
228 | - res = eFBL.get_icCheck(host=host, ic=ic) | ||
229 | - print(res.text) | ||
230 | - customerId = res.json()["data"]["aInfo"]["customerId"] | ||
231 | - customerName = res.json()["data"]["aInfo"]["customerName"] | ||
232 | - accountId = res.json()["data"]["aInfo"]["accountId"] | ||
233 | - mobile = res.json()["data"]["aInfo"]["mobile"] | 227 | + # # 用户信息获取 |
228 | + # res = eFBL.get_icCheck(host=host, ic=ic) | ||
229 | + # print(res.text) | ||
230 | + # customerId = res.json()["data"]["aInfo"]["customerId"] | ||
231 | + # customerName = res.json()["data"]["aInfo"]["customerName"] | ||
232 | + # accountId = res.json()["data"]["aInfo"]["accountId"] | ||
233 | + # mobile = res.json()["data"]["aInfo"]["mobile"] | ||
234 | + customerId = orderDetailsDict["customerId"] | ||
235 | + customerName = orderDetailsDict["customerName"] | ||
236 | + accountId = orderDetailsDict["accountId"] | ||
237 | + mobile = orderDetailsDict["customerPhone"] | ||
238 | + ic = orderDetailsDict["ic"] | ||
234 | 239 | ||
235 | # 省市区获取 | 240 | # 省市区获取 |
236 | res = eFBL.get_city(host=host, name="万州") | 241 | res = eFBL.get_city(host=host, name="万州") |
commons/api/entranceFeeBillList/operationDoUndo.py
@@ -149,17 +149,18 @@ def do_undoOrder(host="http://test.jmsf.diligrp.com:8385",attrName="收费单号 | @@ -149,17 +149,18 @@ def do_undoOrder(host="http://test.jmsf.diligrp.com:8385",attrName="收费单号 | ||
149 | modified = orderDetailsDict["modified"] | 149 | modified = orderDetailsDict["modified"] |
150 | 150 | ||
151 | 151 | ||
152 | - # 用户信息获取 | ||
153 | - res = eFBL.get_icCheck(host=host, ic=ic) | ||
154 | - print(res.text) | ||
155 | - customerId = res.json()["data"]["aInfo"]["customerId"] | ||
156 | - customerName = res.json()["data"]["aInfo"]["customerName"] | ||
157 | - accountId = res.json()["data"]["aInfo"]["accountId"] | ||
158 | - mobile = res.json()["data"]["aInfo"]["mobile"] | ||
159 | - # customerId = "" | ||
160 | - # customerName = "" | ||
161 | - # accountId = "" | ||
162 | - # mobile = "" | 152 | + # # 用户信息获取 |
153 | + # res = eFBL.get_icCheck(host=host, ic=ic) | ||
154 | + # print(res.text) | ||
155 | + # customerId = res.json()["data"]["aInfo"]["customerId"] | ||
156 | + # customerName = res.json()["data"]["aInfo"]["customerName"] | ||
157 | + # accountId = res.json()["data"]["aInfo"]["accountId"] | ||
158 | + # mobile = res.json()["data"]["aInfo"]["mobile"] | ||
159 | + customerId = orderDetailsDict["customerId"] | ||
160 | + customerName = orderDetailsDict["customerName"] | ||
161 | + accountId = orderDetailsDict["accountId"] | ||
162 | + mobile = orderDetailsDict["customerPhone"] | ||
163 | + ic = orderDetailsDict["ic"] | ||
163 | 164 | ||
164 | # 省市区获取 | 165 | # 省市区获取 |
165 | res = eFBL.get_city(host=host, name="万州") | 166 | res = eFBL.get_city(host=host, name="万州") |
commons/api/entranceFeeBillList/operationDoUpdate.py
@@ -224,13 +224,18 @@ def do_updateOrder(host="http://test.jmsf.diligrp.com:8385",attrName="收费å•å | @@ -224,13 +224,18 @@ def do_updateOrder(host="http://test.jmsf.diligrp.com:8385",attrName="收费å•å | ||
224 | productPrice = orderDetailsDict["productPrice"] | 224 | productPrice = orderDetailsDict["productPrice"] |
225 | 225 | ||
226 | 226 | ||
227 | - # 用户信æ¯èŽ·å– | ||
228 | - res = eFBL.get_icCheck(host=host, ic=ic) | ||
229 | - print(res.text) | ||
230 | - customerId = res.json()["data"]["aInfo"]["customerId"] | ||
231 | - customerName = res.json()["data"]["aInfo"]["customerName"] | ||
232 | - accountId = res.json()["data"]["aInfo"]["accountId"] | ||
233 | - mobile = res.json()["data"]["aInfo"]["mobile"] | 227 | + # # 用户信æ¯èŽ·å– |
228 | + # res = eFBL.get_icCheck(host=host, ic=ic) | ||
229 | + # print(res.text) | ||
230 | + # customerId = res.json()["data"]["aInfo"]["customerId"] | ||
231 | + # customerName = res.json()["data"]["aInfo"]["customerName"] | ||
232 | + # accountId = res.json()["data"]["aInfo"]["accountId"] | ||
233 | + # mobile = res.json()["data"]["aInfo"]["mobile"] | ||
234 | + customerId = orderDetailsDict["customerId"] | ||
235 | + customerName = orderDetailsDict["customerName"] | ||
236 | + accountId = orderDetailsDict["accountId"] | ||
237 | + mobile = orderDetailsDict["customerPhone"] | ||
238 | + ic = orderDetailsDict["ic"] | ||
234 | 239 | ||
235 | # çœå¸‚åŒºèŽ·å– | 240 | # çœå¸‚åŒºèŽ·å– |
236 | res = eFBL.get_city(host=host, name="万州") | 241 | res = eFBL.get_city(host=host, name="万州") |
commons/api/entranceFeeBillList/operationUnfreeze.py
@@ -215,13 +215,18 @@ def do_unfreezeOrder(host="http://test.jmsf.diligrp.com:8385",attrName="收费å | @@ -215,13 +215,18 @@ def do_unfreezeOrder(host="http://test.jmsf.diligrp.com:8385",attrName="收费å | ||
215 | productPrice = orderDetailsDict["productPrice"] | 215 | productPrice = orderDetailsDict["productPrice"] |
216 | 216 | ||
217 | 217 | ||
218 | - # 用户信æ¯èŽ·å– | ||
219 | - res = eFBL.get_icCheck(host=host, ic=ic) | ||
220 | - print(res.text) | ||
221 | - customerId = res.json()["data"]["aInfo"]["customerId"] | ||
222 | - customerName = res.json()["data"]["aInfo"]["customerName"] | ||
223 | - accountId = res.json()["data"]["aInfo"]["accountId"] | ||
224 | - mobile = res.json()["data"]["aInfo"]["mobile"] | 218 | + # # 用户信æ¯èŽ·å– |
219 | + # res = eFBL.get_icCheck(host=host, ic=ic) | ||
220 | + # print(res.text) | ||
221 | + # customerId = res.json()["data"]["aInfo"]["customerId"] | ||
222 | + # customerName = res.json()["data"]["aInfo"]["customerName"] | ||
223 | + # accountId = res.json()["data"]["aInfo"]["accountId"] | ||
224 | + # mobile = res.json()["data"]["aInfo"]["mobile"] | ||
225 | + customerId = orderDetailsDict["customerId"] | ||
226 | + customerName = orderDetailsDict["customerName"] | ||
227 | + accountId = orderDetailsDict["accountId"] | ||
228 | + mobile = orderDetailsDict["customerPhone"] | ||
229 | + ic = orderDetailsDict["ic"] | ||
225 | 230 | ||
226 | # çœå¸‚åŒºèŽ·å– | 231 | # çœå¸‚åŒºèŽ·å– |
227 | res = eFBL.get_city(host=host, name="万州") | 232 | res = eFBL.get_city(host=host, name="万州") |
config/marketConfig/test_config_hg.conf
report/test.log
1 | -[2021-08-17 14:56:04] [INFO] : ====================================================================================== | ||
2 | -[2021-08-17 14:56:04] [INFO] : http://test.uap.diligrp.com/api/authenticationApi/loginWeb | ||
3 | -{'data': None, 'json': {'userName': 'sy_chen', 'password': 'M09MIEZXDND7JXD+V4xjFmqKOrzQJ+UcwO4qTcAKhwJASwF1oMdLcdvnvDPswnmTg4yeI5HC1Pf9OaNKxuiX0DuMaYzVH7hk6QNOQ7tRlvZqJdgUXc5r4QTRj+OfXh7Q8sgX9mV6rYA+L+LgUlgxxtGdkhbe/fF1wOtMDR61RQ8='}, 'headers': {'Content-Type': 'text/plain;charset=utf-8', 'Host': 'test.uap.diligrp.com', 'Content-Length': '209', 'Expect': '100-continue'}} | ||
4 | - | ||
5 | -[2021-08-17 14:56:04] [INFO] : ====================================================================================== | ||
6 | -[2021-08-17 14:56:04] [INFO] : http://test.uap.diligrp.com/api/authenticationApi/loginWeb | ||
7 | -{'data': None, 'json': {'userName': 'sygangda', 'password': 'G7M9HXMgrmiboIdNyr/t6Bz8HrC7V7ydgIMG4gvM1EAQQeEYMHOHoQc0v22w9I6GCZVGRGcfzCdGUaizM2zXZRpnE2afinT2NSFZpEhA00TN8w3sBpkQn9O0/RpNkL/hRXvJ8sevaBb4p4fX6LQ9nw3Sv9jdl5iwyNvSyJYCVBE='}, 'headers': {'Content-Type': 'text/plain;charset=utf-8', 'Host': 'test.uap.diligrp.com', 'Content-Length': '209', 'Expect': '100-continue'}} | ||
8 | - | ||
9 | -[2021-08-17 14:56:05] [INFO] : ====================================================================================== | ||
10 | -[2021-08-17 14:56:05] [INFO] : | ||
11 | -url: http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType | ||
12 | -参数: {"businessCode": "jmsf"} | ||
13 | -其他参数: {} | ||
14 | -接口返回: {"code":"200","data":[{"autoPass":2,"autoSave":1,"carTypeName":"板车","code":"003","id":53,"number":"0007","remark":"","status":1,"tag":"jmsf","weight":333},{"autoPass":1,"autoSave":1,"carTypeName":"挂车","code":"gc","id":59,"number":"0030","remark":"","status":1,"tag":"jmsf","weight":1},{"autoPass":2,"carTypeName":"柜车","code":"23","id":60,"number":"0031","remark":"","status":1,"tag":"jmsf","weight":0},{"autoPass":1,"autoSave":1,"carTypeName":"地排车","code":"008","id":87,"number":"0001","remark":"","status":1,"tag":"jmsf","weight":2},{"autoPass":2,"autoSave":1,"carTypeName":"玉玺","code":"888","id":128,"number":"0042","remark":"","status":1,"tag":"jmsf","weight":0},{"autoPass":2,"carTypeName":"军车","code":"555","id":61,"number":"0013","remark":"","status":1,"tag":"jmsf","weight":0},{"autoPass":2,"carTypeName":"小面包","code":"","id":142,"number":"0008","remark":"","status":1,"tag":"jmsf","weight":22},{"autoPass":1,"autoSave":1,"carTypeName":"小轿车","code":"001","id":51,"number":"0002","remark":"","status":1,"tag":"jmsf","weight":0},{"autoPass":2,"carTypeName":"123456789012345","code":"1245","id":160,"number":"0044","remark":"","status":1,"tag":"jmsf","weight":11},{"autoPass":2,"carTypeName":"111111111222222","code":"6432","id":161,"number":"0045","remark":"","status":1,"tag":"jmsf","weight":22},{"autoPass":2,"autoSave":1,"carTypeName":"test0731","code":"12345","id":162,"number":"0047","remark":"asdf g hgsaf","status":1,"tag":"jmsf","weight":11}],"message":"OK","result":"OK","success":true} | ||
15 | -[2021-08-17 14:56:05] [INFO] : ====================================================================================== | ||
16 | -[2021-08-17 14:56:05] [INFO] : | ||
17 | -url: http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree | ||
18 | -参数: {"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"} | ||
19 | -其他参数: {} | ||
20 | -接口返回: {"code":"200","data":[{"id":2182,"name":"雪莲果","pingying":"xuelianguo","pyInitials":"xlg","parent":2157,"path":"1616,2157,2182,","cateLevel":3}],"message":"OK","result":"OK","success":true} | ||
21 | -[2021-08-17 14:56:05] [INFO] : ====================================================================================== | ||
22 | -[2021-08-17 14:56:05] [INFO] : | ||
23 | -url: http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api | ||
24 | -参数: {"firmCode": "sy", "departmentId": 58, "keyword": ""} | ||
25 | -其他参数: {} | ||
26 | -接口返回: {"code":"200","data":[{"cellphone":"15911112222","created":"2020-12-17 15:11:19","departmentId":58,"description":"阿SV法师法个都是对方","email":"ceshishenyang@diligrp.com","firmCode":"sy","gender":0,"id":223,"lastLoginTime":"2021-07-23 15:55:57","locked":"2021-06-02 14:03:19","metadata":{},"modified":"2021-07-13 15:56:44","password":"D283AA400AF464C76D","positionId":7,"realName":"测试沈阳","serialNumber":"000","state":1,"superiorId":338,"userName":"test_sy","userType":1},{"cellphone":"18615445545","created":"2020-12-21 10:05:19","departmentId":58,"email":"shenyangtangchuan@diligrp.com","firmCode":"sy","id":228,"lastLoginTime":"2021-08-17 11:19:26","metadata":{},"modified":"2021-07-13 15:56:44","password":"DABF2BB8F4A3D0AAE5","positionId":7,"realName":"沈阳唐川","serialNumber":"000","state":1,"superiorId":28,"userName":"sytangchuan","userType":1},{"cellphone":"13526262626","created":"2021-01-08 14:03:49","departmentId":58,"email":"tongyongceshi@diligrp.com","firmCode":"sy","id":274,"lastLoginTime":"2021-03-15 14:50:55","metadata":{},"modified":"2021-07-13 15:56:44","password":"0684F05029ABCCC09A","positionId":7,"realName":"通用测试","serialNumber":"000","state":1,"userName":"ty_test","userType":1},{"cellphone":"18712345678","created":"2021-03-17 11:14:42","departmentId":58,"email":"shenyangdagang@diligrp.com","firmCode":"sy","id":320,"lastLoginTime":"2021-08-17 10:00:41","metadata":{},"modified":"2021-07-13 15:56:44","password":"18965EB72C92A549DD","positionId":7,"realName":"沈阳大刚","serialNumber":"000","state":1,"userName":"sydagang","userType":1},{"cellphone":"18615445544","created":"2021-05-17 14:15:03","departmentId":58,"email":"shenyangtangchuansan@diligrp.com","firmCode":"sy","id":363,"metadata":{},"modified":"2021-07-13 15:56:44","password":"3949BA59ABBE56E057","positionId":7,"realName":"沈阳唐川三","serialNumber":"000","state":0,"userName":"sytangchuan3","userType":1}],"message":"OK","result":"OK","success":true} | ||
27 | -[2021-08-17 14:56:05] [INFO] : ====================================================================================== | ||
28 | -[2021-08-17 14:56:05] [INFO] : | ||
29 | -url: http://test.gateway.diligrp.com:8285/assets-service/api/tradeType/query | ||
30 | -参数: {"pageNum": 100, "pageSize": 100, "marketId": 9} | ||
31 | -其他参数: {} | ||
32 | -接口返回: {"page":1,"rows":[{"code":"9001","createdTime":"2021-03-08 16:06:31","creatorId":225,"creatorUser":"沈阳向","id":70,"marketId":9,"modifyTime":"2021-03-08 16:06:31","name":"沈阳1号","push":1},{"code":"9002","createdTime":"2021-03-09 14:02:16","creatorId":225,"creatorUser":"沈阳向","id":71,"marketId":9,"modifyTime":"2021-03-09 14:02:16","name":"沈阳2号","push":1,"scene":"[1, 2]"},{"code":"555","createdTime":"2021-03-10 14:43:34","creatorId":277,"creatorUser":"长歌六","id":73,"marketId":9,"modifyTime":"2021-03-10 14:43:34","name":"沈阳交易类型","push":1,"scene":"[1, 2, 3]"},{"code":"556","createdTime":"2021-06-08 17:54:43","creatorId":228,"creatorUser":"沈阳唐川","id":80,"marketId":9,"modifyTime":"2021-06-08 17:54:43","name":"test06082","push":1,"scene":"[1, 3]"}],"total":4} | ||
33 | -[2021-08-17 14:56:05] [INFO] : ====================================================================================== | ||
34 | -[2021-08-17 14:56:06] [INFO] : | ||
35 | -url: http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | ||
36 | -参数: None | ||
37 | -其他参数: {'params': {'pid': 'goods_tag'}} | ||
38 | -接口返回: {"code":"200","data":[{"code":"yjsp","created":"2020-06-11 16:45:52","ddCode":"goods_tag","firmCode":"sy","firmId":9,"id":663,"metadata":{},"modified":"2020-06-11 16:45:52","name":"有机食品","orderNumber":1,"state":1},{"code":"wu","created":"2021-03-16 17:06:19","ddCode":"goods_tag","firmCode":"sy","firmId":9,"id":1656,"metadata":{},"modified":"2021-03-16 17:06:19","name":"无","orderNumber":2,"state":1},{"code":"hwbqcs","created":"2021-05-17 16:29:41","ddCode":"goods_tag","firmCode":"sy","firmId":9,"id":1900,"metadata":{},"modified":"2021-05-17 16:29:41","name":"货物标签测试","orderNumber":3,"state":1}],"message":"OK","result":"OK","success":true} | ||
39 | -[2021-08-17 14:56:06] [INFO] : ====================================================================================== | ||
40 | -[2021-08-17 14:56:06] [INFO] : | ||
41 | -url: http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/address | ||
42 | -参数: {"province": "C", "city": null, "area": null} | ||
43 | -其他参数: {} | ||
44 | -接口返回: {"code":"200","data":[{"cityCode":"023","created":"2017-05-27 23:42:37","id":500101,"lat":"30.80788","levelType":3,"lng":"108.40869","mergerName":"重庆,重庆市,万州区","modified":"2017-06-15 12:42:55","name":"万州区","parentId":500100,"pinyin":"Wanzhou","shortName":"万州","shortPy":"WZ","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500102,"lat":"29.70292","levelType":3,"lng":"107.39007","mergerName":"重庆,重庆市,涪陵区","modified":"2017-06-15 12:42:55","name":"涪陵区","parentId":500100,"pinyin":"Fuling","shortName":"涪陵","shortPy":"FL","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500103,"lat":"29.55279","levelType":3,"lng":"106.56901","mergerName":"重庆,重庆市,渝中区","modified":"2017-06-15 12:42:55","name":"渝中区","parentId":500100,"pinyin":"Yuzhong","shortName":"渝中","shortPy":"YZ","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500104,"lat":"29.48447","levelType":3,"lng":"106.48262","mergerName":"重庆,重庆市,大渡口区","modified":"2017-06-15 12:42:55","name":"大渡口区","parentId":500100,"pinyin":"Dadukou","shortName":"大渡口","shortPy":"DDK","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500105,"lat":"29.60658","levelType":3,"lng":"106.57434","mergerName":"重庆,重庆市,江北区","modified":"2017-06-15 12:42:55","name":"江北区","parentId":500100,"pinyin":"Jiangbei","shortName":"江北","shortPy":"JB","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500106,"lat":"29.54113","levelType":3,"lng":"106.45752","mergerName":"重庆,重庆市,沙坪坝区","modified":"2017-06-15 12:42:55","name":"沙坪坝区","parentId":500100,"pinyin":"Shapingba","shortName":"沙坪坝","shortPy":"SPB","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500107,"lat":"29.50197","levelType":3,"lng":"106.51107","mergerName":"重庆,重庆市,九龙坡区","modified":"2017-06-15 12:42:55","name":"九龙坡区","parentId":500100,"pinyin":"Jiulongpo","shortName":"九龙坡","shortPy":"JLP","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500108,"lat":"29.52311","levelType":3,"lng":"106.56347","mergerName":"重庆,重庆市,南岸区","modified":"2017-06-15 12:42:55","name":"南岸区","parentId":500100,"pinyin":"Nan'an","shortName":"南岸","shortPy":"NA","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500109,"lat":"29.80574","levelType":3,"lng":"106.39614","mergerName":"重庆,重庆市,北碚区","modified":"2017-06-15 12:42:55","name":"北碚区","parentId":500100,"pinyin":"Beibei","shortName":"北碚","shortPy":"BB","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500110,"lat":"28.960656","levelType":3,"lng":"106.926779","mergerName":"重庆,重庆市,綦江区","modified":"2017-06-15 12:42:55","name":"綦江区","parentId":500100,"pinyin":"Qijiang","shortName":"綦江","shortPy":"QJ","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500111,"lat":"29.484025","levelType":3,"lng":"105.768121","mergerName":"重庆,重庆市,大足区","modified":"2017-06-15 12:42:55","name":"大足区","parentId":500100,"pinyin":"Dazu","shortName":"大足","shortPy":"DZ","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500112,"lat":"29.7182","levelType":3,"lng":"106.6307","mergerName":"重庆,重庆市,渝北区","modified":"2017-06-15 12:42:55","name":"渝北区","parentId":500100,"pinyin":"Yubei","shortName":"渝北","shortPy":"YB","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500113,"lat":"29.38311","levelType":3,"lng":"106.52365","mergerName":"重庆,重庆市,巴南区","modified":"2017-06-15 12:42:55","name":"巴南区","parentId":500100,"pinyin":"Banan","shortName":"巴南","shortPy":"BN","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500114,"lat":"29.5332","levelType":3,"lng":"108.7709","mergerName":"重庆,重庆市,黔江区","modified":"2017-06-15 12:42:55","name":"黔江区","parentId":500100,"pinyin":"Qianjiang","shortName":"黔江","shortPy":"QJ","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500115,"lat":"29.85359","levelType":3,"lng":"107.08166","mergerName":"重庆,重庆市,长寿区","modified":"2017-06-15 12:42:55","name":"长寿区","parentId":500100,"pinyin":"Changshou","shortName":"长寿","shortPy":"ZS","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500116,"lat":"29.29008","levelType":3,"lng":"106.25912","mergerName":"重庆,重庆市,江津区","modified":"2017-06-15 12:42:55","name":"江津区","parentId":500100,"pinyin":"Jiangjin","shortName":"江津","shortPy":"JJ","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500117,"lat":"29.97227","levelType":3,"lng":"106.27633","mergerName":"重庆,重庆市,合川区","modified":"2017-06-15 12:42:55","name":"合川区","parentId":500100,"pinyin":"Hechuan","shortName":"合川","shortPy":"HC","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500118,"lat":"29.35593","levelType":3,"lng":"105.927","mergerName":"重庆,重庆市,永川区","modified":"2017-06-15 12:42:55","name":"永川区","parentId":500100,"pinyin":"Yongchuan","shortName":"永川","shortPy":"YC","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500119,"lat":"29.15751","levelType":3,"lng":"107.09936","mergerName":"重庆,重庆市,南川区","modified":"2017-06-15 12:42:56","name":"南川区","parentId":500100,"pinyin":"Nanchuan","shortName":"南川","shortPy":"NC","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500120,"lat":"29.593581","levelType":3,"lng":"106.231126","mergerName":"重庆,重庆市,璧山区","modified":"2017-06-15 12:42:56","name":"璧山区","parentId":500100,"pinyin":"Bishan","shortName":"璧山","shortPy":"BS","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500151,"lat":"29.839944","levelType":3,"lng":"106.054948","mergerName":"重庆,重庆市,铜梁区","modified":"2017-06-15 12:42:56","name":"铜梁区","parentId":500100,"pinyin":"Tongliang","shortName":"铜梁","shortPy":"TL","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500223,"lat":"30.1912","levelType":3,"lng":"105.84005","mergerName":"重庆,重庆市,潼南县","modified":"2017-06-15 12:42:56","name":"潼南县","parentId":500100,"pinyin":"Tongnan","shortName":"潼南","shortPy":"TN","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500226,"lat":"29.40488","levelType":3,"lng":"105.59442","mergerName":"重庆,重庆市,荣昌县","modified":"2017-06-15 12:42:56","name":"荣昌县","parentId":500100,"pinyin":"Rongchang","shortName":"荣昌","shortPy":"RC","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500228,"lat":"30.67545","levelType":3,"lng":"107.79998","mergerName":"重庆,重庆市,梁平县","modified":"2017-06-15 12:42:56","name":"梁平县","parentId":500100,"pinyin":"Liangping","shortName":"梁平","shortPy":"LP","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500229,"lat":"31.94801","levelType":3,"lng":"108.66513","mergerName":"重庆,重庆市,城口县","modified":"2017-06-15 12:42:56","name":"城口县","parentId":500100,"pinyin":"Chengkou","shortName":"城口","shortPy":"CK","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500230,"lat":"29.86348","levelType":3,"lng":"107.73098","mergerName":"重庆,重庆市,丰都县","modified":"2017-06-15 12:42:56","name":"丰都县","parentId":500100,"pinyin":"Fengdu","shortName":"丰都","shortPy":"FD","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500231,"lat":"30.33359","levelType":3,"lng":"107.35446","mergerName":"重庆,重庆市,垫江县","modified":"2017-06-15 12:42:56","name":"垫江县","parentId":500100,"pinyin":"Dianjiang","shortName":"垫江","shortPy":"DJ","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500232,"lat":"29.32548","levelType":3,"lng":"107.7601","mergerName":"重庆,重庆市,武隆县","modified":"2017-06-15 12:42:56","name":"武隆县","parentId":500100,"pinyin":"Wulong","shortName":"武隆","shortPy":"WL","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500233,"lat":"30.28898","levelType":3,"lng":"108.03689","mergerName":"重庆,重庆市,忠县","modified":"2017-06-15 12:42:56","name":"忠县","parentId":500100,"pinyin":"Zhongxian","shortName":"忠县","shortPy":"ZX","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500234,"lat":"31.16095","levelType":3,"lng":"108.39306","mergerName":"重庆,重庆市,开县","modified":"2017-06-15 12:42:56","name":"开县","parentId":500100,"pinyin":"Kaixian","shortName":"开县","shortPy":"KX","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500235,"lat":"30.93062","levelType":3,"lng":"108.69726","mergerName":"重庆,重庆市,云阳县","modified":"2017-06-15 12:42:56","name":"云阳县","parentId":500100,"pinyin":"Yunyang","shortName":"云阳","shortPy":"YY","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500236,"lat":"31.01825","levelType":3,"lng":"109.46478","mergerName":"重庆,重庆市,奉节县","modified":"2017-06-15 12:42:56","name":"奉节县","parentId":500100,"pinyin":"Fengjie","shortName":"奉节","shortPy":"FJ","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500237,"lat":"31.07458","levelType":3,"lng":"109.87814","mergerName":"重庆,重庆市,巫山县","modified":"2017-06-15 12:42:56","name":"巫山县","parentId":500100,"pinyin":"Wushan","shortName":"巫山","shortPy":"WS","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500238,"lat":"31.39756","levelType":3,"lng":"109.63128","mergerName":"重庆,重庆市,巫溪县","modified":"2017-06-15 12:42:56","name":"巫溪县","parentId":500100,"pinyin":"Wuxi","shortName":"巫溪","shortPy":"WX","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500240,"lat":"30.00054","levelType":3,"lng":"108.11389","mergerName":"重庆,重庆市,石柱土家族自治县","modified":"2017-06-15 12:42:56","name":"石柱土家族自治县","parentId":500100,"pinyin":"Shizhu","shortName":"石柱","shortPy":"SZ","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500241,"lat":"28.45062","levelType":3,"lng":"108.98861","mergerName":"重庆,重庆市,秀山土家族苗族自治县","modified":"2017-06-15 12:42:56","name":"秀山土家族苗族自治县","parentId":500100,"pinyin":"Xiushan","shortName":"秀山","shortPy":"XS","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500242,"lat":"28.8446","levelType":3,"lng":"108.77212","mergerName":"重庆,重庆市,酉阳土家族苗族自治县","modified":"2017-06-15 12:42:56","name":"酉阳土家族苗族自治县","parentId":500100,"pinyin":"Youyang","shortName":"酉阳","shortPy":"YY","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500243,"lat":"29.29516","levelType":3,"lng":"108.16638","mergerName":"重庆,重庆市,彭水苗族土家族自治县","modified":"2017-06-15 12:42:56","name":"彭水苗族土家族自治县","parentId":500100,"pinyin":"Pengshui","shortName":"彭水","shortPy":"PS","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500301,"lat":"29.667062","levelType":3,"lng":"106.488841","mergerName":"重庆,两江新区,北部新区","modified":"2017-06-15 12:42:56","name":"北部新区","parentId":500300,"pinyin":"Beibuxinqu","shortName":"北部新区","shortPy":"BBXQ","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500302,"lat":"29.716311","levelType":3,"lng":"106.638184","mergerName":"重庆,两江新区,保税港区","modified":"2017-06-15 12:42:56","name":"保税港区","parentId":500300,"pinyin":"Baoshuigangqu","shortName":"保税港区","shortPy":"BSGQ","yn":true},{"cityCode":"023","created":"2017-05-27 23:42:37","id":500303,"lat":"29.55554","levelType":3,"lng":"106.626434","mergerName":"重庆,两江新区,工业园区","modified":"2017-06-15 12:42:56","name":"工业园区","parentId":500300,"pinyin":"Gongyeyuanqu","shortName":"工业园区","shortPy":"GYYQ","yn":true}],"message":"OK","result":"OK","success":true} | ||
45 | -[2021-08-17 14:56:06] [INFO] : ====================================================================================== | ||
46 | -[2021-08-17 14:56:06] [INFO] : | ||
47 | -url: http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep | ||
48 | -参数: None | ||
49 | -其他参数: {'params': {'keyword': ''}} | ||
50 | -接口返回: {"code":"200","data":[{"code":"sy-58","created":"2020-06-30 15:59:29","departmentType":1,"firmCode":"sy","id":58,"metadata":{},"modified":"2021-03-09 10:21:29","name":"水果部"},{"code":"sy-103","created":"2020-12-17 15:20:55","departmentType":1,"firmCode":"sy","id":103,"metadata":{},"modified":"2021-03-09 10:21:33","name":"接车部"},{"code":"sy-105","created":"2020-12-17 15:42:29","departmentType":1,"firmCode":"sy","id":105,"metadata":{},"modified":"2021-03-22 16:07:29","name":"冷库部"},{"code":"sy-113","created":"2020-12-29 11:28:21","departmentType":1,"firmCode":"sy","id":113,"metadata":{},"modified":"2021-03-09 10:21:40","name":"精品黄楼"},{"code":"sy-114","created":"2020-12-29 11:28:35","departmentType":1,"firmCode":"sy","id":114,"metadata":{},"modified":"2021-03-09 10:21:45","name":"精品黄楼无档口"},{"code":"sy-118","created":"2021-01-04 10:51:03","departmentType":1,"firmCode":"sy","id":118,"metadata":{},"modified":"2021-03-09 10:21:51","name":"经营部"},{"code":"sy-122","created":"2021-01-08 10:35:38","departmentType":1,"firmCode":"sy","id":122,"metadata":{},"modified":"2021-03-09 10:21:55","name":"检测部"},{"code":"sy-127","created":"2021-02-02 14:59:30","departmentType":1,"firmCode":"sy","id":127,"metadata":{},"modified":"2021-03-09 10:21:20","name":"业务部"},{"code":"sy-139","created":"2021-03-09 17:02:30","departmentType":1,"firmCode":"sy","id":139,"metadata":{},"modified":"2021-03-09 17:02:30","name":"经营三部"},{"code":"sy-145","created":"2021-03-10 11:23:24","departmentType":1,"firmCode":"sy","id":145,"metadata":{},"modified":"2021-03-10 11:23:24","name":"test"},{"code":"sy-156","created":"2021-05-10 10:18:45","departmentType":1,"firmCode":"sy","id":156,"metadata":{},"modified":"2021-05-10 10:18:45","name":"经营管理部"},{"code":"sy-157","created":"2021-05-10 10:19:03","departmentType":1,"firmCode":"sy","id":157,"metadata":{},"modified":"2021-05-10 10:19:03","name":"小食品","parentId":156}],"message":"OK","result":"OK","success":true} | ||
51 | -[2021-08-17 14:56:06] [INFO] : ====================================================================================== | ||
52 | -[2021-08-17 14:56:07] [INFO] : | ||
53 | -url: http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | ||
54 | -参数: None | ||
55 | -其他参数: {'params': {'pid': 'prove_type'}} | ||
56 | -接口返回: {"code":"200","data":[{"code":"spaq","created":"2020-06-11 16:47:17","ddCode":"prove_type","firmCode":"sy","firmId":9,"id":665,"metadata":{},"modified":"2020-06-11 16:47:17","name":"食品安全","orderNumber":1,"state":1},{"code":"lssc","created":"2021-02-20 10:27:20","ddCode":"prove_type","firmCode":"sy","firmId":9,"id":1621,"metadata":{},"modified":"2021-02-20 10:27:20","name":"绿色蔬菜","orderNumber":2,"state":1},{"code":"wu","created":"2021-03-16 17:05:52","ddCode":"prove_type","firmCode":"sy","firmId":9,"id":1655,"metadata":{},"modified":"2021-03-16 17:05:52","name":"无","orderNumber":2,"state":1},{"code":"jczm","created":"2021-04-28 16:33:06","ddCode":"prove_type","firmCode":"sy","firmId":9,"id":1894,"metadata":{},"modified":"2021-04-28 16:33:06","name":"jai检测证明","orderNumber":2,"state":1},{"code":"cdzm","created":"2021-04-28 16:55:25","ddCode":"prove_type","firmCode":"sy","firmId":9,"id":1895,"metadata":{},"modified":"2021-04-28 16:55:25","name":"产地证明","orderNumber":2,"state":1}],"message":"OK","result":"OK","success":true} | ||
57 | -[2021-08-17 14:56:07] [INFO] : ====================================================================================== | ||
58 | -[2021-08-17 14:56:07] [INFO] : | ||
59 | -url: http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action | ||
60 | -参数: None | ||
61 | -其他参数: {} | ||
62 | -接口返回: {"code":"200","data":"ad315051ea0c4f4aae5a8cff58cbdae7","message":"OK","result":"OK","success":true} | ||
63 | -[2021-08-17 14:56:07] [INFO] : ====================================================================================== | ||
64 | -[2021-08-17 14:56:08] [INFO] : | ||
65 | -url: http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/sparePartsWeighSave | ||
66 | -参数: {"driverTel": "", "inGreeterId": 223, "inGreeterName": "\u6d4b\u8bd5\u6c88\u9633", "itemWeight": 11, "productId": 2182, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 665, "proveTypeName": "\u98df\u54c1\u5b89\u5168", "qty": 33, "weighRemark": null, "weight": 220, "weighmanRecord": {"grossWeight": null, "grossWeightDate": null, "newWeight": null, "tareWeight": null, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "plate": "\u5dddA74354", "carTypeId": 53, "carTypeCode": "003", "carTypeName": "\u677f\u8f66", "pathAddress": "A4-BB-6D-0A-F4-13", "entryPlateInputType": 1, "feeDepId": 0, "feeDepName": null, "dep": 58, "depName": "\u6c34\u679c\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": "\u5dddA74354", "cateId": 2182, "productState": "1"} | ||
67 | -其他参数: {} | ||
68 | -接口返回: {"code":"200","data":{"carTypeCode":"003","carTypeId":53,"carTypeName":"板车","codeId":0,"created":"2021-08-17 14:56:08","driverTel":"","id":4379,"inGreeterId":223,"inGreeterName":"测试沈阳","itemWeight":11,"number":"202108170900063","operatorId":230,"operatorName":"沈阳长歌","plate":"川A74354","productId":2182,"productName":"雪莲果","proveTypeCode":665,"proveTypeName":"食品安全","qty":33,"weighmanRecord":{"weighImgs":[]}},"message":"提交成功","result":"提交成功","success":true} | ||
69 | -[2021-08-17 14:56:08] [INFO] : ====================================================================================== | ||
70 | -[2021-08-17 14:56:08] [INFO] : | ||
71 | -url: http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action | ||
72 | -参数: {'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': '202108170900063'} | ||
73 | -其他参数: {} | ||
74 | -接口返回: {"rows":[{"$_status":2,"plate":"川A74354","type":"散件","productName":"雪莲果","number":"202108170900063","operatorTime":1629183368000,"id":4379,"paymentTime":"","totalPriceText":"0","canPrint":false,"carTypeName":"板车","created":"2021-08-17 14:56:08","weight":220,"$_type":2,"backSkinStatus":-1,"depName":"水果部","tags":"有机食品","feeDepId":0,"grossWeight":0,"tradeTypeName":"沈阳1号","statusText":"待交费","typeText":"散件","tareWeight":0,"status":"待交费"}],"total":1} | ||
75 | -[2021-08-17 14:56:08] [INFO] : ====================================================================================== | ||
76 | -[2021-08-17 14:56:09] [INFO] : | ||
77 | -url: http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/4379.action | ||
78 | -参数: None | ||
79 | -其他参数: {} | ||
80 | -接口返回: <!doctype html> | ||
81 | -<html lang="zh-ch"> | ||
82 | -<head> | ||
83 | - <!-- Required meta tags --> | ||
84 | - <meta charset="utf-8"> | ||
85 | - <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
86 | - <!-- Bootstrap CSS --> | ||
87 | - <link rel="stylesheet" href="/resources/bui/lib/bootstrap-4.4.1-dist/css/bootstrap.min.css" > | ||
88 | - <link rel="stylesheet" href="/resources/bui/lib/font-awesome-4.7.0/css/font-awesome.min.css"> | ||
89 | - <link rel="stylesheet" href="/resources/bui/lib/bootstrap4pop/css/bs4.pop.css"> | ||
90 | - <link rel="stylesheet" href="/resources/bui/lib/bootstrap-table/dist/bootstrap-table.min.css"/> | ||
91 | - <link rel="stylesheet" href="/resources/bui/lib/select2-4.0.13/dist/css/select2.min.css"/> | ||
92 | - <link rel="stylesheet" href="/resources/bui/css/common.css"> | ||
93 | - <script src="/resources/bui/lib/jquery/jquery-3.2.1.min.js"></script> | ||
94 | - <script src="/resources/bui/js/datetimer.js"></script> | ||
95 | - <title>bui</title> | ||
96 | - <script> | ||
97 | - let loggerContextPath = 'http://test.logger.diligrp.com:8283'; | ||
98 | - $(function () { $(document).on("change", "input[type=text]:not(:disabled), textarea:not(:disabled)", function () { $(this).val($.trim($(this).val())) }) }) | ||
99 | - // 全局登陆超时拦截 | ||
100 | - $.ajaxSetup({ | ||
101 | - statusCode: { | ||
102 | - 401: function() { | ||
103 | - bs4pop.alert('登陆超时', {type: 'error', closeBtn: false}, function () { | ||
104 | - window.top.postMessage('toLogin','http://test.uap.diligrp.com'); | ||
105 | - }); | ||
106 | - } | ||
107 | - } | ||
108 | - }); | ||
109 | - </script> | ||
110 | -</head> | ||
111 | -<body> | ||
112 | - | ||
113 | -<style> | ||
114 | - .container-fluid { | ||
115 | - font-weight: 700; | ||
116 | - } | ||
117 | - | ||
118 | - .container-fluid, | ||
119 | - .form-control, | ||
120 | - .btn, | ||
121 | - .input-group-text { | ||
122 | - font-size: 18px; | ||
123 | - } | ||
124 | - .freezePriceError{ | ||
125 | - width: 100%; | ||
126 | - margin-top: .25rem; | ||
127 | - font-size: 80%; | ||
128 | - color: #dc3545; | ||
129 | - } | ||
130 | -</style> | ||
131 | -<!-- main-container start --> | ||
132 | -<div class="container-fluid"> | ||
133 | - <form class="form-search form-add" role="form" id="feeForm" targetId="4379"> | ||
134 | - <input type="hidden" name="protocolId" id="protocolId" value=""> | ||
135 | - <input type="hidden" name="pwd" value="" id="pwd"> | ||
136 | - <input type="hidden" id="clientRedirectTag" name="clientRedirectTag" value=""> | ||
137 | - <input type="hidden" id="viewType" name="viewType" value="pay"> | ||
138 | - <input type="hidden" id="optType" name="optType" value="0"> | ||
139 | - <input type="hidden" id="optUrl" name="optUrl" value=""> | ||
140 | - <input type="hidden" id="correctInfo" name="correctInfo" value="1"> | ||
141 | - | ||
142 | - <input type="hidden" name="weightType" id="weightType" value="2"> | ||
143 | - <input type="hidden" name="id" id="idFee" value="4379"> | ||
144 | - <input type="hidden" name="goodsId" id="goodsId" value="4393"> | ||
145 | - <input type="hidden" name="number" id="number" value="202108170900063"> | ||
146 | - <input type="hidden" id="modified" name="modified" value="2021-08-17 14:56:08"> | ||
147 | - <input type="hidden" id="status" name="status" value="2"> | ||
148 | - | ||
149 | - <input type="hidden" id="operatorName" value="沈阳长歌"> | ||
150 | - <input type="hidden" id="tollName" value=""> | ||
151 | - <input type="hidden" id="source" name="source" value="1"> | ||
152 | - <input type="hidden" id="updateFeeItems" name="updateFeeItems" value=""> | ||
153 | - <input type="hidden" id="correctDiscount" name="correctDiscount" value="1"> | ||
154 | - <input type="hidden" id="market_short" value="$!codeUtil.getByDdNotes(8000)"> | ||
155 | - | ||
156 | - <h5 class="row row-cols-6 red ml-2"> | ||
157 | - <strong class="fz16">车号川A74354</strong> | ||
158 | - <strong class="fz16">收费单号202108170900063</strong> | ||
159 | - <strong class="fz16">总金额<span id="totalAmountSymbol" class="bold"></span></strong> | ||
160 | - <input type="hidden" name="totalAmount" id="totalAmount"> | ||
161 | - <input type="hidden" name="" id="totalAmountYuan"> | ||
162 | - </h5> | ||
163 | - <div class="breadcrumb"> | ||
164 | - 基础信息 | ||
165 | - <a href="javascript:;" class="ml-auto" data-toggle="collapse" data-target="#baseInfo" | ||
166 | - aria-expanded="true" aria-controls="baseInfo">收起 <i class="fa fa-angle-double-up" | ||
167 | - aria-hidden="true"></i></a> | ||
168 | - </div> | ||
169 | - <div class="row row-cols-6 collapse show form-group-wrap" id="baseInfo"> | ||
170 | - <div class="form-group col-4"> | ||
171 | - <label class=" text-primary">客户卡号∗</label> | ||
172 | - <input type="hidden" name="customerId" value="" id="customerId"> | ||
173 | - <input type="hidden" name="fundAccount" value="" id="fundAccount"> | ||
174 | - <input type="hidden" name="accountId" value="" id="accountId"> | ||
175 | - <div class="input-group"> | ||
176 | - <input type="text" class="form-control " name="ic" id="ic" maxlength="14" value="" title="" onkeyup="onKeyUpEnter(event)" required> | ||
177 | - <div class="input-group-prepend"> | ||
178 | - <span class="input-group-text card-btn text-primary getidcard" id="icReader"><a href="javascript:;">园区卡</a></span> | ||
179 | - </div> | ||
180 | - <span class="input-group-text card-btn red getidcard" id="bankReader"><a href="javascript:;">银行卡</a></span> | ||
181 | - </div> | ||
182 | - </div> | ||
183 | - <div class="form-group col"> | ||
184 | - <label>客户姓名</label> | ||
185 | - <input type="text" name="customerName" id="customerName" class="form-control" readonly value=""> | ||
186 | - </div> | ||
187 | - <div class="form-group col"> | ||
188 | - <label>手机号码</label> | ||
189 | - <input type="text" name="customerPhone" id="customerPhone" class="form-control " readonly | ||
190 | - value=""> | ||
191 | - </div> | ||
192 | - <div class="form-group col"> | ||
193 | - <label>卡余额</label> | ||
194 | - <input type="text" class="form-control red bold fz17" value="" | ||
195 | - title="" id="balance" size="11" readonly> | ||
196 | - </div> | ||
197 | - | ||
198 | - <div class="form-group col red"> | ||
199 | - <label class="text-right ">支付方式</label> | ||
200 | - <input type="text" name="payway" class="form-control" readonly value="刷卡"> | ||
201 | - </div> | ||
202 | - | ||
203 | - <div class="form-group col"> | ||
204 | - <label>车号</label> | ||
205 | - <input type="text" name="plate" class="form-control" value="川A74354" id="plate"> | ||
206 | - </div> | ||
207 | - <div class="form-group col"> | ||
208 | - <label>挂号</label> | ||
209 | - <input type="text" class="form-control" id="trailerNumber" value=""> | ||
210 | - </div> | ||
211 | - | ||
212 | - <div class="form-group col"> | ||
213 | - <label class="text-right text-primary" tlog>车型*</label> | ||
214 | - <input type="text" tlog class="form-control" name="autocomplete-cartype" value="003(板车)" /> | ||
215 | - <input type="hidden" name="carTypeName" id="carTypeName" value="板车" /> | ||
216 | - <input type="hidden" name="carTypeCode" id="carTypeCode" value="003" /> | ||
217 | - <input type="hidden" name="carTypeId" id="carTypeId" value="53" /> | ||
218 | - <label class="error defi-error red" id="autocomplete-cartype-error"></label> | ||
219 | - </div> | ||
220 | - <div class="form-group col"> | ||
221 | - <label>车型自重</label> | ||
222 | - <input type="text" class="form-control" name="carTypeWeight" readonly id="ctypew" | ||
223 | - value=""> | ||
224 | - </div> | ||
225 | - <div class="form-group col"> | ||
226 | - <label>存皮重量</label> | ||
227 | - <input type="text" class="form-control" name="storeTareWeight" readonly value=""> | ||
228 | - </div> | ||
229 | - <div class="form-group col"> | ||
230 | - <label>证明类型</label> | ||
231 | - <input type="hidden" class="form-control" readonly value="665" id="proveType" name="proveType"> | ||
232 | - <input type="text" class="form-control" readonly value="食品安全" id="proveTypeName"> | ||
233 | - | ||
234 | - </div> | ||
235 | - <div class="form-group col text-primary"> | ||
236 | - <label tlog>毛重</label> | ||
237 | - <input type="text" tlog class="form-control" name="grossWeight" id="grossWeight" value="0" readonly > | ||
238 | - <label class="error defi-error" id="grossWeighterror"></label> | ||
239 | - </div> | ||
240 | - <div class="form-group col"> | ||
241 | - <label tlog>皮重 </label> | ||
242 | - <input type="text" class="form-control" name="tareWeight" id="tareWeight" value="0" readonly > | ||
243 | - <label class="error defi-error red" id="tareWeighterror"></label> | ||
244 | - </div> | ||
245 | - <div class="form-group col"> | ||
246 | - <label tlog>净重</label> | ||
247 | - <input type="text" class="form-control " readonly name="weight" readonly value="220" id="weight"> | ||
248 | - </div> | ||
249 | - <div class="form-group col"> | ||
250 | - <label tlog>件数 ∗ </label> | ||
251 | - <input type="text" class="form-control isInt" range="0 999999" name="goodsNum" id="goodsNum" value="33" required > | ||
252 | - </div> | ||
253 | - <div class="form-group col"> | ||
254 | - <label tlog>件重 ∗ </label> | ||
255 | - <input type="text" class="form-control isInt" range="0 999999" name="itemWeight" | ||
256 | - id="itemWeight" value="11" required > | ||
257 | - </div> | ||
258 | - <div class="form-group col text-primary"> | ||
259 | - <label>单价</label> | ||
260 | - <input type="text" class="form-control" readonly value="1.00000" name="productPrice"id="unitPriceSymbol"> | ||
261 | - <input type="hidden" name="unitPrice" value="100.0" id="unitPrice"> | ||
262 | - </div> | ||
263 | - <!--hr ----> | ||
264 | - <div class="form-group col"> | ||
265 | - <label>接车部门∗</label> | ||
266 | - <input type="hidden" id="depName" name="depName" value="水果部"> | ||
267 | - <input type="hidden" name="calcDepId" value="58"> | ||
268 | - | ||
269 | - <select id="dep" name="dep" class="form-control" ></select> | ||
270 | -<script> | ||
271 | - $(function () { | ||
272 | - //_logTable 动态标签元素计数器 | ||
273 | - let $table = $('#dep').parents('[_logTable]'); | ||
274 | - if(typeof(Log) !== 'undefined' && $table.length > 0){ | ||
275 | - if(typeof(Log.tableItemTagCount) == 'undefined'){ | ||
276 | - Log.tableItemTagCount = 0; | ||
277 | - } | ||
278 | - ++Log.tableItemTagCount; | ||
279 | - } | ||
280 | - | ||
281 | - let option = $.extend( | ||
282 | - {}, | ||
283 | - {} | ||
284 | - ); | ||
285 | - $.ajax($.extend(true,{ | ||
286 | - type: "post", | ||
287 | - url: '/provider/getLookupList.action', | ||
288 | - data: { | ||
289 | - provider: 'departmentProvider', | ||
290 | - queryParams: '{emptyText:"请选择",required:"true"}' | ||
291 | - }, | ||
292 | - dataType: "json", | ||
293 | - success: function (result) { | ||
294 | - let data; | ||
295 | - if(result instanceof Array){ | ||
296 | - data = result; | ||
297 | - }else if (typeof (result) == 'object') { | ||
298 | - if(result.success){ | ||
299 | - data = result.data; | ||
300 | - }else{ | ||
301 | - bs4pop.alert(result.message, {type: 'error'}); | ||
302 | - return; | ||
303 | - } | ||
304 | - } | ||
305 | - | ||
306 | - $.map(data, function (dataItem) { | ||
307 | - $('#dep').append(template('optionItem', $.extend(dataItem, { | ||
308 | - selected: '58' == dataItem.value + '', | ||
309 | - value:dataItem["value"], | ||
310 | - text:dataItem["text"] | ||
311 | - }))); | ||
312 | - }); | ||
313 | - | ||
314 | - | ||
315 | - option.onLoadSuccess && option.onLoadSuccess(data); | ||
316 | - }, | ||
317 | - error: function () { | ||
318 | - console.log('数据接口异常'); | ||
319 | - } | ||
320 | - },option)); | ||
321 | - }) | ||
322 | -</script> | ||
323 | - | ||
324 | - </div> | ||
325 | - <div class="form-group col-4"> | ||
326 | - <label tlog>货区∗</label> | ||
327 | - | ||
328 | - <input type="hidden" id="regionName" name="regionName" value="" > | ||
329 | - <div class="input-group"> | ||
330 | - <input type="text" class="form-control district-no" value=""> | ||
331 | - <select name="regionId" class="form-control district-name" required tlog id="district" autocomplete='off'> | ||
332 | - <option value="0">--请选择--</option> | ||
333 | - <option value="72" bind-name="A1区" bind-index="001" >001|A1区</option> | ||
334 | - <option value="74" bind-name="C1区" bind-index="003" >003|C1区</option> | ||
335 | - <option value="88" bind-name="区域1221" bind-index="1221" >1221|区域1221</option> | ||
336 | - <option value="94" bind-name="WAA" bind-index="9003" >9003|WAA</option> | ||
337 | - <option value="108" bind-name="唐川区域01" bind-index="1223" >1223|唐川区域01</option> | ||
338 | - <option value="111" bind-name="唐区域02" bind-index="3223" >3223|唐区域02</option> | ||
339 | - <option value="124" bind-name="南区" bind-index="5555" >5555|南区</option> | ||
340 | - <option value="171" bind-name="唐区域04" bind-index="3202" >3202|唐区域04</option> | ||
341 | - <option value="206" bind-name="区域0325" bind-index="0325" >0325|区域0325</option> | ||
342 | - <option value="211" bind-name="区域0402" bind-index="0402" >0402|区域0402</option> | ||
343 | - <option value="240" bind-name="A1yfc区域1" bind-index="A1yf" >A1yf|A1yfc区域1</option> | ||
344 | - <option value="247" bind-name="区域0617" bind-index="0617" >0617|区域0617</option> | ||
345 | - </select> | ||
346 | - </div> | ||
347 | - | ||
348 | - </div> | ||
349 | - <div class="form-group col text-primary"> | ||
350 | - <label tlog>商品*</label> | ||
351 | - | ||
352 | - <input type="text" tlog required class="form-control" readonly name="productName" value="雪莲果"> | ||
353 | - <input type="hidden" name="productId" id="productId" value="2182"> | ||
354 | - </div> | ||
355 | - <div class="form-group col"> | ||
356 | - <label>货物产地∗</label> | ||
357 | - <input type="text" name="productArea" id="productArea" class="form-control" value="重庆,重庆市,万州区"required /> | ||
358 | - <label class="error defi-error"></label> | ||
359 | - <input type="hidden" name="parentId" id="parentId" value=""> | ||
360 | - <input type="hidden" name="levelType" id="levelType" value=""> | ||
361 | - <input type="hidden" name="originId" id="originId" value="500101"> | ||
362 | - </div> | ||
363 | - <div> | ||
364 | - <label>交易类型</label> | ||
365 | - | ||
366 | - | ||
367 | - <input type="text" class="form-control" readonly value="沈阳1号" > | ||
368 | - <input type="hidden" class="form-control" name="tradeTypeId" value="70" > | ||
369 | - </div> | ||
370 | - <div class="form-group col"> | ||
371 | - <label>有无摊位</label> | ||
372 | - <input type="text" class="form-control" readonly value="无" id="goodsAllocation"> | ||
373 | - </div> | ||
374 | - <!--hr---> | ||
375 | - <div class="form-group col"> | ||
376 | - <label>收费总额</label> | ||
377 | - <div class="input-group"> | ||
378 | - <input type="text" id="chargeTotalAmountSymbol" class="form-control red bold fz17" size="11" | ||
379 | - readonly value="434.00"> | ||
380 | - <input type="hidden" id="chargeTotalAmount" name="chargeTotalAmount"> | ||
381 | - <input type="hidden" id="chargeTotalAmountYuan" name="chargeTotalAmountYuan"> | ||
382 | - <div class="input-group-prepend" id="cal"> | ||
383 | - <span class="input-group-text calculate text-primary font-weight-bold"><a href="javascript:;" >计算</a></span> | ||
384 | - </div> | ||
385 | - | ||
386 | - </div> | ||
387 | - </div> | ||
388 | - <div class="form-group col"> | ||
389 | - <input type="hidden" id="printViewYuan" value="0"> | ||
390 | - <input type="hidden" id="printViewSymbol" value="0"> | ||
391 | - <label>冻结金额*</label> | ||
392 | - <input name="freezeMoneySymbol" type="text" id="freezeMoneySymbol" class="form-control red bold fz17 isIntRMB" required value=""> | ||
393 | - <input type="hidden" id="freezePriceVal" name="comparisonFreezeAmount"> | ||
394 | - <label class="freezePriceError" id="freezePriceError"></label> | ||
395 | - </div> | ||
396 | - <div class="form-group col"> | ||
397 | - <label>状态</label> | ||
398 | - <input type="text" class="form-control" name="" readonly id="" value="待交费"> | ||
399 | - </div> | ||
400 | - <div class="form-group col"> | ||
401 | - <label>进场时间</label> | ||
402 | - <input type="text" class="form-control" readonly name="created" | ||
403 | - value="2021-08-17 14:56:08"> | ||
404 | - </div> | ||
405 | - <div class="form-group col"> | ||
406 | - <label>收费时间</label> | ||
407 | - <input type="text" class="form-control" name="" readonly value=""> | ||
408 | - </div> | ||
409 | - <!--hr---> | ||
410 | - <div class="form-group col"> | ||
411 | - <label>收费员</label> | ||
412 | - <input type="text" class="form-control" name="" readonly value=""> | ||
413 | - </div> | ||
414 | - <div class="form-group col"> | ||
415 | - <label>二次回皮</label> | ||
416 | - | ||
417 | - <input type="text" class="form-control" readonly value="否"> | ||
418 | - | ||
419 | - </div> | ||
420 | - <div class="form-group col"> | ||
421 | - <label>持卡人</label> | ||
422 | - <input type="text" class="form-control" name="" readonly value=""> | ||
423 | - </div> | ||
424 | - <div class="form-group col"> | ||
425 | - <label>持卡人电话</label> | ||
426 | - <input type="text" class="form-control" name="" readonly value=""> | ||
427 | - </div> | ||
428 | - <div class="form-group col-4"> | ||
429 | - <label tlog>备注</label> | ||
430 | - <textarea class="form-control" id="remark" cols="30" rows="1" tlog maxlength="50" name="remark" | ||
431 | - title=""></textarea> | ||
432 | - </div> | ||
433 | - <!--hr---> | ||
434 | - <div class="col-12"> | ||
435 | - <label>货物标签</label> | ||
436 | - <input type="hidden" id="tags" value="有机食品"> | ||
437 | - | ||
438 | - | ||
439 | - | ||
440 | - <div class="checkbox goods-tags"> | ||
441 | - <label ><input name="goodsTagIds" type="radio" value="663" readonly checked>有机食品</label> | ||
442 | - <label >无 </label> | ||
443 | - <label >货物标签测试 </label> | ||
444 | - </div> | ||
445 | - | ||
446 | - | ||
447 | - | ||
448 | - | ||
449 | - </div> | ||
450 | - | ||
451 | - | ||
452 | - </div> | ||
453 | - <!--hr---> | ||
454 | - <div class="breadcrumb"> | ||
455 | - 装卸费用 | ||
456 | - <a href="javascript:;" class="ml-auto" data-toggle="collapse" data-target="#steveInfo" | ||
457 | - aria-expanded="true" aria-controls="steveInfo">收起 <i class="fa fa-angle-double-up" | ||
458 | - aria-hidden="true"></i></a> | ||
459 | - </div> | ||
460 | - <div class="row row-cols-6 collapse show form-group-wrap" id="steveInfo"> | ||
461 | - <div class="form-group col text-primary"> | ||
462 | - <label>装卸队</label> | ||
463 | - <input type="hidden" id="shareRatioVal" name="shareRatio" value="0"> | ||
464 | - <input type="hidden" id="handlingTeam" name="handlingTeam" value=""> | ||
465 | - <input type="hidden" id="steveTeamId" value=""> | ||
466 | - <select name="handlingTeamId" id="steveTeams" class="form-control"></select> | ||
467 | - | ||
468 | - <input type="hidden" id="steveTeamIdSelect" value="1"> | ||
469 | - <label class="steveTeamIdError" id="steveTeamIdError"></label> | ||
470 | - </div> | ||
471 | - <div class="form-group col text-primary"> | ||
472 | - <label>卸货比例</label> | ||
473 | - <input type="hidden" id="handlingRatioVal" value=""> | ||
474 | - <input type="hidden" id="handlingRatioOld" value=""> | ||
475 | - <select name="handlingRatio" id="handlingRatio" class="form-control"> | ||
476 | - <option value="">请选择</option> | ||
477 | - <option value="0" >0%</option> | ||
478 | - | ||
479 | - <option class="handlingRatioHidden" value="10">10%</option> | ||
480 | - <option class="handlingRatioHidden" value="20">20%</option> | ||
481 | - <option class="handlingRatioHidden" value="30">30%</option> | ||
482 | - <option class="handlingRatioHidden" value="40">40%</option> | ||
483 | - <option class="handlingRatioHidden" value="50">50%</option> | ||
484 | - <option class="handlingRatioHidden" value="60">60%</option> | ||
485 | - <option class="handlingRatioHidden" value="70">70%</option> | ||
486 | - <option class="handlingRatioHidden" value="80">80%</option> | ||
487 | - <option class="handlingRatioHidden" value="90"> 90%</option> | ||
488 | - | ||
489 | - <option value="100" >100%</option> | ||
490 | - </select> | ||
491 | - </div> | ||
492 | - <div class="form-group col"> | ||
493 | - <label>装卸费</label> | ||
494 | - <input type="text" id="handActualAmountSymbol" class="form-control" readonly value=""> | ||
495 | - <input type="hidden" id="handActualAmount" name="handActualAmount" value=""> | ||
496 | - </div> | ||
497 | - <div class="form-group col"> | ||
498 | - <label>应收装卸费</label> | ||
499 | - <input type="text" id="handReceivableAmountSymbol" class="form-control" readonly value=""> | ||
500 | - </div> | ||
501 | - <div class="form-group col"> | ||
502 | - <label>装卸管理费</label> | ||
503 | - <input type="text" id="handManageAmountSymbol" class="form-control" readonly value=""> | ||
504 | - <input type="hidden" id="handManageAmount" name="handManageAmount"> | ||
505 | - </div> | ||
506 | - <div class="form-group col"> | ||
507 | - <label>代收装卸费</label> | ||
508 | - <input type="text" id="handCollectionAmountSymbol" class="form-control" readonly value=""> | ||
509 | - <input type="hidden" id="handCollectionAmount" name="handCollectionAmount"> | ||
510 | - </div> | ||
511 | - | ||
512 | - <!--hr---> | ||
513 | - <div class="col-12 feeitemedit" id="feeitemedit"> | ||
514 | - </div> | ||
515 | - </div> | ||
516 | - <!---hr---> | ||
517 | - <div class="breadcrumb"> | ||
518 | - 其他信息 | ||
519 | - <a href="javascript:;" class="ml-auto" data-toggle="collapse" data-target="#otherInfo" | ||
520 | - aria-expanded="true" aria-controls="otherInfo">收起 <i class="fa fa-angle-double-up"aria-hidden="true"></i></a> | ||
521 | - </div> | ||
522 | - <div class="row row-cols-6 collapse show form-group-wrap height0" id="otherInfo"> | ||
523 | - <div class="form-group col"> | ||
524 | - <label>应收金额</label> | ||
525 | - <input type="text" id="receivableAmountSymbol" class="form-control red bold fz17" | ||
526 | - value="" readonly> | ||
527 | - <input name="receivableAmount" type="hidden" id="receivableAmount"> | ||
528 | - </div> | ||
529 | - <div class="form-group col"> | ||
530 | - <label class="text-right red">优惠金额</label> | ||
531 | - <input type="text" id="discountAmountSymbol" class="form-control red bold fz17" readonly | ||
532 | - value="-"> | ||
533 | - </div> | ||
534 | - <div class="form-group col"> | ||
535 | - | ||
536 | - <label>返点金额</label> | ||
537 | - | ||
538 | - <input type="text" id="collectionAmountSymbol" class="form-control red bold fz17" readonly | ||
539 | - value=""> | ||
540 | - </div> | ||
541 | - | ||
542 | - <div class="form-group col"> | ||
543 | - <label>商品品类</label> | ||
544 | - <input type="text" class="form-control" name="categoryName" id="parentName" readonly | ||
545 | - value="水果"> | ||
546 | - <input type="hidden" class="form-control" name="categoryId" id="categoryId" | ||
547 | - value="1616"> | ||
548 | - </div> | ||
549 | - <div class="form-group col"> | ||
550 | - <label>司机手机</label> | ||
551 | - <input type="text" class="form-control " readonly name="driverTel" value=""> | ||
552 | - </div> | ||
553 | - <div class="form-group col"> | ||
554 | - <label>称重员</label> | ||
555 | - <input type="text" class="form-control" readonly value="沈阳长歌"> | ||
556 | - </div> | ||
557 | - <!---hr ---> | ||
558 | - <div class="form-group col"> | ||
559 | - <label>称重类型</label> | ||
560 | - <input type="text" class="form-control" readonly value="散件称重"> | ||
561 | - </div> | ||
562 | - <div class="form-group col"> | ||
563 | - <label>毛重时间</label> | ||
564 | - <input type="text" class="form-control" readonly name="grossWeightDate" value="2021-08-17 14:56:08" > | ||
565 | - | ||
566 | - </div> | ||
567 | - <div class="form-group col"> | ||
568 | - <label>皮重时间</label> | ||
569 | - <input type="text" class="form-control " readonly name="tareWeightDate" value="2021-08-17 14:56:08"> | ||
570 | - </div> | ||
571 | - <div class="form-group col"> | ||
572 | - <label>毛重通道</label> | ||
573 | - <input type="text" name="grossPathName" class="form-control" readonly value=""> | ||
574 | - <input type="hidden" name="grossPathId" class="form-control" readonly value=""> | ||
575 | - </div> | ||
576 | - <div class="form-group col"> | ||
577 | - <label>皮重通道</label> | ||
578 | - <input type="text" class="form-control" readonly value=""> | ||
579 | - <input type="hidden" name="tarePathId" class="form-control" readonly value=""> | ||
580 | - </div> | ||
581 | - <div class="form-group col"> | ||
582 | - <label>皮重员</label> | ||
583 | - <input type="text" class="form-control" readonly value=""> | ||
584 | - </div> | ||
585 | - <!---hr---> | ||
586 | - <div class="form-group col"> | ||
587 | - <label>带货回皮</label> | ||
588 | - | ||
589 | - <input type="text" class="form-control" readonly value="否"> | ||
590 | - | ||
591 | - </div> | ||
592 | - | ||
593 | - <div class="form-group col-4"> | ||
594 | - <label tlog>称重备注</label> | ||
595 | - <textarea class="form-control" cols="30" rows="1" maxlength="50" id="goodsRemark" name="goodsRemark" | ||
596 | - title="" ></textarea> | ||
597 | - </div> | ||
598 | - <div class="form-group col"> | ||
599 | - <label class="text-right text-primary" tlog>进门接车员</label> | ||
600 | - <input type="text" class="form-control" tlog name="inGreeterName" | ||
601 | - id="inGreeterName" value="测试沈阳"> | ||
602 | - <input type="hidden" name="inGreeterId" id="inGreeterId" value="223"> | ||
603 | - <label class="error defi-error"></label> | ||
604 | - </div> | ||
605 | - <div class="form-group col"> | ||
606 | - <label tlog>出门接车员</label> | ||
607 | - <input type="text" class="form-control" tlog name="outGreeterName" id="outGreeterName" | ||
608 | - value=""> | ||
609 | - <input type="hidden" name="outGreeterId" id="outGreeterId" value=""> | ||
610 | - <label class="error defi-error"></label> | ||
611 | - </div> | ||
612 | - <div class="col"> | ||
613 | - <a href="javascript:viewImgNew();" class="lookPound ml-2">查看称重图片</a> | ||
614 | - <input type="hidden" id="imgs" value='[]'> | ||
615 | - </div> | ||
616 | - <!----hr --> | ||
617 | - <div class="form-group col"> | ||
618 | - <label>交易额</label> | ||
619 | - <input type="text" id="sumPriceSymbol" class="form-control" readonly value="220.00"> | ||
620 | - <input type="hidden" name="sumPrice" value="22000" id="sumPrice"> | ||
621 | - </div> | ||
622 | - | ||
623 | - <div class="form-group col"> | ||
624 | - <label>货主姓名</label> | ||
625 | - <input type="text" name="shipperName" id="goodsCusName" class="form-control" maxlength="22" | ||
626 | - value=""> | ||
627 | - <input type="hidden" name="shipperId" id="shipperId" value=""> | ||
628 | - </div> | ||
629 | - <div class="form-group col"> | ||
630 | - <label>货主手机</label> | ||
631 | - <input type="text" name="shipperPhone" id="goodsCusTel" class="form-control isMobile" | ||
632 | - value=""> | ||
633 | - </div> | ||
634 | - <div class="form-group col"> | ||
635 | - <label>收费部门</label> | ||
636 | - <input type="hidden" id="feeDepName" name="feeDepName" value=""> | ||
637 | - <input type="hidden" name="calcFeeDepId" value="0"> | ||
638 | - <select id="feeDepId" name="feeDepId" class="form-control" ></select> | ||
639 | -<script> | ||
640 | - $(function () { | ||
641 | - //_logTable 动态标签元素计数器 | ||
642 | - let $table = $('#feeDepId').parents('[_logTable]'); | ||
643 | - if(typeof(Log) !== 'undefined' && $table.length > 0){ | ||
644 | - if(typeof(Log.tableItemTagCount) == 'undefined'){ | ||
645 | - Log.tableItemTagCount = 0; | ||
646 | - } | ||
647 | - ++Log.tableItemTagCount; | ||
648 | - } | ||
649 | - | ||
650 | - let option = $.extend( | ||
651 | - {}, | ||
652 | - {} | ||
653 | - ); | ||
654 | - $.ajax($.extend(true,{ | ||
655 | - type: "post", | ||
656 | - url: '/provider/getLookupList.action', | ||
657 | - data: { | ||
658 | - provider: 'departmentProvider', | ||
659 | - queryParams: '{required:false}' | ||
660 | - }, | ||
661 | - dataType: "json", | ||
662 | - success: function (result) { | ||
663 | - let data; | ||
664 | - if(result instanceof Array){ | ||
665 | - data = result; | ||
666 | - }else if (typeof (result) == 'object') { | ||
667 | - if(result.success){ | ||
668 | - data = result.data; | ||
669 | - }else{ | ||
670 | - bs4pop.alert(result.message, {type: 'error'}); | ||
671 | - return; | ||
672 | - } | ||
673 | - } | ||
674 | - | ||
675 | - $.map(data, function (dataItem) { | ||
676 | - $('#feeDepId').append(template('optionItem', $.extend(dataItem, { | ||
677 | - selected: '0' == dataItem.value + '', | ||
678 | - value:dataItem["value"], | ||
679 | - text:dataItem["text"] | ||
680 | - }))); | ||
681 | - }); | ||
682 | - | ||
683 | - | ||
684 | - option.onLoadSuccess && option.onLoadSuccess(data); | ||
685 | - }, | ||
686 | - error: function () { | ||
687 | - console.log('数据接口异常'); | ||
688 | - } | ||
689 | - },option)); | ||
690 | - }) | ||
691 | -</script> | ||
692 | - </div> | ||
693 | - </div> | ||
694 | -</div> | ||
695 | -</form> | ||
696 | -</div> | ||
697 | - | ||
698 | -<!-- Optional JavaScript --> | ||
699 | -<!-- jQuery first, then Popper.js, then Bootstrap JS --> | ||
700 | -<script src="/resources/bui/lib/bootstrap-4.4.1-dist/js/bootstrap.bundle.min.js"></script> | ||
701 | -<script src="/resources/bui/lib/bootstrap4pop/js/bs4.pop.js"></script> | ||
702 | -<script src="/resources/bui/lib/bootstrap-table/dist/bootstrap-table.min.js"></script> | ||
703 | -<script src="/resources/bui/lib/bootstrap-table/dist/locale/bootstrap-table-zh-CN.min.js"></script> | ||
704 | -<script src="/resources/bui/lib/laydate/laydate.js"></script> | ||
705 | -<script src="/resources/bui/lib/jquery-validation-1.19.1/jquery.validate.min.js"></script> | ||
706 | -<script src="/resources/bui/lib/jquery-validation-1.19.1/jquery.validate-extend.js"></script> | ||
707 | -<script src="/resources/bui/lib/jquery/jquery.autocomplete.min.js"></script> | ||
708 | -<script src="/resources/bui/lib/select2-4.0.13/dist/js/select2.full.min.js"></script> | ||
709 | -<script src="/resources/bui/lib/select2-4.0.13/dist/js/i18n/zh-CN.js"></script> | ||
710 | -<script src="/resources/bui/lib/moment/moment-with-locales.min.js"></script> | ||
711 | -<script src="/resources/bui/lib/vendor/art-template.js"></script> | ||
712 | -<script src="/resources/bui/lib/log/logger.js"></script> | ||
713 | -<script src="/resources/bui/js/common.js"></script> | ||
714 | -<script src="/resources/bui/js/global.js"></script> | ||
715 | -</body> | ||
716 | -<script id="radioItem" type="text/html"> | ||
717 | - <div class="custom-control custom-radio custom-control-inline"> | ||
718 | - <input type="radio" {{_log?index == 0? '_log='+_log : '' : ''}} id="r_{{containerId}}{{value}}" value="{{value}}" name="{{name}}" class="custom-control-input" {{checked ? | ||
719 | - 'checked':''}} {{required ? 'required':''}}> | ||
720 | - <label class="custom-control-label" for="r_{{containerId}}{{value}}">{{text}}</label> | ||
721 | - </div> | ||
722 | -</script> | ||
723 | -<script id="checkboxItem" type="text/html"> | ||
724 | - <div class="custom-control custom-checkbox custom-control-inline"> | ||
725 | - <input type="checkbox" {{_log?index == 0? '_log='+_log : '' : ''}} id="c_{{containerId}}{{value}}" value="{{value}}" name="{{name}}" class="custom-control-input" {{checked | ||
726 | - ? 'checked':''}} {{required ? 'required':''}}> | ||
727 | - <label class="custom-control-label" for="c_{{containerId}}{{value}}">{{text}}</label> | ||
728 | - </div> | ||
729 | -</script> | ||
730 | -<script id="optionItem" type="text/html"> | ||
731 | - <option value="{{value}}" {{selected ? 'selected':''}}>{{text}}</option> | ||
732 | -</script> | ||
733 | -<script type="text/javascript"> | ||
734 | - /*********************************************** 页面组件驱动执行 begin ***********************************************************/ | ||
735 | - $(function () { | ||
736 | - //表单jquery对象获取提交字段的json信息 | ||
737 | - $.fn.serializeObject = function (containsNull) { | ||
738 | - var o = {}; | ||
739 | - var a = this.serializeArray(); | ||
740 | - $.each(a, function () { | ||
741 | - if (o[this.name] !== undefined) { | ||
742 | - if (!o[this.name].push && o[this.name] != null && o[this.name] != "") { | ||
743 | - o[this.name] = [o[this.name]]; | ||
744 | - o[this.name].push(this.value || ''); | ||
745 | - } else if (this.value != null) { | ||
746 | - o[this.name].push(this.value || ''); | ||
747 | - } else { | ||
748 | - if (containsNull && containsNull == true) { | ||
749 | - o[this.name].push(''); | ||
750 | - } | ||
751 | - } | ||
752 | - } else { | ||
753 | - if (this.value != null && this.value != "") { | ||
754 | - o[this.name] = this.value || ''; | ||
755 | - } else { | ||
756 | - if (containsNull && containsNull == true) { | ||
757 | - o[this.name] = ''; | ||
758 | - } | ||
759 | - } | ||
760 | - } | ||
761 | - }); | ||
762 | - return o; | ||
763 | - }; | ||
764 | - | ||
765 | - $('.date').each(function () { | ||
766 | - let self = this; | ||
767 | - laydate.render({ | ||
768 | - elem: self,//或 elem: document.getElementById('test')、elem: lay('#test') 等 | ||
769 | - type: 'datetime', | ||
770 | - theme: '#007bff', | ||
771 | - trigger:'click' | ||
772 | - }); | ||
773 | - }); | ||
774 | - }); | ||
775 | - /*********************************************** 页面组件驱动执行 end ***********************************************************/ | ||
776 | - | ||
777 | - /*********************************************** 页面组件变量及处理函数 begin ***********************************************************/ | ||
778 | - var bui = (function () { | ||
779 | - /** | ||
780 | - * table button icon | ||
781 | - * **/ | ||
782 | - let icons = { | ||
783 | - paginationSwitchDown: 'fa-caret-square-o-down', | ||
784 | - paginationSwitchUp: 'fa-caret-square-o-up', | ||
785 | - refresh: 'fa-refresh', | ||
786 | - toggleOff: 'fa-toggle-off', | ||
787 | - toggleOn: 'fa-toggle-on', | ||
788 | - columns: 'fa-th-list', | ||
789 | - fullscreen: 'fa-arrows-alt', | ||
790 | - detailOpen: 'fa-plus', | ||
791 | - detailClose: 'fa-minus', | ||
792 | - export: 'fa-download' | ||
793 | - }; | ||
794 | - | ||
795 | - | ||
796 | - let loading = (function () { | ||
797 | - //弹出加载层 | ||
798 | - function show(text) { | ||
799 | - $("#loading-text").text(text || "loading..."); | ||
800 | - $("#loading").show(); | ||
801 | - } | ||
802 | - | ||
803 | - //取消加载层 | ||
804 | - function hide() { | ||
805 | - $("#loading").hide(); | ||
806 | - } | ||
807 | - | ||
808 | - function initLoading() { | ||
809 | - $("body").append(` | ||
810 | - <div id="loading" class="loading" style="display: none;"> | ||
811 | - <div class="cover"></div> | ||
812 | - <aside class="loading-wrapper"> | ||
813 | - <div> | ||
814 | - <div class="loading-animation"> | ||
815 | - <span></span> | ||
816 | - <span></span> | ||
817 | - <span></span> | ||
818 | - <span></span> | ||
819 | - <span></span> | ||
820 | - </div> | ||
821 | - <div><span id="loading-text"></span></div> | ||
822 | - </div> | ||
823 | - </aside> | ||
824 | - </div>` | ||
825 | - ); | ||
826 | - } | ||
827 | - | ||
828 | - //初始化遮罩层 | ||
829 | - initLoading(); | ||
830 | - return {show, hide}; | ||
831 | - })(); | ||
832 | - | ||
833 | - /******************************** excel导出函数定义 begin *********************************/ | ||
834 | - let bexport = (function () { | ||
835 | - function S4() { | ||
836 | - return (((1 + Math.random()) * 0x10000) | 0).toString(16).substring(1); | ||
837 | - }; | ||
838 | - | ||
839 | - //token生成器 | ||
840 | - function guid() { | ||
841 | - return (S4() + S4() + "-" + S4() + "-" + S4() + "-" + S4() + "-" + S4() + S4() + S4()); | ||
842 | - }; | ||
843 | - | ||
844 | - //通过token判断导出是否完成 | ||
845 | - function checkFinished(token) { | ||
846 | - let exporterPath = 'http://test.exporter.diligrp.com:8288'; | ||
847 | - let url = exporterPath == "" ? "/export/isFinished.action?token=" + token : exporterPath + "/exporter/isFinished.action?token=" + token; | ||
848 | - $.ajax({ | ||
849 | - type: "POST", | ||
850 | - url: url, | ||
851 | - processData: true, | ||
852 | - dataType: "json", | ||
853 | - success: function (data) { | ||
854 | - if (data == true || data == "true") { | ||
855 | - bui.loading.hide(); | ||
856 | - } | ||
857 | - }, | ||
858 | - error: function (XMLHttpRequest, textStatus, errorThrown) { | ||
859 | - bs4pop.alert('远程访问失败:' + XMLHttpRequest.status + XMLHttpRequest.statusText + "," + textStatus, {type: 'error'}); | ||
860 | - } | ||
861 | - }); | ||
862 | - } | ||
863 | - | ||
864 | - /*** | ||
865 | - * grid **tableID | ||
866 | - * formId **查询参数表单ID | ||
867 | - * exportUrl 导出URL | ||
868 | - * extendQueryParams 导出扩展参数 | ||
869 | - * */ | ||
870 | - function doExport(gridId, formId, exportUrl , extendQueryParams) { | ||
871 | - var opts = $('#' + gridId).bootstrapTable('getOptions'); | ||
872 | - //没有url就没有查询过,不作导出 | ||
873 | - if (opts.url == null || opts.url == '') | ||
874 | - return; | ||
875 | - var _gridExportQueryParams; | ||
876 | - if (formId == null || formId === '') { | ||
877 | - try { | ||
878 | - _gridExportQueryParams = $.table.bindGridMeta2Form(null); | ||
879 | - } catch (e) { | ||
880 | - console.log('未引入VUE。。。') | ||
881 | - } | ||
882 | - } else { | ||
883 | - _gridExportQueryParams = bindGridMeta2Form(gridId, formId); | ||
884 | - } | ||
885 | - _gridExportQueryParams["sort"] = opts.sortName; | ||
886 | - _gridExportQueryParams["order"] = opts.sortOrder; | ||
887 | - var param = {}; | ||
888 | - //多表头遍历 | ||
889 | - for (let cols of opts.columns) { | ||
890 | - for (let col of cols) { | ||
891 | - if (col.checkbox || col.radio) { | ||
892 | - col['hidden'] = true; | ||
893 | - } else { | ||
894 | - col['hidden'] = !col.visible; | ||
895 | - } | ||
896 | - | ||
897 | - //opts.sortName默认取到的是fieldName | ||
898 | - if (col.field === opts.sortName) { | ||
899 | - _gridExportQueryParams["sort"] = col.sortName || opts.sortName; | ||
900 | - } | ||
901 | - } | ||
902 | - } | ||
903 | - param.columns = JSON.stringify(opts.columns); | ||
904 | - param.queryParams = JSON.stringify($.extend(_gridExportQueryParams, extendQueryParams)); | ||
905 | - param.title = opts.title; | ||
906 | - var serverPath = 'http://test.jmsf.diligrp.com:8385'; | ||
907 | - param.url = serverPath + opts.url; | ||
908 | - param.contentType = opts.contentType; | ||
909 | - param.token = guid(); | ||
910 | - exportByUrl(param); | ||
911 | - } | ||
912 | - | ||
913 | - /** | ||
914 | - * 根据controller url导出 | ||
915 | - * controller方法调用ExportUtils完成导出, 示例: | ||
916 | - * @RequestMapping("/export") | ||
917 | - * public @ResponseBody void export( HttpServletRequest request, HttpServletResponse response, @RequestParam("queryParams") String queryParams){...} | ||
918 | - * @param exportUrl | ||
919 | - * @param params | ||
920 | - */ | ||
921 | - function exportByUrl(param) { | ||
922 | - var exporterPath = 'http://test.exporter.diligrp.com:8288'; | ||
923 | - //如果配置了exporter.contextPath, 则使用导出器 | ||
924 | - var exportUrl = exporterPath == "" ? '/export/serverExport.action' : exporterPath+'/exporter/serverExport.action'; | ||
925 | - if ($("#_exportForm").length <= 0) { | ||
926 | - var formStr = "<div id='_exportFormDiv'><form id='_exportForm' action='" + exportUrl + "' method='post' target=''>" + | ||
927 | - "<input type='hidden' id='columns' name='columns'/>" + | ||
928 | - "<input type='hidden' id='queryParams' name='queryParams'/>" + | ||
929 | - "<input type='hidden' id='title' name='title'/>" + | ||
930 | - "<input type='hidden' id='url' name='url'/>" + | ||
931 | - "<input type='hidden' id='token' name='token'/>" + | ||
932 | - "<input type='hidden' id='contentType' name='contentType'/>" + | ||
933 | - "</form></div>"; | ||
934 | - $(formStr).appendTo("body"); | ||
935 | - } | ||
936 | - $('#columns').val(param.columns); | ||
937 | - $('#queryParams').val(param.queryParams); | ||
938 | - $('#title').val(param.title); | ||
939 | - $('#url').val(param.url); | ||
940 | - $('#token').val(param.token); | ||
941 | - $('#contentType').val(param.contentType); | ||
942 | - // 显示进度条 | ||
943 | - bui.loading.show('数据导出中,请稍候。。。'); | ||
944 | - checkFinished(param.token); | ||
945 | - $('#_exportForm').submit(); | ||
946 | - } | ||
947 | - | ||
948 | - return {doExport, exportByUrl,guid}; | ||
949 | - })(); | ||
950 | - /******************************** excel导出函数定义 end *********************************/ | ||
951 | - | ||
952 | - //表单回显数据,加载json数据到表单 | ||
953 | - let loadFormData = function (jsonStr) { | ||
954 | - var obj = typeof (jsonStr) == 'string' ? eval("(" + jsonStr + ")") : jsonStr; | ||
955 | - var key, value, tagName, type, arr; | ||
956 | - for (x in obj) { | ||
957 | - key = x; | ||
958 | - value = obj[x]; | ||
959 | - | ||
960 | - $("[name='" + key + "'],[name='" + key + "[]']").each(function () { | ||
961 | - tagName = $(this)[0].tagName; | ||
962 | - type = $(this).attr('type'); | ||
963 | - if (tagName == 'INPUT') { | ||
964 | - if (type == 'radio') { | ||
965 | - $(this).attr('checked', $(this).val() == value); | ||
966 | - } else if (type == 'checkbox') { | ||
967 | - arr = value.split(','); | ||
968 | - for (var i = 0; i < arr.length; i++) { | ||
969 | - if ($(this).val() == arr[i]) { | ||
970 | - $(this).attr('checked', true); | ||
971 | - break; | ||
972 | - } | ||
973 | - } | ||
974 | - } else { | ||
975 | - $(this).val(value); | ||
976 | - } | ||
977 | - } else if (tagName == 'SELECT' || tagName == 'TEXTAREA') { | ||
978 | - $(this).val(value); | ||
979 | - } | ||
980 | - | ||
981 | - }); | ||
982 | - } | ||
983 | - } | ||
984 | - | ||
985 | - //从后台获取原始值的key的前缀 | ||
986 | - let orginal_key_prefix = '$_'; | ||
987 | - | ||
988 | - //获取datagrid行数据中的原始值(有orginal_key_prefix开头的key的值),用于form load | ||
989 | - function getOriginalData(json) { | ||
990 | - var obj = {}; | ||
991 | - for (key in json) { | ||
992 | - if (key.startsWith(orginal_key_prefix)) { | ||
993 | - continue; | ||
994 | - } | ||
995 | - //如果已有orginal_key_prefix为前缀的同名原始属性,则使用原始属性 | ||
996 | - if (json.hasOwnProperty(orginal_key_prefix + key)) { | ||
997 | - obj[key] = json[orginal_key_prefix + key]; | ||
998 | - } else { | ||
999 | - obj[key] = json[key]; | ||
1000 | - } | ||
1001 | - } | ||
1002 | - return obj; | ||
1003 | - } | ||
1004 | - | ||
1005 | - //为json对象key中添加开始字符串,如果已经是以startStr开始,则跳过 | ||
1006 | - // 主要是为了获取下拉框等有provider的字段的原值 | ||
1007 | - // 如var json = {id:1, name:"value"}; | ||
1008 | - // addKeyStartWith(json, "_") | ||
1009 | - // 结果是:{_id:1, _name:"value"}; | ||
1010 | - function addKeyStartWith(json, startStr) { | ||
1011 | - for (key in json) { | ||
1012 | - if (key.startsWith(startStr)) { | ||
1013 | - continue; | ||
1014 | - } | ||
1015 | - //如果已有add startStr后的同名属性,则跳过,并且移除key | ||
1016 | - if (json.hasOwnProperty(startStr + key)) { | ||
1017 | - delete json[key]; | ||
1018 | - continue; | ||
1019 | - } | ||
1020 | - json[startStr + key] = json[key]; | ||
1021 | - delete json[key]; | ||
1022 | - } | ||
1023 | - return json; | ||
1024 | - } | ||
1025 | - | ||
1026 | - //删除json对象key中的开始字符串, | ||
1027 | - // 如var json = {_id:1, _name:"value"}; | ||
1028 | - // 调用removeByStart(json, "_") | ||
1029 | - // 结果是:{id:1, name:"value"}; | ||
1030 | - function removeKeyStartWith(json, startStr) { | ||
1031 | - for (key in json) { | ||
1032 | - if (key.startsWith(startStr)) { | ||
1033 | - //如果已有remove掉startStr后的同名属性,则跳过,并且移除key | ||
1034 | - if (json.hasOwnProperty(key.slice(startStr.length))) { | ||
1035 | - delete json[key]; | ||
1036 | - continue; | ||
1037 | - } | ||
1038 | - json[key.slice(startStr.length)] = json[key]; | ||
1039 | - delete json[key]; | ||
1040 | - } | ||
1041 | - } | ||
1042 | - return json; | ||
1043 | - } | ||
1044 | - | ||
1045 | - /** | ||
1046 | - * 初始化自动完成框 | ||
1047 | - */ | ||
1048 | - function initAutoComplete(option) { | ||
1049 | - $(option.selector).on('input', function () { | ||
1050 | - $(this).siblings('input').val(''); | ||
1051 | - }); | ||
1052 | - //产地联系输入 | ||
1053 | - $(option.selector).autocomplete($.extend(true, { | ||
1054 | - type: 'get', | ||
1055 | - noCache: 1, | ||
1056 | - deferRequestBy: 300, | ||
1057 | - autoFill: true, | ||
1058 | - dataType: 'json', | ||
1059 | - width: 'auto', | ||
1060 | - paramName: 'value', | ||
1061 | - onSearchComplete: function (query, suggestions) { | ||
1062 | - }, | ||
1063 | - showNoSuggestionNotice: true, | ||
1064 | - noSuggestionNotice: "无匹配结果" | ||
1065 | - }, option)); | ||
1066 | - } | ||
1067 | - | ||
1068 | - /** | ||
1069 | - * 为表单绑定表格的metadata,保持原有的meta信息 | ||
1070 | - * 返回绑定好的对象 | ||
1071 | - * @param gridId | ||
1072 | - * @param formId | ||
1073 | - * @returns {*} | ||
1074 | - */ | ||
1075 | - function bindGridMeta2Form(gridId, formId, containsNull) { | ||
1076 | - var param = bindMetadata(gridId); | ||
1077 | - if (!formId) return param; | ||
1078 | - var formData = $("#" + formId).serializeObject(containsNull); | ||
1079 | - return $.extend(param, formData); | ||
1080 | - } | ||
1081 | - | ||
1082 | - /** | ||
1083 | - * 绑定实体的metadata信息,用于提供者转换 | ||
1084 | - * @param gridId datagrid Id | ||
1085 | - * @returns {queryParams|{provider}|*|string|{}} | ||
1086 | - */ | ||
1087 | - function bindMetadata(gridId) { | ||
1088 | - var opts = $("#" + gridId).bootstrapTable('getOptions'); | ||
1089 | - return bindColumnsMetadata(opts.columns); | ||
1090 | - } | ||
1091 | - | ||
1092 | - /** | ||
1093 | - * originColumns 表头 (获取实际字段的表头(可能是多表头)) | ||
1094 | - * */ | ||
1095 | - function bindColumnsMetadata(originColumns) { | ||
1096 | - var columns = originColumns.flat().filter(item => item["field"]); | ||
1097 | - //赋默认值 | ||
1098 | - var params = {}; | ||
1099 | - params["metadata"] = {}; | ||
1100 | - //提供者的默认排序索引 | ||
1101 | - var index = 10; | ||
1102 | - for (var column in columns) { | ||
1103 | - var _provider = columns[column]["provider"]; | ||
1104 | - var _data = columns[column]["data"]; | ||
1105 | - //优先解析直接数据的_data属性 | ||
1106 | - if (_data != null) { | ||
1107 | - var field = columns[column]["field"]; | ||
1108 | - var fieldMetadata = {}; | ||
1109 | - fieldMetadata["provider"] = "simpleDataProvider"; | ||
1110 | - fieldMetadata["data"] = _data; | ||
1111 | - params["metadata"][field] = JSON.stringify(fieldMetadata); | ||
1112 | - continue; | ||
1113 | - } | ||
1114 | - //没有_data属性,则解析_table,_valueField和_textField等其它属性 | ||
1115 | - var _table = columns[column]["table"]; | ||
1116 | - //如果有_table属性,则按simpleValueProvider处理 | ||
1117 | - if (_table != null) { | ||
1118 | - _provider = "simpleValueProvider"; | ||
1119 | - } | ||
1120 | - if (_provider != null) { | ||
1121 | - //设值 | ||
1122 | - var field = columns[column]["field"]; | ||
1123 | - var fieldMetadata = {}; | ||
1124 | - fieldMetadata["provider"] = _provider; | ||
1125 | - fieldMetadata["table"] = _table; | ||
1126 | - fieldMetadata["valueField"] = columns[column]["valueField"]; | ||
1127 | - fieldMetadata["textField"] = columns[column]["textField"]; | ||
1128 | - fieldMetadata["queryParams"] = columns[column]["queryParams"]; | ||
1129 | - fieldMetadata["index"] = columns[column]["index"] == null ? index : columns[column]["index"]; | ||
1130 | - fieldMetadata["field"] = field; | ||
1131 | - //设置通用批量提供者参数 | ||
1132 | - fieldMetadata["_escapeFileds"] = columns[column]["escapeFileds"]; | ||
1133 | - fieldMetadata["_relationTablePkField"] = columns[column]["relationTablePkField"]; | ||
1134 | - fieldMetadata["_relationTable"] = columns[column]["relationTable"]; | ||
1135 | - fieldMetadata["_fkField"] = columns[column]["fkField"]; | ||
1136 | - params["metadata"][field] = JSON.stringify(fieldMetadata); | ||
1137 | - index += 10; | ||
1138 | - } | ||
1139 | - } | ||
1140 | - return params; | ||
1141 | - } | ||
1142 | - | ||
1143 | - /** | ||
1144 | - * table-export科学计算法处理 | ||
1145 | - * @param cell | ||
1146 | - * @param row | ||
1147 | - * @param col | ||
1148 | - * @returns {string} | ||
1149 | - * @constructor | ||
1150 | - */ | ||
1151 | - function doOnMsoNumberFormat(cell, row, col) { | ||
1152 | - var result = ""; | ||
1153 | - if (row > 0 && col == 0) | ||
1154 | - result = "\\@"; | ||
1155 | - return result; | ||
1156 | - } | ||
1157 | - | ||
1158 | - /** | ||
1159 | - * 为表单number类型进行元转分 | ||
1160 | - * @param obj 数据对象 如:$('form').serializeObject()得到number数据为 | ||
1161 | - * @returns {*} | ||
1162 | - */ | ||
1163 | - function yuanToCentForMoneyEl(obj){ | ||
1164 | - for(let field in obj){ | ||
1165 | - let value = obj[field]; | ||
1166 | - if($('[name='+field+']').hasClass('money')){ | ||
1167 | - if(value instanceof Array){ | ||
1168 | - value.forEach(function(val,index,arr){ | ||
1169 | - arr[index] = Number(val).mul(100); | ||
1170 | - }) | ||
1171 | - }else{ | ||
1172 | - obj[field] = Number(value).mul(100); | ||
1173 | - } | ||
1174 | - } | ||
1175 | - } | ||
1176 | - return obj; | ||
1177 | - } | ||
1178 | - | ||
1179 | - /** | ||
1180 | - * 反转义html | ||
1181 | - * @param str | ||
1182 | - * @returns {*} | ||
1183 | - */ | ||
1184 | - function HTMLDecode(str) { | ||
1185 | - var s = ""; | ||
1186 | - if (str.length == 0) return ""; | ||
1187 | - s = str.replace(/&/g, "&"); | ||
1188 | - s = s.replace(/</g, "<"); | ||
1189 | - s = s.replace(/>/g, ">"); | ||
1190 | - s = s.replace(/ /g, " "); | ||
1191 | - s = s.replace(/'/g, "\'"); | ||
1192 | - s = s.replace(/"/g, "\""); | ||
1193 | - s = s.replace(/<br\/>/g, "\n"); | ||
1194 | - return s; | ||
1195 | - } | ||
1196 | - | ||
1197 | - /** | ||
1198 | - * fn [function] 需要防抖的函数 | ||
1199 | - * wait [number] 毫秒,防抖期限值 | ||
1200 | - * immediate 是否立即执行 | ||
1201 | - */ | ||
1202 | - const debounce = (fn, wait, immediate = false) => { | ||
1203 | - let timer; | ||
1204 | - | ||
1205 | - return function() { | ||
1206 | - if(timer) clearTimeout(timer); | ||
1207 | - if(immediate) { | ||
1208 | - let trigger = !timer; | ||
1209 | - timer = setTimeout(() => { | ||
1210 | - timer = null; | ||
1211 | - }, wait); | ||
1212 | - | ||
1213 | - if(trigger) { | ||
1214 | - return fn.apply(this, arguments); | ||
1215 | - } | ||
1216 | - return false; | ||
1217 | - } | ||
1218 | - | ||
1219 | - timer = setTimeout(() => { | ||
1220 | - return fn.apply(this, arguments); | ||
1221 | - }, wait); | ||
1222 | - return false; | ||
1223 | - } | ||
1224 | - }; | ||
1225 | - | ||
1226 | - | ||
1227 | - return { | ||
1228 | - variable: { | ||
1229 | - icons | ||
1230 | - }, | ||
1231 | - util: { | ||
1232 | - //自动完成框初始化 | ||
1233 | - initAutoComplete, | ||
1234 | - //构建Meta(provider)和Form 字段信息 | ||
1235 | - bindGridMeta2Form, | ||
1236 | - //构建meta信息 | ||
1237 | - bindMetadata, | ||
1238 | - //构建列meta信息 | ||
1239 | - bindColumnsMetadata, | ||
1240 | - //table-export科学计算法处理 | ||
1241 | - doOnMsoNumberFormat, | ||
1242 | - bexport, | ||
1243 | - //列表页导出 | ||
1244 | - doExport: debounce(bexport.doExport,1000,true), | ||
1245 | - //URL导出 | ||
1246 | - exportByUrl: debounce(bexport.exportByUrl,1000,true), | ||
1247 | - //表单回显数据,加载json数据到表单 | ||
1248 | - loadFormData, | ||
1249 | - //获取table-row原始数据 | ||
1250 | - getOriginalData, | ||
1251 | - //data字段添加key前缀 | ||
1252 | - addKeyStartWith, | ||
1253 | - //移除data字段添加的前缀 | ||
1254 | - removeKeyStartWith, | ||
1255 | - //为表单number类型进行元转分 | ||
1256 | - yuanToCentForMoneyEl, | ||
1257 | - //反转义HTML | ||
1258 | - HTMLDecode, | ||
1259 | - //防抖 | ||
1260 | - debounce | ||
1261 | - }, | ||
1262 | - //遮罩层 | ||
1263 | - loading | ||
1264 | - } | ||
1265 | - })(); | ||
1266 | - /*********************************************** 页面组件变量及处理函数 end ***********************************************************/ | ||
1267 | - | ||
1268 | -</script> | ||
1269 | - | ||
1270 | -</html><!-- main-container end --> | ||
1271 | - | ||
1272 | -<script> | ||
1273 | - $(function () { | ||
1274 | - // update/view/pay/correct/amend/invalid/refund/unfreeze | ||
1275 | - | ||
1276 | - var viewType = $("#viewType").val(); | ||
1277 | - if(viewType =="pay"){ | ||
1278 | - | ||
1279 | - $("#plate").attr("readonly","true"); | ||
1280 | - $("#trailerNumber").attr("readonly","true"); | ||
1281 | - $("#product").attr("readonly","true"); | ||
1282 | - $("#grossWeight").attr("readonly","true"); | ||
1283 | - $("#tareWeight").attr("readonly","true"); | ||
1284 | - $("#autocomplete-cartype").attr("readonly","true"); | ||
1285 | - $("input[name='autocomplete-cartype']").attr("readonly","true"); | ||
1286 | - $("#outGreeterName").attr("disabled","true"); | ||
1287 | - $("#inGreeterName").attr("readonly","true"); | ||
1288 | - $("#goodsRemark").attr("readonly","true"); | ||
1289 | - console.info("-----------this pay"); | ||
1290 | - | ||
1291 | - }else if(viewType =="view"){ | ||
1292 | - $("#ic").attr("readonly","true"); | ||
1293 | - $("#plate").attr("readonly","true"); | ||
1294 | - $("#trailerNumber").attr("readonly","true"); | ||
1295 | - $("input[name='autocomplete-cartype']").attr("readonly","true"); | ||
1296 | - $("#grossWeight").attr("readonly","true"); | ||
1297 | - $("#tareWeight").attr("readonly","true"); | ||
1298 | - $("#regionCode").attr("readonly","true"); | ||
1299 | - $("#autocomplete-cartype").attr("readonly","true"); | ||
1300 | - $("#productArea").attr("readonly","true"); | ||
1301 | - $("#outGreeterName").attr("disabled","true"); | ||
1302 | - $("#inGreeterName").attr("readonly","true"); | ||
1303 | - $("#goodsCusName").attr("readonly","true"); | ||
1304 | - $("#goodsCusTel").attr("readonly","true"); | ||
1305 | - $("#freezeMoneySymbol").attr("readonly","true"); | ||
1306 | - $("#remark").attr("readonly","true"); | ||
1307 | - $("#goodsRemark").attr("readonly","true"); | ||
1308 | - $('input:checkbox[name="goodsTagIds"]').attr("onclick","return false"); | ||
1309 | - console.info("------------this view"); | ||
1310 | - }else if(viewType =="update"){ | ||
1311 | - $("#ic").attr("readonly","true"); | ||
1312 | - $("#plate").attr("readonly","true"); | ||
1313 | - $("#trailerNumber").attr("readonly","true"); | ||
1314 | - $("#product").attr("readonly","true"); | ||
1315 | - $("#grossWeight").attr("readonly","true"); | ||
1316 | - $("#tareWeight").attr("readonly","true"); | ||
1317 | - $("#regionCode").attr("readonly","true"); | ||
1318 | - $("input[name='autocomplete-cartype']").attr("readonly","true"); | ||
1319 | - /*$("#productArea").attr("readonly","true");*/ | ||
1320 | - $("#outGreeterName").attr("disabled","true"); | ||
1321 | - $("#inGreeterName").attr("readonly","true"); | ||
1322 | - $("#goodsCusName").attr("readonly","true"); | ||
1323 | - $("#goodsCusTel").attr("readonly","true"); | ||
1324 | - $("#freezeMoneySymbol").attr("readonly","true"); | ||
1325 | - $("#goodsRemark").attr("readonly","true"); | ||
1326 | - console.info("----------this modify"); | ||
1327 | - }else if(viewType =="correct"){ | ||
1328 | - $("#ic").attr("readonly","true"); | ||
1329 | - $('input:checkbox[name="goodsTagIds"]').attr("onclick","return false"); | ||
1330 | - console.info("----------this gengzheng"); | ||
1331 | - }else if(viewType =="amend"){ | ||
1332 | - $("#ic").attr("readonly","true"); | ||
1333 | - | ||
1334 | - //$("#trailerNumber").attr("readonly","true"); | ||
1335 | - $("#product").attr("readonly","true"); | ||
1336 | - $("#grossWeight").attr("readonly","true"); | ||
1337 | - $("#tareWeight").attr("readonly","true"); | ||
1338 | - $("#regionCode").attr("readonly","true"); | ||
1339 | - //$("input[name='autocomplete-cartype']").attr("readonly","true"); | ||
1340 | - $("#productArea").attr("readonly","true"); | ||
1341 | - $("#outGreeterName").attr("disabled","true"); | ||
1342 | - $("#inGreeterName").attr("readonly","true"); | ||
1343 | - $("#goodsCusName").attr("readonly","true"); | ||
1344 | - $("#goodsCusTel").attr("readonly","true"); | ||
1345 | - $("#freezeMoneySymbol").attr("readonly","true"); | ||
1346 | - $("#goodsRemark").attr("readonly","true"); | ||
1347 | - $('input:checkbox[name="goodsTagIds"]').attr("onclick","return false"); | ||
1348 | - console.info("--------------this xiuzheng"); | ||
1349 | - }else if(viewType =="refund"){ | ||
1350 | - $("#ic").attr("readonly","true"); | ||
1351 | - $("#goodsNum").attr("readonly","true"); | ||
1352 | - $("#itemWeight").attr("readonly","true"); | ||
1353 | - $("#plate").attr("readonly","true"); | ||
1354 | - $("#trailerNumber").attr("readonly","true"); | ||
1355 | - $("#autocomplete-category").attr("readonly","true"); | ||
1356 | - $("#grossWeight").attr("readonly","true"); | ||
1357 | - $("#tareWeight").attr("readonly","true"); | ||
1358 | - $("#regionCode").attr("readonly","true"); | ||
1359 | - $("input[name='autocomplete-cartype']").attr("readonly","true"); | ||
1360 | - $("#productArea").attr("readonly","true"); | ||
1361 | - $("#outGreeterName").attr("disabled","true"); | ||
1362 | - $("#inGreeterName").attr("readonly","true"); | ||
1363 | - $("#goodsCusName").attr("readonly","true"); | ||
1364 | - $("#goodsCusTel").attr("readonly","true"); | ||
1365 | - $("#freezeMoneySymbol").attr("readonly","true"); | ||
1366 | - /*$("#remark").attr("readonly","true");*/ | ||
1367 | - $("#goodsRemark").attr("readonly","true"); | ||
1368 | - $('input:checkbox[name="goodsTagIds"]').attr("onclick","return false"); | ||
1369 | - console.info("-----this refund"); | ||
1370 | - }else if(viewType =="invalid"){ | ||
1371 | - $("#ic").attr("readonly","true"); | ||
1372 | - $("#plate").attr("readonly","true"); | ||
1373 | - $("#trailerNumber").attr("readonly","true"); | ||
1374 | - $("input[name='autocomplete-cartype']").attr("readonly","true"); | ||
1375 | - $("#grossWeight").attr("readonly","true"); | ||
1376 | - $("#tareWeight").attr("readonly","true"); | ||
1377 | - $("#regionCode").attr("readonly","true"); | ||
1378 | - $("#autocomplete-cartype").attr("readonly","true"); | ||
1379 | - $("#productArea").attr("readonly","true"); | ||
1380 | - $("#outGreeterName").attr("disabled","true"); | ||
1381 | - $("#inGreeterName").attr("readonly","true"); | ||
1382 | - $("#goodsCusName").attr("readonly","true"); | ||
1383 | - $("#goodsCusTel").attr("readonly","true"); | ||
1384 | - $("#freezeMoneySymbol").attr("readonly","true"); | ||
1385 | - /*$("#remark").attr("readonly","true");*/ | ||
1386 | - $("#goodsRemark").attr("readonly","true"); | ||
1387 | - $('input:checkbox[name="goodsTagIds"]').attr("onclick","return false"); | ||
1388 | - console.info("this invalid"); | ||
1389 | - }else if(viewType =="unfreeze"){ | ||
1390 | - $("#ic").attr("readonly","true"); | ||
1391 | - $("#plate").attr("readonly","true"); | ||
1392 | - $("#trailerNumber").attr("readonly","true"); | ||
1393 | - $("input[name='autocomplete-cartype']").attr("readonly","true"); | ||
1394 | - $("#grossWeight").attr("readonly","true"); | ||
1395 | - $("#tareWeight").attr("readonly","true"); | ||
1396 | - $("#regionCode").attr("readonly","true"); | ||
1397 | - $("#autocomplete-cartype").attr("readonly","true"); | ||
1398 | - $("#productArea").attr("readonly","true"); | ||
1399 | - $("#outGreeterName").attr("disabled","true"); | ||
1400 | - $("#inGreeterName").attr("readonly","true"); | ||
1401 | - $("#goodsCusName").attr("readonly","true"); | ||
1402 | - $("#goodsCusTel").attr("readonly","true"); | ||
1403 | - $("#freezeMoneySymbol").attr("readonly","true"); | ||
1404 | - //$("#remark").attr("readonly","true"); | ||
1405 | - $("#goodsRemark").attr("readonly","true"); | ||
1406 | - $('input:checkbox[name="goodsTagIds"]').attr("onclick","return false"); | ||
1407 | - console.info("this unfreeze"); | ||
1408 | - }else if(viewType =="back"){ | ||
1409 | - //$("#ic").attr("readonly","true"); | ||
1410 | - $("#plate").attr("readonly","true"); | ||
1411 | - $("#trailerNumber").attr("readonly","true"); | ||
1412 | - $("#autocomplete-category").attr("readonly","true"); | ||
1413 | - $("#grossWeight").attr("readonly","true"); | ||
1414 | - $("#tareWeight").attr("readonly","true"); | ||
1415 | - $("#regionCode").attr("readonly","true"); | ||
1416 | - $("input[name='autocomplete-cartype']").attr("readonly","true"); | ||
1417 | - $("#productArea").attr("readonly","true"); | ||
1418 | - $("#outGreeterName").attr("disabled","true"); | ||
1419 | - $("#inGreeterName").attr("readonly","true"); | ||
1420 | - $("#goodsCusName").attr("readonly","true"); | ||
1421 | - $("#goodsCusTel").attr("readonly","true"); | ||
1422 | - $("#freezeMoneySymbol").attr("readonly","true"); | ||
1423 | - $("#remark").attr("readonly","true"); | ||
1424 | - $("#goodsRemark").attr("readonly","true"); | ||
1425 | - $('input:checkbox[name="goodsTagIds"]').attr("onclick","return false"); | ||
1426 | - console.info("this back"); | ||
1427 | - } | ||
1428 | - | ||
1429 | - $('input[readonly],input[disabled],textarea[readonly],textarea[disabled]').attr('tabindex', -1); | ||
1430 | - }); | ||
1431 | - | ||
1432 | - function calculate() { | ||
1433 | - console.info("this -new- calculate"); | ||
1434 | - $.post("/calculate/index.action", | ||
1435 | - $('#feeForm').serialize(), | ||
1436 | - function (data, status) { | ||
1437 | - $("#feeitemedit").html(data); | ||
1438 | - showAllAmount(); | ||
1439 | -// 计算后触发重新校验冻结金额 | ||
1440 | - $('#freezeMoneySymbol').blur(); | ||
1441 | - $("#goodsAllocation").val($("#goodsAllocationText").val()); | ||
1442 | - }); | ||
1443 | - } | ||
1444 | - | ||
1445 | - function icCheck() { | ||
1446 | - var ic = $("#ic").val(); | ||
1447 | - console.info(ic+"this ic check"); | ||
1448 | - $.ajax({ | ||
1449 | - type: 'get', | ||
1450 | - url: '/api/jmsf/ajax/icCheck?ic='+ic, | ||
1451 | - dataType: 'json', | ||
1452 | - async: false, | ||
1453 | - success: function (ret) { | ||
1454 | - if (ret.code == "success") { | ||
1455 | - var aInfo = ret.data.aInfo; | ||
1456 | - $("#customerName").val(aInfo.name); | ||
1457 | - $("#customerPhone").val(aInfo.mobile); | ||
1458 | - $("#customerId").val(aInfo.customerId); | ||
1459 | - $("#accountId").val(aInfo.accountId); | ||
1460 | - $("#balance").val(aInfo.balanceSymbol); | ||
1461 | - $("#fundAccount").val(aInfo.fundAccountId); | ||
1462 | - calcTotalPrice(); | ||
1463 | - } else { | ||
1464 | - $("#ic").val(""); | ||
1465 | - $("#customerName").val(""); | ||
1466 | - $("#customerPhone").val(""); | ||
1467 | - $("#customerId").val(""); | ||
1468 | - $("#ic").attr("icstatus", "-1"); | ||
1469 | - $("#balance").val(""); | ||
1470 | - showWarning('此卡无效,不能交易!'); | ||
1471 | - return false; | ||
1472 | - } | ||
1473 | - } | ||
1474 | - }); | ||
1475 | - } | ||
1476 | - | ||
1477 | - /** 错误消息提示框 */ | ||
1478 | - function showError(message) { | ||
1479 | - bs4pop.alert(message, {type : "error"}); | ||
1480 | - } | ||
1481 | - | ||
1482 | - /** 提示消息弹出框 */ | ||
1483 | - function showInfo(message) { | ||
1484 | - bs4pop.alert(message, {type : "info"}); | ||
1485 | - } | ||
1486 | - | ||
1487 | - /** 警示消息框 */ | ||
1488 | - function showWarning(message) { | ||
1489 | - bs4pop.alert(message, {type : "warning"}); | ||
1490 | - } | ||
1491 | - | ||
1492 | - function viewImgNew() { | ||
1493 | - var imsg = $("#imgs").val(); | ||
1494 | - console.info(imsg); | ||
1495 | - if (typeof (callbackObj) == "undefined") return; | ||
1496 | - callbackObj.showPictureView(imsg); | ||
1497 | - } | ||
1498 | - | ||
1499 | -</script> | ||
1500 | -<script> | ||
1501 | - $(()=>{ | ||
1502 | - // 必填边框加红晚上看不到 | ||
1503 | - $('.form-control[required]').addClass('border border-danger') | ||
1504 | - }) | ||
1505 | - function cancel(){ | ||
1506 | - var clientRedirectTag = $("#clientRedirectTag").val(); | ||
1507 | - if(clientRedirectTag=="true"){ | ||
1508 | - winHrefList(); | ||
1509 | - }else { | ||
1510 | - var source=$("#source").val(); | ||
1511 | - history.go(-source); | ||
1512 | - } | ||
1513 | - } | ||
1514 | - //合并时,接受沈阳版本 | ||
1515 | - //产地联系输入 | ||
1516 | - $("#productArea").autocomplete({ | ||
1517 | - noCache: 1, | ||
1518 | - serviceUrl: '/api/jmsf/ajax/city/', //数据地址 | ||
1519 | - //lookup: countries, 本地测试模拟数据使用结合上面的var countries | ||
1520 | - dataType: 'json', | ||
1521 | - onSearchComplete: function (query, suggestions) { | ||
1522 | - | ||
1523 | - if ($(this).data('selectVal') != $('#productArea').val()) { | ||
1524 | - //console.log("1:"+$(this).data('selectVal')+"2:"+$('#productArea').val()) | ||
1525 | - $("#originId").val(""); | ||
1526 | - $("#parentId").val(""); | ||
1527 | - } | ||
1528 | - }, | ||
1529 | - showNoSuggestionNotice: true, | ||
1530 | - noSuggestionNotice: "不存在,请重输!", | ||
1531 | - onSelect: function (suggestion) { | ||
1532 | - $(this).data('selectVal', suggestion.value); | ||
1533 | - setTimeout(function () { | ||
1534 | - $("#productArea").val(suggestion.value); | ||
1535 | - $("#originId").val(suggestion.id); | ||
1536 | - $("#parentId").val(suggestion.parentId); | ||
1537 | - calcTotalPrice(); | ||
1538 | - }, 50); | ||
1539 | - } | ||
1540 | - }); | ||
1541 | - | ||
1542 | - // 货主姓名联想输入 | ||
1543 | - $('#goodsCusName').autocomplete({ | ||
1544 | - dataType: 'json', | ||
1545 | - noCache: 1, | ||
1546 | - serviceUrl: '/api/jmsf/ajax/customerForEntrance', //数据地址 | ||
1547 | - showNoSuggestionNotice: true, | ||
1548 | - noSuggestionNotice: "不存在,请重输!", | ||
1549 | - onSearchComplete: function (query, suggestions) { | ||
1550 | - if($(this).data('selectVal')!=$('#goodsCusName').val()){ | ||
1551 | - $('#shipperId').val(''); | ||
1552 | - $('#goodsCusTel').val(""); | ||
1553 | - } | ||
1554 | - }, | ||
1555 | - onSelect: function (suggestion) { | ||
1556 | - $(this).data('selectVal', suggestion.value); | ||
1557 | - setTimeout(function () { | ||
1558 | - $('#goodsCusName').val(suggestion.name); | ||
1559 | - $('#goodsCusTel').val(suggestion.contactsPhone); | ||
1560 | - $('#shipperId').val(suggestion.id); | ||
1561 | - //$('#goodsCusTel').trigger("blur") | ||
1562 | - calcTotalPrice(); | ||
1563 | - }, 50); | ||
1564 | - } | ||
1565 | - }); | ||
1566 | - $('#goodsCusName').blur(function () { | ||
1567 | - if($(this).val()==""){ | ||
1568 | - $('#shipperId').val(''); | ||
1569 | - calcTotalPrice(); | ||
1570 | - } | ||
1571 | - }); | ||
1572 | - | ||
1573 | - //计算金额 | ||
1574 | - $('.calculate').on("click", function () { | ||
1575 | - console.log("-1--点击计算-------") | ||
1576 | - $('#updateFeeItems').val(1); | ||
1577 | - $('#correctDiscount').val(1); | ||
1578 | - $("#gz-tag").hide(); | ||
1579 | - calcTotalPrice(); | ||
1580 | - | ||
1581 | - }); | ||
1582 | - | ||
1583 | - function calcTotalPrice() { | ||
1584 | - console.log("-触发计算-------") | ||
1585 | - calculate(); | ||
1586 | - } | ||
1587 | - | ||
1588 | - $('[name="dep"]').change(function () { | ||
1589 | - $("#unitPrice").val(""); | ||
1590 | - var departId = $(this).val(); | ||
1591 | - var depName = $(this).children('option:selected').html(); | ||
1592 | - $("#depName").val(depName); | ||
1593 | - $("#district").empty(); | ||
1594 | - $(".district-no").val(""); | ||
1595 | - var defaultHtml = '<option value="">请选择</option>'; | ||
1596 | - $("#district").append(defaultHtml); | ||
1597 | - //console.info("-------------清空区域") | ||
1598 | - findDistrict(departId); | ||
1599 | - var goodId = $("#goodsId").val(); | ||
1600 | - getUnitPrice(departId, goodId); | ||
1601 | - calcTotalPrice(); | ||
1602 | - }); | ||
1603 | - $("#grossWeight").blur(function(){ | ||
1604 | - calcTotalPrice(); | ||
1605 | - }); | ||
1606 | - $("#tareWeight").blur(function () { | ||
1607 | - calcTotalPrice(); | ||
1608 | - }) | ||
1609 | - $('[name="feeDepId"]').change(function () { | ||
1610 | - calcTotalPrice(); | ||
1611 | - }); | ||
1612 | - $('[name="regionId"]').change(function () { | ||
1613 | - calcTotalPrice(); | ||
1614 | - }); | ||
1615 | - | ||
1616 | - | ||
1617 | - | ||
1618 | - $(".district-name").change(function () { | ||
1619 | - var ss = $(this).children('option:selected'); | ||
1620 | - if (ss.html() != "请选择") { | ||
1621 | - var reName = ss.attr("bind-name"); | ||
1622 | - $("#regionName").val(reName); | ||
1623 | - $(".district-no").val(ss.attr('bind-index')); | ||
1624 | - } | ||
1625 | - }); | ||
1626 | - | ||
1627 | - //$('[name="dep"]').trigger('change'); | ||
1628 | - //选择货区 | ||
1629 | - | ||
1630 | - $('.district-no').on('input', function(){ | ||
1631 | - this.value = this.value.replace(/[^\d]/g, ''); | ||
1632 | - var thisVal = $(this).val(); | ||
1633 | - if( thisVal !=='' && $('.district-name').find('option[bind-index=' + thisVal + ']').length ) { | ||
1634 | - $('.district-name option').prop('selected', false); | ||
1635 | - $('.district-name').find('option[bind-index=' + thisVal + ']').prop('selected', true); | ||
1636 | - } else { | ||
1637 | - $('.district-name option').prop('selected', false); | ||
1638 | - $('.district-name option:first-child').prop('selected', true); | ||
1639 | - } | ||
1640 | - | ||
1641 | - }); | ||
1642 | - | ||
1643 | - function findDistrict(depId) { | ||
1644 | - $.ajax({ | ||
1645 | - type: 'get', | ||
1646 | - url: '/api/jmsf/ajax/district/search.action', | ||
1647 | - data: {depId: depId}, | ||
1648 | - dataType: 'json', | ||
1649 | - async: false, | ||
1650 | - success: function (data) { | ||
1651 | - if (data.code == "200") { | ||
1652 | - var array = []; | ||
1653 | - var data = $.map(data.data, function (obj) { | ||
1654 | - obj.text = obj.text || obj.name; | ||
1655 | - return obj; | ||
1656 | - }); | ||
1657 | - for (var x = 0;x < data.length; x++) { | ||
1658 | - array.push(data[x]); | ||
1659 | - } | ||
1660 | - | ||
1661 | - } | ||
1662 | - ret=array; | ||
1663 | - for (var index = 0;index < array.length; index++){ | ||
1664 | - var preTxt = ""; | ||
1665 | - if(ret[index].number){ | ||
1666 | - preTxt = ret[index].number + " | "; | ||
1667 | - } | ||
1668 | - var optionItemHtml = '<option bind-name="'+ret[index].name+'" + bind-index="' + ( ret[index].number==undefined ? '' :ret[index].number ) + '" value="' + ret[index].id + '">' + preTxt + ret[index].name + '</option>'; | ||
1669 | - $("#district").append(optionItemHtml); | ||
1670 | - } | ||
1671 | - } | ||
1672 | - }); | ||
1673 | - } | ||
1674 | - | ||
1675 | - function getUnitPrice(depId, goodsId) { | ||
1676 | - var productId = $("#productId").val(); | ||
1677 | - console.info("getUnitPrice depId:"+depId+",productId:"+productId) | ||
1678 | - $.ajax({ | ||
1679 | - type: 'get', | ||
1680 | - url: '/api/jmsf/ajax/unitPrice', | ||
1681 | - data: {depId: depId, goodsId: goodsId,productId:productId}, | ||
1682 | - dataType: 'json', | ||
1683 | - async: false, | ||
1684 | - success: function (ret) { | ||
1685 | - //console.log("ret:"+ret.price+":"+ret.priceSymbol+":"+ret.sumPrice+":"+ret.sumPriceSymbol); | ||
1686 | - var priceAndSumPrice = ret.priceAndSumPrice; | ||
1687 | - if(priceAndSumPrice.productPrice=="0"){ | ||
1688 | - $("#unitPriceSymbol").val(""); | ||
1689 | - $("#sumPriceSymbol").val(""); | ||
1690 | - showWarning("当前商品单价为空"); | ||
1691 | - }else{ | ||
1692 | - $("#unitPrice").val(priceAndSumPrice.productPrice); | ||
1693 | - $("#sumPrice").val(priceAndSumPrice.sumPriceLong); | ||
1694 | - $("#unitPriceSymbol").val(priceAndSumPrice.productPriceView); | ||
1695 | - $("#sumPriceSymbol").val(priceAndSumPrice.sumPriceDoubleView); | ||
1696 | - } | ||
1697 | - | ||
1698 | - //$("#weight").val(ret.weight); | ||
1699 | - | ||
1700 | - } | ||
1701 | - }); | ||
1702 | - } | ||
1703 | - | ||
1704 | - $("#icReader").click(function () { | ||
1705 | - var ic = reader(); | ||
1706 | - if (typeof(ic) == "undefined") { | ||
1707 | - showWarning('请检查读卡的设备是否已连接!'); | ||
1708 | - } else if (ic == -1) { | ||
1709 | - showWarning('读卡异常,请重新放置卡!'); | ||
1710 | - } else { | ||
1711 | - icCheck(); | ||
1712 | - } | ||
1713 | - | ||
1714 | - }); | ||
1715 | - $("#bankReader").click(function () { | ||
1716 | - var ic = bankReader(); | ||
1717 | - if (typeof(ic) == "undefined") { | ||
1718 | - showWarning('请检查读卡的设备是否已连接!'); | ||
1719 | - } else if (ic == -1) { | ||
1720 | - showWarning('读卡异常,请重新放置卡!'); | ||
1721 | - } else { | ||
1722 | - icCheck(); | ||
1723 | - } | ||
1724 | - | ||
1725 | - }); | ||
1726 | - | ||
1727 | - // 读园区卡 | ||
1728 | - function readerIc() { | ||
1729 | - if (typeof(callbackObj) == "undefined") return false; | ||
1730 | - var json = JSON.parse(callbackObj.readCardNumber()); | ||
1731 | - var result = { | ||
1732 | - message: json.message, | ||
1733 | - card: '' | ||
1734 | - } | ||
1735 | - if(json.code == 0){ | ||
1736 | - result['card'] = json.data; | ||
1737 | - } | ||
1738 | - return result; | ||
1739 | - }; | ||
1740 | - function reader() { | ||
1741 | - var ic = readerIc() | ||
1742 | - if(ic.card) { | ||
1743 | - $("#ic").val(ic.card); | ||
1744 | - return ic.card; | ||
1745 | - } else { | ||
1746 | - bs4pop.alert(ic.message, {type : "error"}); | ||
1747 | - } | ||
1748 | - return card; | ||
1749 | - }; | ||
1750 | - // 读银行卡 | ||
1751 | - function readerBankIc() { | ||
1752 | - if (typeof(callbackObj) == "undefined") return false; | ||
1753 | - var json = JSON.parse(callbackObj.readBackCardNumber()); | ||
1754 | - var result = { | ||
1755 | - message: json.message, | ||
1756 | - card: '' | ||
1757 | - } | ||
1758 | - if(json.code == 0){ | ||
1759 | - result['card'] = json.data; | ||
1760 | - } | ||
1761 | - return result; | ||
1762 | - }; | ||
1763 | - function bankReader() { | ||
1764 | - var ic = readerBankIc() | ||
1765 | - if(ic.card) { | ||
1766 | - $("#ic").val(ic.card); | ||
1767 | - return ic.card; | ||
1768 | - } else { | ||
1769 | - bs4pop.alert(ic.message, {type : "error"}); | ||
1770 | - } | ||
1771 | - return card; | ||
1772 | - } | ||
1773 | - | ||
1774 | - //园区卡输入 | ||
1775 | - function onKeyUpEnter(e) { | ||
1776 | - | ||
1777 | - if (e.keyCode == 13) { | ||
1778 | - checkCardAndCalc(); | ||
1779 | - } | ||
1780 | - } | ||
1781 | - function checkCardAndCalc() { | ||
1782 | - var ic = $("#ic").val(); | ||
1783 | - if(ic == ""){ | ||
1784 | - $("#ic").val(""); | ||
1785 | - $("#customerName").val(""); | ||
1786 | - $("#customerPhone").val(""); | ||
1787 | - $("#customerId").val(""); | ||
1788 | - $("#accountId").val(""); | ||
1789 | - $("#ic").attr("icstatus", "-1"); | ||
1790 | - $("#balance").val(""); | ||
1791 | - calcTotalPrice(); | ||
1792 | - } | ||
1793 | - icCheck(); | ||
1794 | - } | ||
1795 | - function checkCard() { | ||
1796 | - var ic = $("#ic").val(); | ||
1797 | - if(ic == ""){ | ||
1798 | - $("#ic").val(""); | ||
1799 | - $("#customerName").val(""); | ||
1800 | - $("#customerPhone").val(""); | ||
1801 | - $("#customerId").val(""); | ||
1802 | - $("#accountId").val(""); | ||
1803 | - $("#ic").attr("icstatus", "-1"); | ||
1804 | - $("#balance").val(""); | ||
1805 | - } | ||
1806 | - icCheck(); | ||
1807 | - } | ||
1808 | - $("#ic").blur(function(){ | ||
1809 | - var viewType = $("#viewType").val(); | ||
1810 | - if(viewType =="pay"){ | ||
1811 | - checkCard() | ||
1812 | - } | ||
1813 | - }); | ||
1814 | - $("#freezeMoneySymbol").blur(function () { | ||
1815 | - freezeGtTotal(); | ||
1816 | - }) | ||
1817 | - | ||
1818 | - String.prototype.replaceAll = function(s1,s2){ | ||
1819 | - return this.replace(new RegExp(s1,"gm"),s2); | ||
1820 | - } | ||
1821 | - // 展开收起] | ||
1822 | - $('.switchshow-btn').on('click', function() { | ||
1823 | - if($(this).text() === '收起') { | ||
1824 | - $(this).text('展开') | ||
1825 | - } else { | ||
1826 | - $(this).text('收起') | ||
1827 | - } | ||
1828 | - $(this).parent().siblings('.form-group-wrap').toggleClass('height0'); | ||
1829 | - }) | ||
1830 | - function myFixed(str){ | ||
1831 | - var r = /^([0-9]+\.\d{2})5[0]*$/g; | ||
1832 | - var r1 = /^([0-9]+\.\d{2})5[0-9]*[1-9][0-9]*$/g; | ||
1833 | - if(r.test(str)){ | ||
1834 | - str = str.replace(r,"$1"); | ||
1835 | - } | ||
1836 | - else if(r1.test(str)){ | ||
1837 | - str = str.replace(r1,"$16"); | ||
1838 | - } | ||
1839 | - str = parseFloat(str).toFixed(0); | ||
1840 | - return str; | ||
1841 | - } | ||
1842 | - function viewImg(){ | ||
1843 | - if (typeof(callbackObj) == "undefined"){ | ||
1844 | - showWarning('请检查设备是否已连接!'); | ||
1845 | - return; | ||
1846 | - }else{ | ||
1847 | - var imgInfo = new Object(); | ||
1848 | - imgInfo.image1=$("#image1").val(); | ||
1849 | - imgInfo.image2=$("#image2").val(); | ||
1850 | - imgInfo.image3=$("#image3").val(); | ||
1851 | - imgInfo.image4=$("#image4").val(); | ||
1852 | - imgInfo.image5=$("#image5").val(); | ||
1853 | - imgInfo.image6=$("#image6").val(); | ||
1854 | - var result =JSON.stringify(imgInfo); | ||
1855 | - callbackObj.doorCaptureShow(result); | ||
1856 | - } | ||
1857 | - } | ||
1858 | - | ||
1859 | - | ||
1860 | - | ||
1861 | - | ||
1862 | - | ||
1863 | - function accDiv(arg1,arg2){ | ||
1864 | - var t1=0,t2=0,r1,r2; | ||
1865 | - try{ | ||
1866 | - t1=arg1.toString().split(".")[1].length}catch(e){ | ||
1867 | - }try{ | ||
1868 | - t2=arg2.toString().split(".")[1].length}catch(e){} | ||
1869 | - with(Math){ r1=Number(arg1.toString().replace(".","")) | ||
1870 | - r2=Number(arg2.toString().replace(".","")) | ||
1871 | - return (r1/r2)*pow(10,t2-t1); } | ||
1872 | - } | ||
1873 | - function accMul(arg1,arg2){ | ||
1874 | - var m=0,s1=arg1.toString(), | ||
1875 | - s2=arg2.toString(); | ||
1876 | - try{ | ||
1877 | - m+=s1.split(".")[1].length}catch(e){} | ||
1878 | - try{ | ||
1879 | - m+=s2.split(".")[1].length}catch(e){} | ||
1880 | - return Number(s1.replace(".",""))*Number(s2.replace(".",""))/Math.pow(10,m | ||
1881 | - )} | ||
1882 | - function accAdd(arg1,arg2){ | ||
1883 | - var r1,r2,m; | ||
1884 | - try{ | ||
1885 | - r1=arg1.toString().split(".")[1].length | ||
1886 | - }catch(e){ | ||
1887 | - r1=0} try{ | ||
1888 | - r2=arg2.toString().split(".")[1].length}catch(e){r2=0} m=Math.pow(10,Math.max(r1,r2)) | ||
1889 | - return (arg1*m+arg2*m)/m | ||
1890 | - } | ||
1891 | - Number.prototype.div = function (arg){ | ||
1892 | - return accDiv(this, arg); | ||
1893 | - } | ||
1894 | - Number.prototype.mul = function (arg){ | ||
1895 | - return accMul(arg, this); | ||
1896 | - } | ||
1897 | - Number.prototype.add = function (arg){ | ||
1898 | - return accAdd(arg,this); | ||
1899 | - } | ||
1900 | -</script><script> | ||
1901 | - var weightType= $("#weightType").val(); | ||
1902 | - function checkPoundWeight(weightVal, errorbox) { | ||
1903 | - $("#weight").val(""); | ||
1904 | - var valid = true; | ||
1905 | - var grossWeight = $("#grossWeight").val(); | ||
1906 | - var tareWeight = $("#tareWeight").val(); | ||
1907 | - if (weightVal === ''|| weightVal ==undefined) { | ||
1908 | - errorbox.html("必填"); | ||
1909 | - valid = false; | ||
1910 | - } else if (!checkWeightInt(grossWeight, 'grossWeight')) { | ||
1911 | - $('#grossWeight + .defi-error').html("请输整数"); | ||
1912 | - valid = false; | ||
1913 | - } else if (!checkWeightInt(tareWeight, 'tareWeight')) { | ||
1914 | - $('#tareWeight + .defi-error').html("请输整数"); | ||
1915 | - valid = false; | ||
1916 | - } else if (0 <= weightVal && weightVal <= 999999) { | ||
1917 | - if (parseInt(grossWeight) <= parseInt(tareWeight)) { | ||
1918 | - errorbox.html("毛重需大于皮重"); | ||
1919 | - valid = false; | ||
1920 | - } else { | ||
1921 | - $("#weight").val(parseInt(grossWeight) - parseInt(tareWeight)); | ||
1922 | - $('#grossWeight + .defi-error, #tareWeight + .defi-error').html(""); | ||
1923 | - } | ||
1924 | - } else { | ||
1925 | - errorbox.html("请输0到999999之间数"); | ||
1926 | - valid = false; | ||
1927 | - } | ||
1928 | - return valid; | ||
1929 | - } | ||
1930 | - | ||
1931 | - | ||
1932 | - function checkWeightInt(weight, iderror) { | ||
1933 | - var valid = false; | ||
1934 | - if (/^\d+$/.test(weight)) { | ||
1935 | - $('#' + iderror + ' + .defi-error').html(""); | ||
1936 | - valid = true; | ||
1937 | - } | ||
1938 | - return valid; | ||
1939 | - } | ||
1940 | - | ||
1941 | - | ||
1942 | - function sumWeight() { | ||
1943 | - var num = $("#goodsNum").val(); | ||
1944 | - var itemW = $("#itemWeight").val(); | ||
1945 | - $("#weight").val(num * itemW); | ||
1946 | - } | ||
1947 | - | ||
1948 | - | ||
1949 | - if (weightType== 1) { //整车称重 | ||
1950 | - $("#grossWeight").change(function () { | ||
1951 | - checkPoundWeight($(this).val(), $("#grossWeighterror")) | ||
1952 | - }); | ||
1953 | - | ||
1954 | - $("#tareWeight").change(function () { | ||
1955 | - checkPoundWeight($(this).val(), $("#tareWeighterror")) | ||
1956 | - | ||
1957 | - }); | ||
1958 | - } else { | ||
1959 | - $("#goodsNum").keyup(function () { | ||
1960 | - sumWeight(); | ||
1961 | - }); | ||
1962 | - $("#itemWeight").keyup(function () { | ||
1963 | - sumWeight(); | ||
1964 | - }); | ||
1965 | - } | ||
1966 | - | ||
1967 | - | ||
1968 | - // 验证-- | ||
1969 | - $('form').validate(); | ||
1970 | - | ||
1971 | - $("#save_btn").click(function () { | ||
1972 | - //checkCard(); | ||
1973 | - var viewType= $("#viewType").val(); | ||
1974 | - if(viewType=='pay' ||viewType=='update'){ | ||
1975 | - if($("#handReceivableAmountLong").val()>0){ | ||
1976 | - var steveTeams = $("#steveTeams").children('option:selected').val(); | ||
1977 | - if(steveTeams==undefined || steveTeams == ""){ | ||
1978 | - flag = true; | ||
1979 | - bs4pop.confirm('请选择装卸队!', { | ||
1980 | - type: 0, | ||
1981 | - title: '提示', | ||
1982 | - btn: ['确定'] | ||
1983 | - }); | ||
1984 | - return true; | ||
1985 | - } | ||
1986 | - } | ||
1987 | - } | ||
1988 | - | ||
1989 | - | ||
1990 | - if ($("#customerId").val() == "" && $("#ic").val() != "") { | ||
1991 | - $("#customerId + label.error").text("不存在,请重输") | ||
1992 | - return; | ||
1993 | - } | ||
1994 | - | ||
1995 | - var fp = $("#freezePriceError").html(); | ||
1996 | - if (fp!=undefined && fp != "") { | ||
1997 | - return; | ||
1998 | - } | ||
1999 | - var fp = $("#freezeMoneySymbol-error").html(); | ||
2000 | - if (fp!=undefined && fp != "") { | ||
2001 | - return; | ||
2002 | - } | ||
2003 | - | ||
2004 | - if ($("#feeForm").validate().form() === true) { | ||
2005 | - var canSubmit = true; | ||
2006 | - if ($("#productArea").val() == "" || ($("#productArea").val() != "" && $("#originId").val() != "")) { | ||
2007 | - | ||
2008 | - } else { | ||
2009 | - $("#productArea + label.error").text("不存在,请重输") | ||
2010 | - canSubmit = false; | ||
2011 | - } | ||
2012 | - | ||
2013 | - if (weightType != "2") { | ||
2014 | - if ($("#carType").val() != "") { | ||
2015 | - } else { | ||
2016 | - $("#carType + label.error").text("不存在,请重输") | ||
2017 | - | ||
2018 | - canSubmit = false; | ||
2019 | - } | ||
2020 | - } | ||
2021 | - if ($("#productId").val() != "") { | ||
2022 | - | ||
2023 | - } else { | ||
2024 | - $("#productId+ label.error").text("不存在,请重输") | ||
2025 | - canSubmit = false; | ||
2026 | - } | ||
2027 | - | ||
2028 | - if ($("#inGreeterId").val() != "") { | ||
2029 | - } else { | ||
2030 | - $("#inGreeterId + label.error").text("不存在,请重输") | ||
2031 | - | ||
2032 | - canSubmit = false; | ||
2033 | - } | ||
2034 | - if ($("#outGreeterName").val() != "" && $("#outGreeterId").val() == "") { | ||
2035 | - $("#outGreeterId + label.error").text("不存在,请重输") | ||
2036 | - canSubmit = false; | ||
2037 | - } | ||
2038 | - $('.feeitemedit .fees').each(function(){ | ||
2039 | - if(this.value === '') { | ||
2040 | - bs4pop.alert("项目收费金额不能为空或小于0", {type: 0}); | ||
2041 | - canSubmit = false; | ||
2042 | - } | ||
2043 | - }) | ||
2044 | - if(optType=="gz" && weightType==1){ | ||
2045 | - if (!checkPoundWeight($("#grossWeight").val(), $("#grossWeighterror")) || !checkPoundWeight($("#tareWeight").val(), $("#tareWeighterror"))) { | ||
2046 | - canSubmit = false; | ||
2047 | - } | ||
2048 | - } | ||
2049 | - | ||
2050 | - | ||
2051 | - var itemErrorCount = $('#feeitemedit .singleRealfee.red').length; | ||
2052 | - console.log("itemErrorCount:"+itemErrorCount); | ||
2053 | - if(itemErrorCount>0){ | ||
2054 | - canSubmit = false; | ||
2055 | - bs4pop.confirm('收费项目实收栏目,有为负的金额,请调整收费项或相应计费规则!', { | ||
2056 | - type: 0, | ||
2057 | - title: '提示', | ||
2058 | - btn: ['确定'] | ||
2059 | - }); | ||
2060 | - return true; | ||
2061 | - } | ||
2062 | - if('sy'==$("#marketFlag").val()){ | ||
2063 | - var carTypeID = $("#carType").val(); | ||
2064 | - if(carTypeID==5||carTypeID==6){ | ||
2065 | - var trailerNumber =$("#trailerNumber").val(); | ||
2066 | - if(trailerNumber == ""){ | ||
2067 | - canSubmit = false; | ||
2068 | - bs4pop.confirm('该车型需要填挂号!', { | ||
2069 | - type: 0, | ||
2070 | - title: '提示', | ||
2071 | - btn: ['确定'] | ||
2072 | - }); | ||
2073 | - return true; | ||
2074 | - } | ||
2075 | - } | ||
2076 | - } | ||
2077 | - | ||
2078 | - if (canSubmit) { | ||
2079 | - $.ajax({ | ||
2080 | - type: 'post', | ||
2081 | - url: '/entranceFeeBill/edit', | ||
2082 | - data: $('#feeForm').serialize(), | ||
2083 | - dataType: 'json', | ||
2084 | - async: false, | ||
2085 | - success: function (ret) { | ||
2086 | - if (ret.success == true) { | ||
2087 | - //TLOG.component.editNewData($('#feeForm'),$("#number").val()); | ||
2088 | - bs4pop.alert(ret.msg, {type: 0}, function () { | ||
2089 | - history.go(-1); | ||
2090 | - }); | ||
2091 | - }else{ | ||
2092 | - bs4pop.alert(ret.msg, {type: 0}); | ||
2093 | - } | ||
2094 | - }, | ||
2095 | - error: function () { | ||
2096 | - bs4pop.alert("修改失败,请稍后重试!", {type: 0}, function () { | ||
2097 | - history.go(-1); | ||
2098 | - }); | ||
2099 | - } | ||
2100 | - }); | ||
2101 | - } | ||
2102 | - } | ||
2103 | - }); | ||
2104 | - | ||
2105 | - | ||
2106 | - $("#proveType").change(function () { | ||
2107 | - var ss = $(this).children('option:selected'); | ||
2108 | - $("#proveTypeName").val(ss.html()); | ||
2109 | - calcTotalPrice(); | ||
2110 | - }); | ||
2111 | - $('[name="goodsTagIds"]').change(function () { | ||
2112 | - calcTotalPrice(); | ||
2113 | - }); | ||
2114 | - | ||
2115 | - // 车型联想 | ||
2116 | - $('#autocomplete-cartype').autocomplete({ | ||
2117 | - dataType: 'json', | ||
2118 | - noCache: 1, | ||
2119 | - serviceUrl: '/api/jmsf/ajax/ctc', //数据地址 | ||
2120 | - showNoSuggestionNotice: true, | ||
2121 | - noSuggestionNotice: "不存在,请重输!", | ||
2122 | - onSearchComplete: function (query, suggestions) { | ||
2123 | - var has = false; | ||
2124 | - if (suggestions && suggestions.length > 0) { | ||
2125 | - for (var i = 0; i < suggestions.length; i++) { | ||
2126 | - if (suggestions[i].value == $('#autocomplete-cartype').val()) { | ||
2127 | - has = true; | ||
2128 | - break; | ||
2129 | - } | ||
2130 | - } | ||
2131 | - } | ||
2132 | - if ($(this).data('selectVal') != $('#autocomplete-cartype').val() && !has) { | ||
2133 | - $("#carType").val(""); | ||
2134 | - $("#ctypew").val(""); | ||
2135 | - } | ||
2136 | -// if (suggestions.length == 0) { | ||
2137 | -// $('.autocomplete-suggestions').eq(0).show(); | ||
2138 | -// $('.autocomplete-suggestions').eq(0).html('<span>该车型名称不存在,请重新输入</span>'); | ||
2139 | -// } | ||
2140 | - }, | ||
2141 | - onSelect: function (suggestion) { | ||
2142 | - $(this).data('selectVal', suggestion.value); | ||
2143 | - $("#autocomplete-cartype").val(suggestion.value); | ||
2144 | - $("#carTypeId").val(suggestion.id); | ||
2145 | - $("#ctypew").val(suggestion.data); | ||
2146 | - $("#carTypeName").val(suggestion.name); | ||
2147 | - $("#carTypeCode").val(suggestion.code); | ||
2148 | - $("#autocomplete-cartype-error").text(""); | ||
2149 | - if('' == 1){ | ||
2150 | - console.info("hasBackSkin true"); | ||
2151 | - }else { | ||
2152 | - console.info("hasBackSkin false"); | ||
2153 | - if (weightType== 1) { //整车称重 | ||
2154 | - $("#tareWeight").val(suggestion.data); | ||
2155 | - if(suggestion.data ==undefined){ | ||
2156 | - $("#autocomplete-cartype-error").text("公共车型自重未配置"); | ||
2157 | - } | ||
2158 | - checkPoundWeight(suggestion.data, $("#tareWeighterror")) | ||
2159 | - } | ||
2160 | - } | ||
2161 | - | ||
2162 | - calcTotalPrice(); | ||
2163 | - } | ||
2164 | - }); | ||
2165 | - | ||
2166 | - //商品联想 | ||
2167 | - $('#autocomplete-category').autocomplete({ | ||
2168 | - serviceUrl: '/api/jmsf/ajax/category', | ||
2169 | - dataType: 'json', | ||
2170 | - noCache: 1, | ||
2171 | - params: {'allFlag': false}, | ||
2172 | - showNoSuggestionNotice: true, | ||
2173 | - noSuggestionNotice: "不存在,请重输!", | ||
2174 | - onSearchComplete: function (query, suggestions) { | ||
2175 | - var has = false; | ||
2176 | - if (suggestions && suggestions.length > 0) { | ||
2177 | - for (var i = 0; i < suggestions.length; i++) { | ||
2178 | - if (suggestions[i].value == $('#autocomplete-category').val()) { | ||
2179 | - has = true; | ||
2180 | - break; | ||
2181 | - } | ||
2182 | - } | ||
2183 | - } | ||
2184 | - if ($(this).data('selectVal') != $('#autocomplete-category').val() && !has) { | ||
2185 | - $("#productId").val(""); | ||
2186 | - } | ||
2187 | - | ||
2188 | - }, | ||
2189 | - onSelect: function (suggestion) { | ||
2190 | - $(this).data('selectVal', suggestion.value); | ||
2191 | - $("#autocomplete-category").val(suggestion.value); | ||
2192 | - $("#productId").val(suggestion.id); | ||
2193 | - $("#parentName").val(suggestion.parentName); | ||
2194 | - if(suggestion.parent==0){ | ||
2195 | - $("#categoryId").val(suggestion.id); | ||
2196 | - }else { | ||
2197 | - $("#categoryId").val(suggestion.parent); | ||
2198 | - } | ||
2199 | - $("#autocomplete-category + label.error").text(""); | ||
2200 | - calcTotalPrice(); | ||
2201 | - findHandTeam(); | ||
2202 | - } | ||
2203 | - }); | ||
2204 | - | ||
2205 | - $("#autocomplete-cartype").keyup(function () { | ||
2206 | - if ($(this).val() == "" && '1' == 1) { | ||
2207 | - $("#ctypew").val(""); | ||
2208 | - } | ||
2209 | - }); | ||
2210 | - | ||
2211 | - $('#inGreeterName').autocomplete({ | ||
2212 | - serviceUrl: '/api/jmsf/ajax/greeteName', | ||
2213 | - dataType: 'json', | ||
2214 | - noCache: 1, | ||
2215 | - params: {'allFlag': false}, | ||
2216 | - showNoSuggestionNotice: true, | ||
2217 | - noSuggestionNotice: "不存在,请重输!", | ||
2218 | - onSearchComplete: function (query, suggestions) { | ||
2219 | - var has = false; | ||
2220 | - if (suggestions && suggestions.length > 0) { | ||
2221 | - for (var i = 0; i < suggestions.length; i++) { | ||
2222 | - if (suggestions[i].value == $('#inGreeterName').val()) { | ||
2223 | - has = true; | ||
2224 | - break; | ||
2225 | - } | ||
2226 | - } | ||
2227 | - } | ||
2228 | - if ($(this).data('selectVal') != $('#inGreeterName').val() && !has) { | ||
2229 | - $("#inGreeterId").val(""); | ||
2230 | - } | ||
2231 | - }, | ||
2232 | - onSelect: function (suggestion) { | ||
2233 | - $(this).data('selectVal', suggestion.value); | ||
2234 | - $("#inGreeterName").val(suggestion.name); | ||
2235 | - $("#inGreeterId").val(suggestion.data); | ||
2236 | - $("#inGreeterName + label.error").text(""); | ||
2237 | - | ||
2238 | - } | ||
2239 | - }); | ||
2240 | - | ||
2241 | - $('#outGreeterName').autocomplete({ | ||
2242 | - serviceUrl: '/api/jmsf/ajax/greeteName', | ||
2243 | - dataType: 'json', | ||
2244 | - noCache: 1, | ||
2245 | - params: {'allFlag': false}, | ||
2246 | - showNoSuggestionNotice: true, | ||
2247 | - noSuggestionNotice: "不存在,请重输!", | ||
2248 | - onSearchComplete: function (query, suggestions) { | ||
2249 | - var has = false; | ||
2250 | - if (suggestions && suggestions.length > 0) { | ||
2251 | - for (var i = 0; i < suggestions.length; i++) { | ||
2252 | - if (suggestions[i].value == $('#outGreeterName').val()) { | ||
2253 | - has = true; | ||
2254 | - break; | ||
2255 | - } | ||
2256 | - } | ||
2257 | - } | ||
2258 | - if ($(this).data('selectVal') != $('#outGreeterName').val() && !has) { | ||
2259 | - $("#outGreeterId").val(""); | ||
2260 | - } | ||
2261 | - console.log(suggestions.length); | ||
2262 | - }, | ||
2263 | - onSelect: function (suggestion) { | ||
2264 | - $(this).data('selectVal', suggestion.value); | ||
2265 | - $("#outGreeterName").val(suggestion.name); | ||
2266 | - $("#outGreeterId").val(suggestion.data); | ||
2267 | - $("#outGreeterName + label.error").text(""); | ||
2268 | - | ||
2269 | - } | ||
2270 | - }); | ||
2271 | - | ||
2272 | - // 修改项目金额时仅收费项目可改 | ||
2273 | - $('.modify-feeitem').on('click', function() { | ||
2274 | - $('#feeitemedit .chargeitem :checked').siblings('.fees').attr('readonly', false); | ||
2275 | - /*$('#feeitemedit .chargeitem :checked').next('.fees').each(function () { | ||
2276 | - $(this).attr("readonly", false); | ||
2277 | - })*/ | ||
2278 | - $('#updateFeeItems').val(2); | ||
2279 | - $('#correctDiscount').val(2); | ||
2280 | - $("input[name='billItemCheckIds']").each(function () { | ||
2281 | - $(this).attr("onclick", "return false"); | ||
2282 | - }) | ||
2283 | - }) | ||
2284 | - | ||
2285 | - | ||
2286 | - /*****************************************自定义事件区 end**************************************/ | ||
2287 | -</script><script> | ||
2288 | - | ||
2289 | - function winHrefList(){ | ||
2290 | - window.location.href = "http://jmsf.diligrp.com/entranceFeeBill/list.html" | ||
2291 | - } | ||
2292 | - // 验证-- | ||
2293 | - $('form').validate(); | ||
2294 | - $('#pay-btn').on('click', function(){ | ||
2295 | - $("#optType").val(1); | ||
2296 | - doBiz(1,""); | ||
2297 | - }); | ||
2298 | - // 仅冻结页面校验冻结金额>缴费金额 | ||
2299 | - function freezeGtTotal() { | ||
2300 | - if($("#marketFlag").val()=='cc'){ | ||
2301 | - freezeGtTotalCC(); | ||
2302 | - }else { | ||
2303 | - freezeGtTotalSY(); | ||
2304 | - } | ||
2305 | - } | ||
2306 | - function freezeGtTotalSY() { | ||
2307 | - var price = $("#freezeMoneySymbol").val(); | ||
2308 | - if(price == undefined || price == ""){ | ||
2309 | - $("#freezeMoneySymbol").val("0"); | ||
2310 | - price = "0"; | ||
2311 | - } | ||
2312 | - price=price.replace(new RegExp(",", 'g'), "") | ||
2313 | - var freezePrice = new Number(price); | ||
2314 | - var totalFreeze = $("#freezePriceVal").val(); | ||
2315 | - totalFreeze=totalFreeze.replace(new RegExp(",", 'g'),""); | ||
2316 | - var totalPrice = new Number(totalFreeze); | ||
2317 | - if(freezePrice<totalPrice){ | ||
2318 | - var error = $("#freezeMoneySymbol-error"); | ||
2319 | - if(error==undefined || error.text()==""){ | ||
2320 | - $("#freezePriceError").html("不能小于所有费用项的应收金额之和") | ||
2321 | - $("#freezeMoneySymbol").attr("aria-invalid",true); | ||
2322 | - $("#freezeMoneySymbol").removeClass("is-valid"); | ||
2323 | - $("#freezeMoneySymbol").addClass("is-invalid"); | ||
2324 | - return false; | ||
2325 | - }else { | ||
2326 | - $("#freezePriceError").html(""); | ||
2327 | - } | ||
2328 | - }else { | ||
2329 | - $("#freezePriceError").html("") | ||
2330 | - } | ||
2331 | - $("#freezePrice").val(price) | ||
2332 | - } | ||
2333 | - | ||
2334 | - // 仅冻结页面校验冻结金额>缴费金额 | ||
2335 | - function freezeGtTotalCC() { | ||
2336 | - var price = $("#freezeMoneySymbol").val(); | ||
2337 | - if(price == undefined || price == ""){ | ||
2338 | - $("#freezeMoneySymbol").val("0"); | ||
2339 | - price = "0"; | ||
2340 | - } | ||
2341 | - price=price.replace(new RegExp(",", 'g'), "") | ||
2342 | - var freezePrice = new Number(price); | ||
2343 | - if (freezePrice<=0){ | ||
2344 | - var error = $("#freezeMoneySymbol-error"); | ||
2345 | - if(error==undefined || error.text()==""){ | ||
2346 | - $("#freezePriceError").html("冻结金额不能小于1") | ||
2347 | - return false; | ||
2348 | - }else { | ||
2349 | - $("#freezePriceError").html(""); | ||
2350 | - } | ||
2351 | - }else { | ||
2352 | - $("#freezePriceError").html("") | ||
2353 | - } | ||
2354 | - $("#freezePrice").val(price) | ||
2355 | - } | ||
2356 | - | ||
2357 | - $('#freeze-btn-auth').on('click', function(){ | ||
2358 | - freezeGtTotal(); | ||
2359 | - $("#optType").val(2); | ||
2360 | - doBiz(2,""); | ||
2361 | - }); | ||
2362 | - $('#freeze-btn').on('click', function(){ | ||
2363 | - $("#optType").val(2); | ||
2364 | - doBiz(2,""); | ||
2365 | - }); | ||
2366 | - $('#unfreeze-btn').on('click', function(){ | ||
2367 | - $("#optType").val(3); | ||
2368 | - doBiz(3,""); | ||
2369 | - }); | ||
2370 | - | ||
2371 | - function checkInfo(type) { | ||
2372 | - var flag = false; | ||
2373 | - var parea =$("#productArea").val(); | ||
2374 | - var fp = $("#freezePriceError").html(); | ||
2375 | - if (fp!=undefined && fp != "") { | ||
2376 | - return true; | ||
2377 | - } | ||
2378 | - | ||
2379 | - $("#feeForm").validate(); | ||
2380 | - if($("#feeForm").validate().form() != true){ | ||
2381 | - return true; | ||
2382 | - } | ||
2383 | - | ||
2384 | - if(parea!=undefined && parea.length>0){ | ||
2385 | - var oid= $("#originId").val(); | ||
2386 | - if(oid!=null && oid.length == 0){ | ||
2387 | - flag = true; | ||
2388 | - showWarning('请选择正确的货物产地!'); | ||
2389 | - //bs4pop.alert('请选择正确的货物产地!', {type: 'error'}); | ||
2390 | - } | ||
2391 | - } | ||
2392 | - if(flag){ | ||
2393 | - return true; | ||
2394 | - } | ||
2395 | - if(type == 1){ | ||
2396 | - if($("#handReceivableAmountLong").val()>0){ | ||
2397 | - var steveRatio = $("#handlingRatio").children('option:selected').val(); | ||
2398 | - if(steveRatio==undefined || steveRatio == ""){ | ||
2399 | - flag = true; | ||
2400 | - showWarning('请选择卸货比例!'); | ||
2401 | - return true; | ||
2402 | - } | ||
2403 | - } | ||
2404 | - } | ||
2405 | - if(flag){ | ||
2406 | - return true; | ||
2407 | - } | ||
2408 | - if(type!=3){//type为3是解冻 | ||
2409 | - | ||
2410 | - if($("#handReceivableAmountLong").val()>0){ | ||
2411 | - | ||
2412 | - var steveTeams = $("#steveTeams").children('option:selected').val(); | ||
2413 | - if(steveTeams==undefined || steveTeams == ""){ | ||
2414 | - flag = true; | ||
2415 | - showWarning('请选择装卸队!'); | ||
2416 | - return true; | ||
2417 | - } | ||
2418 | - } | ||
2419 | - | ||
2420 | - | ||
2421 | - var checkItemAllZero = $("#checkItemAllZero").val(); | ||
2422 | - | ||
2423 | - if (!$("#unitPrice").val() || $("#unitPrice").val() == 0) { | ||
2424 | - flag = true; | ||
2425 | - //bs4pop.alert('当前商品单价为空', {type: 0}); | ||
2426 | - showWarning('当前商品单价为空!'); | ||
2427 | - return true; | ||
2428 | - } | ||
2429 | - | ||
2430 | - if(checkItemAllZero == "0"){ | ||
2431 | - flag = true; | ||
2432 | - showWarning('收费项目,没有匹配任何计费规则!'); | ||
2433 | - return true; | ||
2434 | - } | ||
2435 | - var itemErrorCount = $('#feeitemedit .singleRealfee.red').length; | ||
2436 | - console.log("itemErrorCount:"+itemErrorCount); | ||
2437 | - if(itemErrorCount>0){ | ||
2438 | - flag = true; | ||
2439 | - showWarning('收费项目实收栏目,有为负的金额,请调整收费项或相应计费规则!'); | ||
2440 | - //bs4pop.alert('收费项目实收栏目,有为负的金额,请调整收费项或相应计费规则!', {type: 'error'}); | ||
2441 | - | ||
2442 | - return true; | ||
2443 | - } | ||
2444 | - //变更 | ||
2445 | - var totalMoney = $("#totalAmount").val(); | ||
2446 | - var freezePrice = $("#freezePrice").val(); | ||
2447 | - var receivable = $("#receivableAmount").val(); | ||
2448 | - var discount = $("#discountAmountLong").val(); | ||
2449 | - var receivableNum = new Number(receivable); | ||
2450 | - var discountNum = new Number(discount); | ||
2451 | - console.log("应收:"+receivableNum+",优惠:"+discountNum+",实收:"+totalMoney+",代收:"+$("#handCollectionAmount").val()); | ||
2452 | - if(receivableNum<discountNum){ | ||
2453 | - flag = true; | ||
2454 | - showWarning('优惠总额已超出应收金额,无法交费!'); | ||
2455 | - //bs4pop.alert('优惠总额已超出应收金额,无法交费!', {type: 'error'}); | ||
2456 | - return true; | ||
2457 | - } | ||
2458 | - } | ||
2459 | - if(flag){ | ||
2460 | - return true; | ||
2461 | - } | ||
2462 | - /*var shipperId = $("#shipperId").val(); | ||
2463 | - if(shipperId==""){ | ||
2464 | - flag = true; | ||
2465 | - bs4pop.confirm('该货主不存在!', { | ||
2466 | - type: 0, | ||
2467 | - title: '提示', | ||
2468 | - btn: ['确定'] | ||
2469 | - }); | ||
2470 | - } | ||
2471 | - if(flag){ | ||
2472 | - return true; | ||
2473 | - }*/ | ||
2474 | - var actualMoneySymbol = $("#actualMoneySymbol").val(); | ||
2475 | - var ic = $("#ic").val(); | ||
2476 | - var id = $("#idFee").val(); | ||
2477 | - | ||
2478 | - var icstatus = $("#ic").attr("icstatus"); | ||
2479 | - if(icstatus != 1){ | ||
2480 | - flag = true; | ||
2481 | - showWarning('此卡异常,不能交易!'); | ||
2482 | - } | ||
2483 | - if(flag){ | ||
2484 | - return true; | ||
2485 | - } | ||
2486 | - if(type!=3) { | ||
2487 | - icCheck(); | ||
2488 | - } | ||
2489 | - if(flag){ | ||
2490 | - return true; | ||
2491 | - }else { | ||
2492 | - return false; | ||
2493 | - } | ||
2494 | - } | ||
2495 | - | ||
2496 | - function doBiz(type,authIc){ | ||
2497 | - if(checkInfo(type)) { | ||
2498 | - return; | ||
2499 | - } | ||
2500 | - if(type==2){//"冻结" | ||
2501 | - //授权需注释掉 | ||
2502 | - openFrame(2,"");return; | ||
2503 | - layer.open({ | ||
2504 | - area: ['400px', '200px'], | ||
2505 | - title: '冻结授权', | ||
2506 | - content: ['/entranceFeeBill/auth.do', 'no'], //iframe的url | ||
2507 | - btn: ['确定', '取消'], | ||
2508 | - yes: function (index, layero) { | ||
2509 | - //var ic = "aaa"; | ||
2510 | - var ic = reader(); | ||
2511 | - if (typeof(ic) == "undefined") { | ||
2512 | - showWarning('请检查读卡的设备是否已连接!'); | ||
2513 | - } else if (ic == -1) { | ||
2514 | - showWarning('读卡异常,请重新放置卡!'); | ||
2515 | - } else { | ||
2516 | - var u = ic; | ||
2517 | - $.ajax({ | ||
2518 | - url: "http://mg.nong12.com/loginControl/doLoginForNumber.do", | ||
2519 | - dataType: 'jsonp', | ||
2520 | - data: {number: ic, type: 1}, | ||
2521 | - jsonp: 'callback', | ||
2522 | - async:true, | ||
2523 | - success: function (result) { | ||
2524 | - var status = $("#status").val(); | ||
2525 | - var id = $("#idFee").val(); | ||
2526 | - if (result.success == true) { | ||
2527 | - var url = '/entranceFeeBillPay/toPayOpt/2/1?id=' + id + '&status=' + status + "&ic=" + ic; | ||
2528 | - $.ajax({ | ||
2529 | - type: 'get', | ||
2530 | - url: url + "&authKey=" + result.sessionId, | ||
2531 | - success: function (ret) { | ||
2532 | - openFrame(2,ic); | ||
2533 | - }, | ||
2534 | - error: function () { | ||
2535 | - showWarning('该用户当前无冻结操作权限,请先确认已开通!'); | ||
2536 | - } | ||
2537 | - }); | ||
2538 | - | ||
2539 | - } else { | ||
2540 | - showWarning('该用户当前无冻结操作权限,请先确认已开通!'); | ||
2541 | - } | ||
2542 | - }, | ||
2543 | - timeout: 3000 | ||
2544 | - }); | ||
2545 | - } | ||
2546 | - //按钮【确认】的回调 | ||
2547 | -// layer.close(index); | ||
2548 | - }, | ||
2549 | - btn2: function (index, layero) { | ||
2550 | - layer.close(index); | ||
2551 | - } | ||
2552 | - }); | ||
2553 | - }else{ | ||
2554 | - //交费 | ||
2555 | - var uItem =$("#updateFeeItems").val(); | ||
2556 | - if(uItem == 2 && type==1){ | ||
2557 | - $("#gz-tag").show(); | ||
2558 | - | ||
2559 | - bs4pop.confirm('当前收费单系统记录提示更正过收费项目费用,因此各收费项费用和收费总额不会自动更新,请确认是否按照当前费用进行交费?', { | ||
2560 | - type: 0, | ||
2561 | - title: '提示', | ||
2562 | - btn: ['确定', '取消'], | ||
2563 | - yes: function (index, layero) { | ||
2564 | - openFrame(type,authIc); | ||
2565 | - }, | ||
2566 | - btn2: function (index, bs4popo) { | ||
2567 | - | ||
2568 | - } | ||
2569 | - }) | ||
2570 | - }else{ | ||
2571 | - openFrame(type,authIc); | ||
2572 | - } | ||
2573 | - } | ||
2574 | - | ||
2575 | - } | ||
2576 | - function openFrame(type,authIc) { | ||
2577 | - var status = $("#status").val(); | ||
2578 | - var height = "450px"; | ||
2579 | - | ||
2580 | - var iccategroy = $("#ic").attr("iccategroy"); | ||
2581 | - if(iccategroy == 30){ | ||
2582 | - var height = "360px"; | ||
2583 | - | ||
2584 | - } | ||
2585 | - var opttext = "交费"; | ||
2586 | - var id=$("#idFee").val(); | ||
2587 | - var totalMoney = $("#totalAmount").val(); | ||
2588 | - if(totalMoney == ""){ | ||
2589 | - totalMoney = 0; | ||
2590 | - } | ||
2591 | - var freezePrice = $("#freezeMoneySymbol").val(); | ||
2592 | - var ic = $("#ic").val(); | ||
2593 | - var id = $("#idFee").val(); | ||
2594 | - var pwdUrl ='/entranceFeeBill/payPassword.action?id='+id+'&totalMoney='+totalMoney+"&ic="+ic+"&type="+type+"&icAuth="+authIc+"&freezePrice="+freezePrice; | ||
2595 | - var doUrl='/entranceTrade/doPay.action' | ||
2596 | - | ||
2597 | - if(type==2){ | ||
2598 | - opttext="冻结" | ||
2599 | - }else if(type==3){ | ||
2600 | - opttext="解冻" | ||
2601 | - doUrl='/entranceTrade/unfreeze.action'; | ||
2602 | - } | ||
2603 | - $("#optUrl").val(doUrl); | ||
2604 | - var flag = false; | ||
2605 | - payClickHandler(pwdUrl) | ||
2606 | - } | ||
2607 | - function printDirect1(id,type) { | ||
2608 | - console.info("不用了。。。payJs printDirect") | ||
2609 | - if($("#marketFlag").val()=='cc'){ | ||
2610 | - printDirectCC(id,type); | ||
2611 | - }else { | ||
2612 | - printDirectSY(id,type); | ||
2613 | - } | ||
2614 | - } | ||
2615 | - function printDirectCC(id,type){ | ||
2616 | - | ||
2617 | - var isPreview=2;// 1 预览,0:打印;2:直接打印 | ||
2618 | - var reprint = 0;//1补打;0:打印 | ||
2619 | - var status = $("#status").val(); | ||
2620 | - if(typeof callbackObj != 'undefined'){ | ||
2621 | - window.printFinish=function(){ | ||
2622 | - if(isPreview == "2"){ | ||
2623 | - if(type == 1){ | ||
2624 | - /* bs4pop.alert("交费成功", {type: 0}, function () { | ||
2625 | - history.go(-source); | ||
2626 | - });*/ | ||
2627 | - bs4pop.confirm('交费成功', { | ||
2628 | - icon: 1, | ||
2629 | - type: 0, | ||
2630 | - title: '提示', | ||
2631 | - btn: ['前往称重', '继续交费'], | ||
2632 | - yes: function(index, layero){ | ||
2633 | - //cancel(); | ||
2634 | - callbackObj.doorWeightShow("http://jmsf.diligrp.com:8385/entranceFeeBill/list.html"); | ||
2635 | - }, | ||
2636 | - btn2: function(index, layero){ | ||
2637 | - cancel(); | ||
2638 | - } | ||
2639 | - }); | ||
2640 | - }else if(type == 2){ | ||
2641 | - /*layer.alert("冻结成功", {type: 0}, function () { | ||
2642 | - history.go(-source); | ||
2643 | - });*/ | ||
2644 | - bs4pop.confirm('冻结成功', { | ||
2645 | - icon: 1, | ||
2646 | - type: 0, | ||
2647 | - title: '提示', | ||
2648 | - btn: ['前往称重', '继续交费'], | ||
2649 | - yes: function(index, layero){ | ||
2650 | - callbackObj.doorWeightShow("http://jmsf.diligrp.com:8385/entranceFeeBill/list.html"); | ||
2651 | - }, | ||
2652 | - btn2: function(index, layero){ | ||
2653 | - cancel(); | ||
2654 | - } | ||
2655 | - }); | ||
2656 | - }else{ | ||
2657 | - bs4pop.alert("解冻成功", {type: 0}, function () { | ||
2658 | - cancel(); | ||
2659 | - }); | ||
2660 | - | ||
2661 | - } | ||
2662 | - } | ||
2663 | - } | ||
2664 | - | ||
2665 | - var paramStr =""; | ||
2666 | - if(isPreview == "1"){ | ||
2667 | - paramStr = loadPrintHtmlData(); | ||
2668 | - }else{ | ||
2669 | - var data=loadPrintData(id,reprint); | ||
2670 | - if(!data){ | ||
2671 | - return; | ||
2672 | - } | ||
2673 | - paramStr = JSON.stringify(data.item); | ||
2674 | - } | ||
2675 | - if(paramStr==""){ | ||
2676 | - return; | ||
2677 | - } | ||
2678 | - console.log("--:"+paramStr); | ||
2679 | - callbackObj.printDirect(paramStr,"DoorStatementsDocument"); | ||
2680 | - | ||
2681 | - if(type == 1){ | ||
2682 | - var feedbackAmount = $("#collectionAmount").val(); | ||
2683 | - if(feedbackAmount>0){ | ||
2684 | - var dataFeedbackOrderStr= loadFeedbackPrintData(id,reprint); | ||
2685 | - if(!dataFeedbackOrderStr){ | ||
2686 | - }else{ | ||
2687 | - var paramFeedbackOrderStr = JSON.stringify(dataFeedbackOrderStr.item); | ||
2688 | - callbackObj.printDirect(paramFeedbackOrderStr,"DoorStatementsDocument"); | ||
2689 | - } | ||
2690 | - } | ||
2691 | - } | ||
2692 | - }else{ | ||
2693 | - showWarning('请检查打印的设备是否已连接'); | ||
2694 | - } | ||
2695 | - } | ||
2696 | - function printDirectSY(id,type){ | ||
2697 | - var source=$("#source").val(); | ||
2698 | - | ||
2699 | - var isPreview=2;// 1 预览,0:打印;2:直接打印 | ||
2700 | - var reprint = 0;//1补打;0:打印 | ||
2701 | - var status = $("#status").val(); | ||
2702 | - if(typeof callbackObj != 'undefined'){ | ||
2703 | - window.printFinish=function(){ | ||
2704 | - if(isPreview == "2"){ | ||
2705 | - if(type == 1){ | ||
2706 | - bs4pop.alert("交费成功", {type: 0}, function () { | ||
2707 | - history.go(-source); | ||
2708 | - }); | ||
2709 | - }else if(type == 2){ | ||
2710 | - bs4pop.alert("冻结成功", {type: 0}, function () { | ||
2711 | - history.go(-source); | ||
2712 | - }); | ||
2713 | - }else{ | ||
2714 | - bs4pop.alert("解冻成功", {type: 0}, function () { | ||
2715 | - history.go(-1); | ||
2716 | - }); | ||
2717 | - } | ||
2718 | - } | ||
2719 | - } | ||
2720 | - | ||
2721 | - var paramStr =""; | ||
2722 | - if(isPreview == "1"){ | ||
2723 | - paramStr = loadPrintHtmlData(); | ||
2724 | - console.log("-1-打印预览信息:"+paramStr); | ||
2725 | - callbackObj.printDirect(paramStr,"DoorStatementsDocument"); | ||
2726 | - return | ||
2727 | - }else{ | ||
2728 | - var data=loadPrintData(id,reprint); | ||
2729 | - if(!data){ | ||
2730 | - return; | ||
2731 | - } | ||
2732 | - paramStr = JSON.stringify(data.item); | ||
2733 | - } | ||
2734 | - if(paramStr==""){ | ||
2735 | - return; | ||
2736 | - } | ||
2737 | - console.log("-1-打印信息:"+paramStr); | ||
2738 | - callbackObj.printDirect(paramStr,"DoorStatementsDocument"); | ||
2739 | - if(type == 1){ | ||
2740 | - var handCollectionAmount = $("#handCollectionAmount").val(); | ||
2741 | - if(handCollectionAmount>0){ | ||
2742 | - var dataSteveOrderStr= loadPrintSteveOrderData(id,reprint); | ||
2743 | - if(!dataSteveOrderStr){ | ||
2744 | - }else{ | ||
2745 | - var paramSteveOrderStr = JSON.stringify(dataSteveOrderStr.item); | ||
2746 | - callbackObj.printDirect(paramSteveOrderStr,"DoorStatementsDocument"); | ||
2747 | - } | ||
2748 | - } | ||
2749 | - | ||
2750 | - if($("#marketFlag").val()=='qd'){ | ||
2751 | - return; | ||
2752 | - } | ||
2753 | - var feedbackAmount = $("#ccollectionLong").val(); | ||
2754 | - if(feedbackAmount>0){ | ||
2755 | - var dataFeedbackOrderStr= loadFeedbackPrintData(id,reprint); | ||
2756 | - if(!dataFeedbackOrderStr){ | ||
2757 | - }else{ | ||
2758 | - var paramFeedbackOrderStr = JSON.stringify(dataFeedbackOrderStr.item); | ||
2759 | - callbackObj.printDirect(paramFeedbackOrderStr,"DoorStatementsDocument"); | ||
2760 | - } | ||
2761 | - } | ||
2762 | - } | ||
2763 | - }else{ | ||
2764 | - showWarning('请检查打印的设备是否已连接'); | ||
2765 | - } | ||
2766 | - } | ||
2767 | - function print(id,isPreview){ | ||
2768 | - //var result = loadPrintSteveOrderData(582,1);console.log("--result:"+result); | ||
2769 | - //var isPreview=0;// 1 预览,0:打印;2:直接打印 | ||
2770 | - var reprint = 0;//1补打;0:打印 | ||
2771 | - var status = $("#status").val(); | ||
2772 | - if(typeof callbackObj != 'undefined'){ | ||
2773 | - window.printFinish=function(){ | ||
2774 | - if(isPreview == "2"){ | ||
2775 | - if(status == 2 || status == 3){ | ||
2776 | - bs4pop.alert("交费成功", {type: 0}, function () { | ||
2777 | - history.go(-1); | ||
2778 | - }); | ||
2779 | - }else{ | ||
2780 | - bs4pop.alert("冻结成功", {type: 0}, function () { | ||
2781 | - history.go(-1); | ||
2782 | - }); | ||
2783 | - } | ||
2784 | - } | ||
2785 | - } | ||
2786 | - | ||
2787 | - var paramStr =""; | ||
2788 | - if(isPreview == "1"){ | ||
2789 | - paramStr = loadPrintHtmlData(); | ||
2790 | - console.log("打印预览信息--:"+paramStr); | ||
2791 | - callbackObj.printPreview(paramStr,isPreview,"DoorStatementsDocument",reprint); | ||
2792 | - return; | ||
2793 | - }else{ | ||
2794 | - var data=loadPrintData(id,reprint); | ||
2795 | - if(!data){ | ||
2796 | - return; | ||
2797 | - } | ||
2798 | - paramStr = JSON.stringify(data.item); | ||
2799 | - } | ||
2800 | - if(paramStr==""){ | ||
2801 | - return; | ||
2802 | - } | ||
2803 | - console.log("打印信息--:"+paramStr); | ||
2804 | - callbackObj.printPreview(paramStr,isPreview,"DoorStatementsDocument",reprint); | ||
2805 | - var handCollectionAmount = $("#handCollectionAmount").val(); | ||
2806 | - if(handCollectionAmount>0){ | ||
2807 | - var dataSteveOrderStr= loadPrintSteveOrderData(id,reprint); | ||
2808 | - if(!dataSteveOrderStr){ | ||
2809 | - return; | ||
2810 | - } | ||
2811 | - var paramSteveOrderStr = JSON.stringify(dataSteveOrderStr.item); | ||
2812 | - callbackObj.printPreview(paramSteveOrderStr,isPreview,"DoorStatementsDocument",reprint); | ||
2813 | - } | ||
2814 | - }else{ | ||
2815 | - showWarning('请检查打印的设备是否已连接'); | ||
2816 | - } | ||
2817 | - } | ||
2818 | - //加载打印数据 | ||
2819 | - function loadPrintData(id,reprint){ | ||
2820 | - console.log("调用打印信息:"+id); | ||
2821 | - var result; | ||
2822 | - $.ajax({ | ||
2823 | - url:'/entrancePrint/loadPrintData.action?id='+id+'&reprint='+reprint, | ||
2824 | - type:'GET', | ||
2825 | - dataType:'json', | ||
2826 | - async:false, | ||
2827 | - success:function(data){ | ||
2828 | - if(data.code != '0'){ | ||
2829 | - bs4pop.alert(data.msg,{type:0,title:"提示"}); | ||
2830 | - return; | ||
2831 | - } | ||
2832 | - result=data; | ||
2833 | - }, | ||
2834 | - error:function(){ | ||
2835 | - showWarning('加载打印数据出错'); | ||
2836 | - } | ||
2837 | - }); | ||
2838 | - return result; | ||
2839 | - } | ||
2840 | - function loadPrintSteveOrderData(id,reprint){ | ||
2841 | - console.info("payJs.装卸费打印") | ||
2842 | - var result; | ||
2843 | - $.ajax({ | ||
2844 | - url:'/entrancePrint/loadPrintSteveOrderData.action?id='+id+'&reprint='+reprint, | ||
2845 | - type:'GET', | ||
2846 | - dataType:'json', | ||
2847 | - async:false, | ||
2848 | - success:function(data){ | ||
2849 | - if(data.code != '0'){ | ||
2850 | - bs4pop.alert(data.msg,{type:0,title:"提示"}); | ||
2851 | - return; | ||
2852 | - } | ||
2853 | - if(data.msg == 0){ | ||
2854 | - return; | ||
2855 | - } | ||
2856 | - result=data; | ||
2857 | - }, | ||
2858 | - error:function(){ | ||
2859 | - showWarning('加载打印数据出错'); | ||
2860 | - } | ||
2861 | - }); | ||
2862 | - return result; | ||
2863 | - } | ||
2864 | - function loadFeedbackPrintData(id,reprint){ | ||
2865 | - var result; | ||
2866 | - $.ajax({ | ||
2867 | - url:'/entrancePrint/loadFeedbackPrintData.action?id='+id+'&reprint='+reprint, | ||
2868 | - type:'GET', | ||
2869 | - dataType:'json', | ||
2870 | - async:false, | ||
2871 | - success:function(data){ | ||
2872 | - if(data.code != '0'){ | ||
2873 | - showWarning(data.msg); | ||
2874 | - return; | ||
2875 | - } | ||
2876 | - if(data.msg == 0){ | ||
2877 | - return; | ||
2878 | - } | ||
2879 | - result=data; | ||
2880 | - }, | ||
2881 | - error:function(){ | ||
2882 | - showWarning('加载打印数据出错'); | ||
2883 | - } | ||
2884 | - }); | ||
2885 | - return result; | ||
2886 | - } | ||
2887 | - //加载打印数据 | ||
2888 | - function loadPrintHtmlData(){ | ||
2889 | - var printInfo = new Object(); | ||
2890 | - var statusText = "" | ||
2891 | - if($("#optType").val()==2){ | ||
2892 | - statusText="(已冻结)" | ||
2893 | - }else{ | ||
2894 | - statusText="(已交费)" | ||
2895 | - } | ||
2896 | - var number = $("#market_short").val()+"JMSF" + $("#number").val()+statusText; | ||
2897 | - printInfo.number=number; | ||
2898 | - var c = $("#customerName").val(); | ||
2899 | - var ic = $("#ic").val() | ||
2900 | - var customer =""; | ||
2901 | - if(c=="" || ic==""){ | ||
2902 | - customer = c+ic; | ||
2903 | - }else{ | ||
2904 | - customer = c+"("+ic+")" | ||
2905 | - } | ||
2906 | - printInfo.customer=customer | ||
2907 | - printInfo.productName=$("#product").val(); | ||
2908 | - var grossWeight=$("#grossWeight").val() | ||
2909 | - if(grossWeight==0){ | ||
2910 | - grossWeight =""; | ||
2911 | - } | ||
2912 | - | ||
2913 | - printInfo.grossWeight=grossWeight;// 毛重 | ||
2914 | - var tareWeight = $("#tareWeight").val(); | ||
2915 | - printInfo.tareWeight=tareWeight;//皮重 | ||
2916 | - //var myselect=$("#dep"); | ||
2917 | - var myselect=document.getElementById("dep"); | ||
2918 | - var depName = $("#depName").val(); | ||
2919 | - if(depName == ""){ | ||
2920 | - depName ="请选择部门"; | ||
2921 | - } | ||
2922 | - /*var index=myselect.selectedIndex ; | ||
2923 | - if(index != undefined){ | ||
2924 | - if(myselect.options[index].text != "请选择"){ | ||
2925 | - depName = myselect.options[index].text; | ||
2926 | - } | ||
2927 | - }else{ | ||
2928 | - depName = $("#depName").val(); | ||
2929 | - }*/ | ||
2930 | - var regionName = $("#regionName").val(); | ||
2931 | - printInfo.receiveDept= depName +" "+ regionName; | ||
2932 | - printInfo.phone=$("#customerPhone").val(); | ||
2933 | - var producerName = $("#productArea").val(); | ||
2934 | - var strs= new Array(); | ||
2935 | - strs=producerName.split(","); //字符分割 | ||
2936 | - var producer = strs[0] | ||
2937 | - if(strs.length>1){ | ||
2938 | - producer=producer +strs[strs.length-1] | ||
2939 | - } | ||
2940 | - printInfo.producer=producer;// 产地 | ||
2941 | - printInfo.weight=$("#weight").val();// 净重 | ||
2942 | - printInfo.carTypeName=$("#carTypeShow").val();// 车型 | ||
2943 | - printInfo.plate=$("#plate").val();// 车号 | ||
2944 | - printInfo.qty=$("#goodsNum").val();// 件数 | ||
2945 | - printInfo.itemWeight=$("#itemWeight").val();// 件重 | ||
2946 | - printInfo.statementsDate=$("#paydate").val();// 结算时间 | ||
2947 | - var itemfees = $("#itemFee").val(); | ||
2948 | - //var receivedInWords =$("#receivedInWords").val(); | ||
2949 | - printInfo.itemFee=itemfees;// 交易管理费 | ||
2950 | - var proveTypeName = $("#proveTypeName").val(); | ||
2951 | - printInfo.proveTypeName = proveTypeName;//证明 | ||
2952 | - var tags =""; | ||
2953 | - $("input[name=goodsTagIds]").each(function () { | ||
2954 | - if($(this).is(":checked")){ | ||
2955 | - //当前为选中状态 | ||
2956 | - if(tags!=""){ | ||
2957 | - tags = tags +","+$(this).parent().text(); | ||
2958 | - }else { | ||
2959 | - tags = $(this).parent().text(); | ||
2960 | - } | ||
2961 | - } | ||
2962 | - }); | ||
2963 | - //printInfo.tags = tags;//标签 | ||
2964 | - | ||
2965 | - var myselect=document.getElementById("feeDepId"); | ||
2966 | - var feeDepName = $("#feeDepName").val(); | ||
2967 | - if(feeDepName == "" || feeDepName == undefined){ | ||
2968 | - feeDepName="请选择收费部门" | ||
2969 | - } | ||
2970 | - /*var index=myselect.selectedIndex ; | ||
2971 | - if(index != undefined){ | ||
2972 | - if(myselect.options[index].text != "请选择"){ | ||
2973 | - feeDepName = myselect.options[index].text; | ||
2974 | - } | ||
2975 | - }else{ | ||
2976 | - feeDepName = $("#feeDepName").val(); | ||
2977 | - }*/ | ||
2978 | - printInfo.tags =feeDepName; | ||
2979 | - var trailerNumber = $("#trailerNumber").val(); | ||
2980 | - if(trailerNumber!=""){ | ||
2981 | - trailerNumber ="【"+trailerNumber+"】" | ||
2982 | - } | ||
2983 | - printInfo.remark=$("#remark").val()+trailerNumber;// 备注+" "+$("#goodsRemark").val() | ||
2984 | - var totalAmountYuan =$("#printViewYuan").val(); | ||
2985 | - printInfo.amountInWords =DX(totalAmountYuan);//大写 | ||
2986 | - printInfo.accountInFigures =$("#printViewSymbol").val();//小写 | ||
2987 | - printInfo.greeterName=$("#inGreeterName").val();// 接车员 | ||
2988 | - printInfo.operatorName=$("#operatorName").val();// 司磅操作员 | ||
2989 | - printInfo.tollName=$("#tollName").val();// 收费员 | ||
2990 | - | ||
2991 | - var result =JSON.stringify(printInfo); | ||
2992 | - //console.log("--result:"+result); | ||
2993 | - return result; | ||
2994 | - } | ||
2995 | - | ||
2996 | - function DX(n) { | ||
2997 | - if (!/^(0|[1-9]\d*)(\.\d+)?$/.test(n)) | ||
2998 | - return ""; | ||
2999 | - if(n>0){ | ||
3000 | - var unit = "仟佰拾亿仟佰拾万仟佰拾圆角分", str = ""; | ||
3001 | - n += "00"; | ||
3002 | - var p = n.indexOf('.'); | ||
3003 | - if (p >= 0) | ||
3004 | - n = n.substring(0, p) + n.substr(p+1, 2); | ||
3005 | - unit = unit.substr(unit.length - n.length); | ||
3006 | - for (var i=0; i < n.length; i++) | ||
3007 | - str += '零壹贰叁肆伍陆柒捌玖'.charAt(n.charAt(i)) + unit.charAt(i); | ||
3008 | - return str.replace(/零(仟|佰|拾|角)/g, "零").replace(/(零)+/g, "零").replace(/零(万|亿|圆)/g, "$1").replace(/(亿)万|壹(拾)/g, "$1$2").replace(/^圆零?|零分/g, "").replace(/圆$/g, "圆整"); | ||
3009 | - }else{ | ||
3010 | - return ""; | ||
3011 | - } | ||
3012 | - } | ||
3013 | - | ||
3014 | - /** | ||
3015 | - * 交费点击事件处理 | ||
3016 | - */ | ||
3017 | - function payClickHandler(url) { | ||
3018 | - bs4pop.dialog({ | ||
3019 | - id:'dialog-add', | ||
3020 | - content:''+url, | ||
3021 | - title:'交费', | ||
3022 | - isIframe:true, | ||
3023 | - width:700, | ||
3024 | - height:450, | ||
3025 | - btns:[ | ||
3026 | - {label: '确定',className: 'btn-primary',onClick:payCertainClickHandler}, | ||
3027 | - {label: '取消',className: 'btn-secondary'} | ||
3028 | - ] | ||
3029 | - }); | ||
3030 | - } | ||
3031 | - | ||
3032 | - /** | ||
3033 | - * 交费点击事件处理 | ||
3034 | - */ | ||
3035 | - function payCertainClickHandler(e, $iframe) { | ||
3036 | - if (!$iframe.contents().find("#pwdForm").valid()) { | ||
3037 | - return false; | ||
3038 | - } | ||
3039 | - | ||
3040 | - //按钮【确认】的回调 | ||
3041 | - var body = $iframe.contents().find("body"); //iframe的body获取方式 | ||
3042 | - var password = $(body).find("#password").val(); | ||
3043 | - /*if(iccategroy != 30){ | ||
3044 | - if(password == undefined || password == ""){ | ||
3045 | - flag = true; | ||
3046 | - showWarning('请输入密码!'); | ||
3047 | - } | ||
3048 | - } | ||
3049 | - if(flag){ | ||
3050 | - flag = false | ||
3051 | - return; | ||
3052 | - }*/ | ||
3053 | - bui.loading.show('努力提交中,请稍候。。。'); | ||
3054 | - $(this).trigger("onblur"); | ||
3055 | - var bodyParent = $(window.document) | ||
3056 | - $(bodyParent).find("#pwd").val(password); | ||
3057 | - var doUrl =$(bodyParent).find("#optUrl").val(); | ||
3058 | - var optType =$(bodyParent).find("#optType").val(); | ||
3059 | - var id =$(bodyParent).find("#idFee").val(); | ||
3060 | - console.log(password+"操作"+doUrl) | ||
3061 | - $.ajax({ | ||
3062 | - type : 'post', | ||
3063 | - url :doUrl, | ||
3064 | - data : $(bodyParent).find('#feeForm').serialize(), | ||
3065 | - dataType : 'json', | ||
3066 | - async: false, | ||
3067 | - success : function(ret){ | ||
3068 | - bui.loading.hide(); | ||
3069 | - if(ret.code == '200'){ | ||
3070 | - //TLOG.component.editNewData($("#feeForm")); | ||
3071 | - //TLOG.component.operateLog(opttext,"收费管理","【收费单号】:"+$!enFee.number,"$!enFee.number"); | ||
3072 | - if(optType == 3){ | ||
3073 | - bs4pop.alert("解冻成功", {type: 0}, function () { | ||
3074 | - history.go(-1); | ||
3075 | - //window.location.href="/entranceFeeBillPay/toPayOpt/1/2?status=2&id="+id | ||
3076 | - }) | ||
3077 | - | ||
3078 | - }else{ | ||
3079 | - printDirect(id,optType); | ||
3080 | - } | ||
3081 | - | ||
3082 | - }else{ | ||
3083 | - //TLOG.component.operateLog(opttext,"收费管理",opttext+"提交失败:"+ret.result,"$!enFee.number"); | ||
3084 | - if(ret.code=='5000'){ | ||
3085 | - bs4pop.alert("系统异常,请重试,或者联系管理员", {type: 0}, function () { | ||
3086 | - window.location.href='http://jmsf.diligrp.com/entranceFeeBill/list'; | ||
3087 | - }); | ||
3088 | - } | ||
3089 | - var modified = ret.data.modified; | ||
3090 | - var showPwdIn = ret.data.showPwdIn; | ||
3091 | - if(showPwdIn == 1){ | ||
3092 | - $(body).find("#pwdInput").show() | ||
3093 | - } | ||
3094 | - if(modified!=undefined && modified!=""){ | ||
3095 | - $("#modified").val(modified); | ||
3096 | - showWarning(ret.result); | ||
3097 | - }else{ | ||
3098 | - bs4pop.alert(ret.result, {type: 0}, function () { | ||
3099 | - window.location.href='http://jmsf.nong12.com/entranceFeeBill/list'; | ||
3100 | - }); | ||
3101 | - } | ||
3102 | - } | ||
3103 | - }, | ||
3104 | - error:function(){ | ||
3105 | - bui.loading.hide(); | ||
3106 | - showError("系统异常,请稍后重试"); | ||
3107 | - } | ||
3108 | - }); | ||
3109 | - } | ||
3110 | - var resubmitFlag = false; | ||
3111 | - $("#undo_btn").click(function () { | ||
3112 | - if($("#settlementState").val()==2){ | ||
3113 | - bs4pop.alert("代收装卸费已结账,不能撤销收费单!", {type: 0}, function () { | ||
3114 | - window.location.href = window.location.href; | ||
3115 | - }); | ||
3116 | - return | ||
3117 | - } | ||
3118 | - if($("#feedbackOrderStatus").val()==2){ | ||
3119 | - bs4pop.alert("收费项返点已结转,不能撤销收费单!", {type: 0}, function () { | ||
3120 | - window.location.href = window.location.href; | ||
3121 | - }); | ||
3122 | - return | ||
3123 | - } | ||
3124 | - if(resubmitFlag){ | ||
3125 | - bs4pop.alert("请不要重复提交!", {type: 0}, function () { | ||
3126 | - window.location.href = window.location.href; | ||
3127 | - }); | ||
3128 | - return | ||
3129 | - }else { | ||
3130 | - resubmitFlag = true; | ||
3131 | - bui.loading.show('努力提交中,请稍候。。。'); | ||
3132 | - $.ajax({ | ||
3133 | - type: 'post', | ||
3134 | - url: '/entranceTrade/doUndo.action', | ||
3135 | - data: $('#feeForm').serialize(), | ||
3136 | - success: function (ret) { | ||
3137 | - bui.loading.hide(); | ||
3138 | - if (ret.code == 'success') { | ||
3139 | - //TLOG.component.operateLog(TLOG.operates.undo, "收费管理", "【收费单号】"+$!billgoods.number, "$!billgoods.number"); | ||
3140 | - bs4pop.alert("撤销成功", {type: 0}, function () { | ||
3141 | - history.go(-1); | ||
3142 | - }); | ||
3143 | - }else{ | ||
3144 | - bs4pop.alert(ret.result, {type: 0}, function () { | ||
3145 | - history.go(-1); | ||
3146 | - }); | ||
3147 | - } | ||
3148 | - }, | ||
3149 | - error: function () { | ||
3150 | - bui.loading.hide(); | ||
3151 | - bs4pop.alert("撤销失败,请稍后重试!", {type: 0}, function () { | ||
3152 | - window.location.href = window.location.href; | ||
3153 | - }); | ||
3154 | - } | ||
3155 | - }); | ||
3156 | - } | ||
3157 | - }); | ||
3158 | - | ||
3159 | - $(".invalid-btn").click(function () { | ||
3160 | - //var id=$("#idFee").val(); | ||
3161 | - //var mod=$("#modified").val(); | ||
3162 | - //var remark=$("#remark").val(); | ||
3163 | - var number = $("#number").val(); | ||
3164 | - $.ajax({ | ||
3165 | - type: 'post', | ||
3166 | - url: '/entranceFeeBill/doInvalid.action', | ||
3167 | - data: $('#feeForm').serialize(), | ||
3168 | - success: function (ret) { | ||
3169 | - if (ret.success == true) { | ||
3170 | - //TLOG.component.operateLog(TLOG.operates.invalid, "收费管理", "【收费单号】:"+number,number); | ||
3171 | - } | ||
3172 | - bs4pop.alert(ret.msg, {type: 0}, function () { | ||
3173 | - history.go(-1); | ||
3174 | - }); | ||
3175 | - }, | ||
3176 | - error: function () { | ||
3177 | - bs4pop.confirm("该用户当前无作废操作权限,请先确认已开通!", { | ||
3178 | - type: 0, | ||
3179 | - title: '提示', | ||
3180 | - btn: ['确定'] | ||
3181 | - }); | ||
3182 | - } | ||
3183 | - }); | ||
3184 | - }); | ||
3185 | -</script><script> | ||
3186 | - $('#pay-back-btn').on('click', function(){ | ||
3187 | - var handReceivableAmount = $("#handReceivableAmountLong").val(); | ||
3188 | - if(handReceivableAmount==undefined || handReceivableAmount==0){ | ||
3189 | - bs4pop.alert('该收费单未匹配到装卸费补录的任何规则!', {type: 0}, function () { | ||
3190 | - history.go(-1); | ||
3191 | - }); | ||
3192 | - }else{ | ||
3193 | - var handlingRatio = $("#handlingRatioVal").val(); | ||
3194 | - if(handlingRatio==0){ | ||
3195 | - bs4pop.confirm('当前收费单卸货比例为0%,请确认是否进行交费?', { | ||
3196 | - type: 0, | ||
3197 | - title: '提示', | ||
3198 | - btn: ['确定', '取消'], | ||
3199 | - yes: function (index, layero) { | ||
3200 | - openBackFrame(1,""); | ||
3201 | - }, | ||
3202 | - btn2: function (index, layero) { | ||
3203 | - | ||
3204 | - } | ||
3205 | - }) | ||
3206 | - }else{ | ||
3207 | - openBackFrame(1,""); | ||
3208 | - } | ||
3209 | - } | ||
3210 | - }); | ||
3211 | - function openBackFrame(type,authIc) { | ||
3212 | - var status = $("#status").val(); | ||
3213 | - var height = "490px"; | ||
3214 | - var iccategroy = $("#ic").attr("iccategroy"); | ||
3215 | - if(iccategroy == 30){ | ||
3216 | - var height = "400px"; | ||
3217 | - | ||
3218 | - } | ||
3219 | - var id=$("#idFee").val(); | ||
3220 | - var handManageAmount = $("#handManageAmount").val(); | ||
3221 | - if(handManageAmount == ""){ | ||
3222 | - handManageAmount = 0; | ||
3223 | - } | ||
3224 | - var handCollectionAmount = $("#handCollectionAmount").val(); | ||
3225 | - if(handCollectionAmount == ""){ | ||
3226 | - handCollectionAmount = 0; | ||
3227 | - } | ||
3228 | - var freezePrice = $("#freezeMoneySymbol").val(); | ||
3229 | - var ic = $("#ic").val(); | ||
3230 | - var id = $("#idFee").val(); | ||
3231 | - var pwdBackUrl ='/entranceFeeBill/paySteveBackPassword?id='+id+'&collectionAmount='+handCollectionAmount+"&mangeAmount="+handManageAmount; | ||
3232 | - | ||
3233 | - payBackClickHandler(pwdBackUrl) | ||
3234 | - } | ||
3235 | - | ||
3236 | - /** | ||
3237 | - * 交费点击事件处理 | ||
3238 | - */ | ||
3239 | - function payBackClickHandler(url) { | ||
3240 | - bs4pop.dialog({ | ||
3241 | - id:'dialog-add', | ||
3242 | - content:''+url, | ||
3243 | - title:'交费', | ||
3244 | - isIframe:true, | ||
3245 | - width:700, | ||
3246 | - height:450, | ||
3247 | - btns:[ | ||
3248 | - {label: '确定',className: 'btn-primary',onClick:payBackCertainClickHandler}, | ||
3249 | - {label: '取消',className: 'btn-secondary'} | ||
3250 | - ] | ||
3251 | - }); | ||
3252 | - } | ||
3253 | - | ||
3254 | - /** | ||
3255 | - * 交费点击事件处理 | ||
3256 | - */ | ||
3257 | - function payBackCertainClickHandler(e, $iframe) { | ||
3258 | - var doUrl='/entranceTrade/doPaySteveBack' | ||
3259 | - if (!$iframe.contents().find("#pwdForm").valid()) { | ||
3260 | - return false; | ||
3261 | - } | ||
3262 | - var body = layer.getChildFrame('body', index); //iframe的body获取方式 | ||
3263 | - var password = $(body).find("#password").val(); | ||
3264 | - var ic = $(body).find("#ic").val(); | ||
3265 | - //按钮【确认】的回调 | ||
3266 | - var bodyParent = $(window.document) | ||
3267 | - $(bodyParent).find("#pwd").val(password); | ||
3268 | - $(bodyParent).find("#fundAccount").val(fundAccount); | ||
3269 | - $(bodyParent).find("#ic").val(ic); | ||
3270 | - $.ajax({ | ||
3271 | - type : 'post', | ||
3272 | - url :doUrl, | ||
3273 | - data : $(bodyParent).find('#feeForm').serialize(), | ||
3274 | - dataType : 'json', | ||
3275 | - async: false, | ||
3276 | - success : function(ret){ | ||
3277 | - if(ret.code == 'success'){ | ||
3278 | - //TLOG.component.editNewData($("#feeForm")); | ||
3279 | - //TLOG.component.operateLog("补录","收费管理","【收费单号】:"+$!billgoods.number,"$!billgoods.number"); | ||
3280 | - printBackDirect(id,type); | ||
3281 | - }else{ | ||
3282 | - TLOG.component.operateLog("补录","收费管理",opttext+"提交失败:"+ret.result,"$!billgoods.number"); | ||
3283 | - if(ret.errorCode=='000'){ | ||
3284 | - bs4pop.alert(ret.errorMsg+",请重试,或者联系管理员", {type: 0}, function () { | ||
3285 | - window.location.href=''+'/entranceFeeBill/list.html'; | ||
3286 | - }); | ||
3287 | - } | ||
3288 | - if(ret.result == "该单据未完全交费成功,请到装卸费管理对该补录单据继续交费!"){ | ||
3289 | - bs4pop.alert(ret.result, {type: 0}, function () { | ||
3290 | - window.location.href=''+"/steveManage/list.html" | ||
3291 | - }); | ||
3292 | - }else{ | ||
3293 | - var modified = ret.data.modified; | ||
3294 | - var showPwdIn = ret.data.showPwdIn; | ||
3295 | - if(showPwdIn == 1){ | ||
3296 | - $(body).find("#pwdInput").show() | ||
3297 | - } | ||
3298 | - if(modified!=undefined && modified!=""){ | ||
3299 | - $("#modified").val(modified); | ||
3300 | - bs4pop.confirm(ret.result, { | ||
3301 | - type: 0, | ||
3302 | - title: '提示', | ||
3303 | - btn: ['确定'] | ||
3304 | - }); | ||
3305 | - }else{ | ||
3306 | - bs4pop.alert(ret.result, {type: 0}, function () { | ||
3307 | - window.location.href=''+'/entranceFeeBill/list.html'; | ||
3308 | - }); | ||
3309 | - } | ||
3310 | - } | ||
3311 | - | ||
3312 | - } | ||
3313 | - } | ||
3314 | - }); | ||
3315 | - } | ||
3316 | - | ||
3317 | - function printBackDirect(id,type){ | ||
3318 | - var source=$("#source").val(); | ||
3319 | - | ||
3320 | - var isPreview=2;// 1 预览,0:打印;2:直接打印 | ||
3321 | - var reprint = 0;//1补打;0:打印 | ||
3322 | - var status = $("#status").val(); | ||
3323 | - if(typeof callbackObj != 'undefined'){ | ||
3324 | - window.printFinish=function(){ | ||
3325 | - if(isPreview == "2"){ | ||
3326 | - if(type == 1){ | ||
3327 | - bs4pop.alert("交费成功", {type: 0}, function () { | ||
3328 | - window.location.href=''+'/entranceFeeBill/list.html'; | ||
3329 | - }); | ||
3330 | - } | ||
3331 | - } | ||
3332 | - } | ||
3333 | - | ||
3334 | - var paramStr =""; | ||
3335 | - if(isPreview == "1"){ | ||
3336 | - // paramStr = loadPrintHtmlData(); | ||
3337 | - }else{ | ||
3338 | - var data=loadBackPrintData(id,reprint); | ||
3339 | - if(!data){ | ||
3340 | - window.location.href=''+'entranceFeeBill/list.html'; | ||
3341 | - return; | ||
3342 | - } | ||
3343 | - paramStr = JSON.stringify(data.item); | ||
3344 | - } | ||
3345 | - if(paramStr==""){ | ||
3346 | - window.location.href=''+'/entranceFeeBill/list.html'; | ||
3347 | - return; | ||
3348 | - } | ||
3349 | - //console.log("--:"+paramStr); | ||
3350 | - callbackObj.printDirect(paramStr,"DoorStatementsDocument"); | ||
3351 | - if(type == 1){ | ||
3352 | - var handCollectionAmount = $("#handCollectionAmount").val(); | ||
3353 | - if(handCollectionAmount>0){ | ||
3354 | - var dataSteveOrderStr= loadPrintSteveOrderData(id,reprint); | ||
3355 | - if(!dataSteveOrderStr){ | ||
3356 | - window.location.href=''+'/entranceFeeBill/list.html'; | ||
3357 | - }else{ | ||
3358 | - var paramSteveOrderStr = JSON.stringify(dataSteveOrderStr.item); | ||
3359 | - callbackObj.printDirect(paramSteveOrderStr,"DoorStatementsDocument"); | ||
3360 | - } | ||
3361 | - } | ||
3362 | - | ||
3363 | - | ||
3364 | - } | ||
3365 | - }else{ | ||
3366 | - layer.confirm('请检查打印的设备是否已连接', { | ||
3367 | - type: 0, | ||
3368 | - title: '提示', | ||
3369 | - btn: ['确定'] | ||
3370 | - }); | ||
3371 | - } | ||
3372 | - } | ||
3373 | - function loadBackPrintData(id,reprint){ | ||
3374 | - var result; | ||
3375 | - $.ajax({ | ||
3376 | - url:'/entranceFeeBillPay/loadBackRecordPrintData?id='+id+'&reprint='+reprint, | ||
3377 | - type:'GET', | ||
3378 | - dataType:'json', | ||
3379 | - async:false, | ||
3380 | - success:function(data){ | ||
3381 | - if(data.code != '0'){ | ||
3382 | - layer.alert(data.msg,{type:0,title:"提示"}); | ||
3383 | - return; | ||
3384 | - } | ||
3385 | - if (data.msg == 0) { | ||
3386 | - //不打印代收为0的单子 | ||
3387 | - return; | ||
3388 | - } | ||
3389 | - result=data; | ||
3390 | - }, | ||
3391 | - error:function(){ | ||
3392 | - layer.alert("加载打印数据出错",{type:0,title:"提示"}); | ||
3393 | - } | ||
3394 | - }); | ||
3395 | - return result; | ||
3396 | - } | ||
3397 | - function loadPrintSteveOrderData(id,reprint){ | ||
3398 | - console.info("backPay.装卸费打印") | ||
3399 | - var result; | ||
3400 | - $.ajax({ | ||
3401 | - url:'/entranceFeeBillPay/loadPrintSteveOrderData?id='+id+'&reprint='+reprint, | ||
3402 | - type:'GET', | ||
3403 | - dataType:'json', | ||
3404 | - async:false, | ||
3405 | - success:function(data){ | ||
3406 | - if(data.code != '0'){ | ||
3407 | - layer.alert(data.msg,{type:0,title:"提示"}); | ||
3408 | - return; | ||
3409 | - } | ||
3410 | - if(data.msg == 0){ | ||
3411 | - return; | ||
3412 | - } | ||
3413 | - result=data; | ||
3414 | - }, | ||
3415 | - error:function(){ | ||
3416 | - layer.alert("加载打印数据出错",{type:0,title:"提示"}); | ||
3417 | - } | ||
3418 | - }); | ||
3419 | - return result; | ||
3420 | - } | ||
3421 | -</script> | ||
3422 | - | ||
3423 | -<script> | ||
3424 | - $(function(){ | ||
3425 | - if($("#bskinWithGoods").val()==1){ | ||
3426 | - //带货回皮只能选择 | ||
3427 | - var handlingRatioOld =$("#handlingRatioOld").val(); | ||
3428 | - if(handlingRatioOld == 100 || handlingRatioOld == 0){}else{ | ||
3429 | - $("#handlingRatio").val(""); | ||
3430 | - $("#handlingRatioVal").val(0); | ||
3431 | - } | ||
3432 | - $(".handlingRatioHidden").hide(); | ||
3433 | - }else{ | ||
3434 | - $(".handlingRatioHidden").show(); | ||
3435 | - } | ||
3436 | - calculate(); | ||
3437 | - if(!waitPayStatus()){ | ||
3438 | - if(!steveBack()){ | ||
3439 | - console.log("--2---状态不需要装卸费查询日志") | ||
3440 | - return; | ||
3441 | - } | ||
3442 | - } | ||
3443 | - var handReceivableAmount = $("#handReceivableAmountLong").val(); | ||
3444 | - if(handReceivableAmount>0){ | ||
3445 | - findHandTeam(); | ||
3446 | - var steveTeamId = $("#steveTeamId").val(); | ||
3447 | - var slength = $("#steveTeams").children().length; | ||
3448 | - //console.info("ss-") | ||
3449 | - $("#steveTeams option").each(function(){ | ||
3450 | - //console.info("this team id "+$(this).val()+",old id "+steveTeamId); | ||
3451 | - if(slength >= 2){//只有一个项是,是默认选中的 | ||
3452 | - if($(this).val() == steveTeamId){ | ||
3453 | - //console.info("selceted team id"+steveTeamId); | ||
3454 | - $(this).attr("selected", true); | ||
3455 | - var shareRatioVal = $(this).attr("bind-shareRatio"); | ||
3456 | - $("#shareRatioVal").val(shareRatioVal); | ||
3457 | - //console.info("sdds-"+steveTeamId) | ||
3458 | - }else{ | ||
3459 | - $("#steveTeams").val( $("#steveTeams").find('option')[1].value); | ||
3460 | - $("#shareRatioVal").val(ret[0].shareRatio); | ||
3461 | - $("#handlingTeam").val(ret[0].teamName); | ||
3462 | - } | ||
3463 | - } | ||
3464 | - }); | ||
3465 | - } | ||
3466 | - | ||
3467 | - }) | ||
3468 | - $("#ic").blur(function(){ | ||
3469 | - //findHandTeam(); | ||
3470 | - }); | ||
3471 | - $("#product").blur(function(){ | ||
3472 | - //findHandTeam(); | ||
3473 | - }); | ||
3474 | - $("#dep").change(function(){ | ||
3475 | - //findHandTeam(); | ||
3476 | - }); | ||
3477 | - $("#handlingRatio").change(function(){ | ||
3478 | - $("#handlingRatioVal").val($(this).children('option:selected').val()); | ||
3479 | - showAllAmount(); | ||
3480 | - }); | ||
3481 | - $("#steveTeams").change(function(){ | ||
3482 | - $("#steveTeamIdSelect").val(2); | ||
3483 | - var ss = $(this).children('option:selected'); | ||
3484 | - var shareRatioVal =0; | ||
3485 | - if (ss.html() != "请选择") { | ||
3486 | - shareRatioVal = ss.attr("bind-shareRatio"); | ||
3487 | - $("#handlingTeam").val(ss.html()); | ||
3488 | - } | ||
3489 | - $("#shareRatioVal").val(shareRatioVal); | ||
3490 | - showAllAmount(); | ||
3491 | - }); | ||
3492 | - $("#bskinWithGoods").change(function(){ | ||
3493 | - if($(this).val()==1){ | ||
3494 | - | ||
3495 | - $(".handlingRatioHidden").hide(); | ||
3496 | - $("#handlingRatio").val(""); | ||
3497 | - $("#handlingRatioVal").val(0); | ||
3498 | - }else{ | ||
3499 | - | ||
3500 | - $("#handlingRatio").val($("#handlingRatioOld").val()); | ||
3501 | - $("#handlingRatioVal").val($("#handlingRatioOld").val()); | ||
3502 | - $(".handlingRatioHidden").show(); | ||
3503 | - } | ||
3504 | - }); | ||
3505 | - function c() { | ||
3506 | - $.post("/entranceFeeBillPay/c", | ||
3507 | - $('#feeForm').serialize(), | ||
3508 | - function(data,status){ | ||
3509 | - $("#feeitemedit").html(data); | ||
3510 | - showAllAmount(); | ||
3511 | -// 计算后触发重新校验冻结金额 | ||
3512 | - $('#freezeMoneySymbol').blur(); | ||
3513 | - }); | ||
3514 | - } | ||
3515 | - function showAllAmount(){ | ||
3516 | - calculateFlag(); | ||
3517 | - var status = $("#status").val(); | ||
3518 | - var backRecord=false; | ||
3519 | - /*if(status!=2){ | ||
3520 | - var itemView = $("#itemView").val(); | ||
3521 | - if(itemView==undefined || itemView==1){ | ||
3522 | - console.info("return showAllAmount(),status:"+status); | ||
3523 | - return; | ||
3524 | - }else if(itemView==-1){ | ||
3525 | - backRecord=true; | ||
3526 | - } | ||
3527 | - }*/ | ||
3528 | - console.info("showAllAmount()"); | ||
3529 | - var handReceivableAmountVal = new Number(handReceivableAmount()); | ||
3530 | - if(handReceivableAmountVal>0){ | ||
3531 | - $("#steveTeams").attr("disabled",false); | ||
3532 | - $("#handlingRatio").attr("disabled",false); | ||
3533 | - }else{ | ||
3534 | - $("#handActualAmount").val(0); | ||
3535 | - $("#handActualAmountSymbol").val('0.00'); | ||
3536 | - $("#handManageAmount").val(0); | ||
3537 | - $("#handManageAmountSymbol").val('0.00'); | ||
3538 | - $("#handCollectionAmount").val(0); | ||
3539 | - $("#handCollectionAmountSymbol").val('0.00'); | ||
3540 | - $("#steveTeams").val(""); | ||
3541 | - $("#handlingRatio").val(""); | ||
3542 | - $("#steveTeams").attr("disabled",true); | ||
3543 | - $("#handlingRatio").attr("disabled",true); | ||
3544 | - } | ||
3545 | - | ||
3546 | - if(backRecord){ | ||
3547 | - handCollectionAmount(); | ||
3548 | - handManageAmount(); | ||
3549 | - handActualAmount(); | ||
3550 | - }else{ | ||
3551 | - freezeMoney(); | ||
3552 | - totalAmount(); | ||
3553 | - } | ||
3554 | - handTeamReload(); | ||
3555 | - printView(); | ||
3556 | - } | ||
3557 | - var ONE_HUNDRED_NUMBER = new Number(100); | ||
3558 | - function totalAmount(){ | ||
3559 | - var totalAmount = chargeTotalAmount()+handCollectionAmount()+feedbackAmount()+handManageAmount(); | ||
3560 | - $("#totalAmount").val(totalAmount); | ||
3561 | - var targetNumber = new Number(totalAmount); | ||
3562 | - $("#totalAmountYuan").val(targetNumber.div(ONE_HUNDRED_NUMBER));//打印预览大学的转换 | ||
3563 | - $("#totalAmountSymbol").text(toThousands(targetNumber.div(ONE_HUNDRED_NUMBER))); | ||
3564 | - var resultNumber = new Number(totalAmount); | ||
3565 | - return resultNumber; | ||
3566 | - } | ||
3567 | - function chargeTotalAmount(){ | ||
3568 | - var chargeTotalAmount = receivableAmount()-discountAmount()-feedbackAmount(); | ||
3569 | - $("#chargeTotalAmount").val(chargeTotalAmount); | ||
3570 | - var targetNumber = new Number(chargeTotalAmount); | ||
3571 | - $("#chargeTotalAmountYuan").val(targetNumber.div(ONE_HUNDRED_NUMBER)); | ||
3572 | - $("#chargeTotalAmountSymbol").val(toThousands(targetNumber.div(ONE_HUNDRED_NUMBER))); | ||
3573 | - var resultNumber = new Number(chargeTotalAmount); | ||
3574 | - return resultNumber; | ||
3575 | - } | ||
3576 | - function receivableAmount(){ | ||
3577 | - var receivableAmount = itemReceivableAmount(); | ||
3578 | - $("#receivableAmount").val(receivableAmount); | ||
3579 | - var targetNumber = new Number(receivableAmount); | ||
3580 | - $("#receivableAmountSymbol").val(toThousands(targetNumber.div(ONE_HUNDRED_NUMBER))); | ||
3581 | - var resultNumber = new Number(receivableAmount); | ||
3582 | - return resultNumber; | ||
3583 | - } | ||
3584 | - function itemReceivableAmount(){ | ||
3585 | - var itemReceivableAmount = $("#itemReceivableAmountLong").val(); | ||
3586 | - var targetNumber = new Number(itemReceivableAmount); | ||
3587 | - $("#itemReceivableAmountSymbol").val(toThousands(targetNumber.div(ONE_HUNDRED_NUMBER))); | ||
3588 | - var resultNumber = new Number(itemReceivableAmount); | ||
3589 | - return resultNumber; | ||
3590 | - } | ||
3591 | - function freezeMoney(){ | ||
3592 | - var freezeAmount = itemReceivableAmount(); | ||
3593 | - if(steveFeeRequire()){ | ||
3594 | - freezeAmount =itemReceivableAmount()+handReceivableAmount(); | ||
3595 | - } | ||
3596 | - var targetNumber = new Number(freezeAmount); | ||
3597 | - $("#freezePriceVal").val(targetNumber.div(ONE_HUNDRED_NUMBER));//冻结对比需要 | ||
3598 | - $("#freezeMoneySymbol").val(toThousands(targetNumber.div(ONE_HUNDRED_NUMBER))); | ||
3599 | - var resultNumber = new Number(freezeAmount); | ||
3600 | - return resultNumber; | ||
3601 | - } | ||
3602 | - function discountAmount(){ | ||
3603 | - var discountAmount = $("#discountAmountLong").val(); | ||
3604 | - var targetNumber = new Number(discountAmount); | ||
3605 | - $("#discountAmountSymbol").val("-"+toThousands(targetNumber.div(ONE_HUNDRED_NUMBER))); | ||
3606 | - var resultNumber = new Number(discountAmount); | ||
3607 | - return resultNumber; | ||
3608 | - } | ||
3609 | - | ||
3610 | - function handReceivableAmount(){ | ||
3611 | - var handReceivableAmount = $("#handReceivableAmountLong").val(); | ||
3612 | - var targetNumber = new Number(handReceivableAmount); | ||
3613 | - var thousands =targetNumber.div(ONE_HUNDRED_NUMBER); | ||
3614 | - $("#handReceivableAmountSymbol").val(toThousands(thousands)); | ||
3615 | - var resultNumber = new Number(handReceivableAmount); | ||
3616 | - | ||
3617 | - return resultNumber; | ||
3618 | - } | ||
3619 | - function handActualAmount(){ | ||
3620 | - var handlingRatioVal=$("#handlingRatioVal").val(); | ||
3621 | - //console.info("handActualAmount():handlingRatioVal:"+handlingRatioVal); | ||
3622 | - if(handlingRatioVal==undefined){ | ||
3623 | - handlingRatioVal = 0; | ||
3624 | - } | ||
3625 | - var handlingRatio = new Number(handlingRatioVal); | ||
3626 | - //console.info("handlingRatioVal"+handlingRatioVal); | ||
3627 | - handlingRatio=handlingRatio.div(ONE_HUNDRED_NUMBER); | ||
3628 | - var targetNumber = new Number(handReceivableAmount()); | ||
3629 | - var handActualAmount = targetNumber.mul(handlingRatio); | ||
3630 | - | ||
3631 | - var thousands = handActualAmount.div(ONE_HUNDRED_NUMBER); | ||
3632 | - thousands = new Number(thousands); | ||
3633 | - thousands = thousands.toFixed(); | ||
3634 | - thousands = new Number(thousands); | ||
3635 | - $("#handActualAmount").val(thousands.mul(ONE_HUNDRED_NUMBER)); | ||
3636 | - $("#handActualAmountSymbol").val(toThousands(thousands)); | ||
3637 | - | ||
3638 | - var resultNumber = new Number(thousands.mul(ONE_HUNDRED_NUMBER)); | ||
3639 | - | ||
3640 | - return resultNumber; | ||
3641 | - } | ||
3642 | - function handManageAmount(){ | ||
3643 | - //console.info("handManageAmount()"); | ||
3644 | - var handManageAmount = handActualAmount()-handCollectionAmount(); | ||
3645 | - $("#handManageAmount").val(handManageAmount); | ||
3646 | - var targetNumber = new Number(handManageAmount); | ||
3647 | - $("#handManageAmountSymbol").val(toThousands(targetNumber.div(ONE_HUNDRED_NUMBER))); | ||
3648 | - var resultNumber = new Number(handManageAmount); | ||
3649 | - return resultNumber; | ||
3650 | - } | ||
3651 | - function handCollectionAmount(){ | ||
3652 | - var shareRatioVal =$("#shareRatioVal").val(); | ||
3653 | - //console.info("handCollectionAmount()-shareRatioVal:"+shareRatioVal); | ||
3654 | - if(shareRatioVal == undefined){ | ||
3655 | - shareRatioVal =0; | ||
3656 | - } | ||
3657 | - var shareRatio = new Number(shareRatioVal); | ||
3658 | - shareRatio = shareRatio.div(ONE_HUNDRED_NUMBER) | ||
3659 | - | ||
3660 | - var targetNumber = new Number(handActualAmount()); | ||
3661 | - var handCollectionAmount = targetNumber.mul(shareRatio); | ||
3662 | - | ||
3663 | - var thousands = handCollectionAmount.div(ONE_HUNDRED_NUMBER); | ||
3664 | - thousands = new Number(thousands); | ||
3665 | - thousands = thousands.toFixed(); | ||
3666 | - thousands = new Number(thousands); | ||
3667 | - $("#handCollectionAmount").val(thousands.mul(ONE_HUNDRED_NUMBER)); | ||
3668 | - $("#handCollectionAmountSymbol").val(toThousands(thousands)); | ||
3669 | - | ||
3670 | - var resultNumber = new Number(thousands.mul(ONE_HUNDRED_NUMBER)); | ||
3671 | - return resultNumber; | ||
3672 | - } | ||
3673 | - function feedbackAmount(){ | ||
3674 | - //console.info("discountAmount()"); | ||
3675 | - var collectionAmount = $("#ccollectionLong").val(); | ||
3676 | - var targetNumber = new Number(collectionAmount); | ||
3677 | - $("#collectionAmountSymbol").val(toThousands(targetNumber.div(ONE_HUNDRED_NUMBER))); | ||
3678 | - var resultNumber = new Number(collectionAmount); | ||
3679 | - return resultNumber; | ||
3680 | - } | ||
3681 | - | ||
3682 | - function toThousands(num) { | ||
3683 | - return (num || 0).toString().replace(/(\d)(?=(?:\d{3})+$)/g, '$1,'); | ||
3684 | - } | ||
3685 | - function handTeamReload(){ | ||
3686 | - if(!steveFeeRequire()){ | ||
3687 | - console.log("市场是不需要装卸费") | ||
3688 | - return; | ||
3689 | - } | ||
3690 | - var steveTeamIdSelect = $("#steveTeamIdSelect").val(); | ||
3691 | - if(steveTeamIdSelect==1){ | ||
3692 | - findHandTeam(); | ||
3693 | - var steveTeamId = $("#steveTeamId").val(); | ||
3694 | - var slength = $("#steveTeams").children().length; | ||
3695 | - //console.info("ss-") | ||
3696 | - $("#steveTeams option").each(function(){ | ||
3697 | - //console.info("this team id "+$(this).val()+",old id "+steveTeamId); | ||
3698 | - if(slength >= 2){//只有一个项是,是默认选中的 | ||
3699 | - if($(this).val() == steveTeamId){ | ||
3700 | - //console.info("selceted team id"+steveTeamId); | ||
3701 | - $(this).attr("selected", true); | ||
3702 | - var shareRatioVal = $(this).attr("bind-shareRatio"); | ||
3703 | - $("#shareRatioVal").val(shareRatioVal); | ||
3704 | - //console.info("sdds-"+steveTeamId) | ||
3705 | - }else{ | ||
3706 | - var one = $("#steveTeams").find('option')[1]; | ||
3707 | - $("#steveTeams").val( $(one).val()); | ||
3708 | - $("#shareRatioVal").val($(one).attr("bind-shareRatio")); | ||
3709 | - $("#handlingTeam").val($(one).text()); | ||
3710 | - } | ||
3711 | - } | ||
3712 | - }); | ||
3713 | - } | ||
3714 | - } | ||
3715 | - function findHandTeam() { | ||
3716 | - if(!waitPayStatus()){ | ||
3717 | - if(!steveBack()){ | ||
3718 | - console.log("-----状态不需要装卸费查询日志") | ||
3719 | - return; | ||
3720 | - } | ||
3721 | - } | ||
3722 | - if(!steveFeeRequire()){ | ||
3723 | - console.log("市场是不需要装卸费") | ||
3724 | - return; | ||
3725 | - } | ||
3726 | - $("#steveTeams").empty(); | ||
3727 | - $("#steveTeamIdSelect").val(1); | ||
3728 | - var productId = $("#productId").val(); | ||
3729 | - var customerId = $("#customerId").val(); | ||
3730 | - var departmentId = $("#dep").val(); | ||
3731 | - var regionId = $("#district").val(); | ||
3732 | - var handReceivableAmount = $("#handReceivableAmountLong").val(); | ||
3733 | - if(handReceivableAmount == 0){ | ||
3734 | - return; | ||
3735 | - } | ||
3736 | - console.log("市场是2222装卸费") | ||
3737 | - $.ajax({ | ||
3738 | - type: 'get', | ||
3739 | - url: '/api/jmsf/ajax/findHandTeam', | ||
3740 | - data: {productId: productId,customerId: customerId,departmentId: departmentId,regionId: regionId,handReceivableAmount:handReceivableAmount}, | ||
3741 | - dataType: 'json', | ||
3742 | - async: false, | ||
3743 | - success: function (data) { | ||
3744 | - var optionItemHtml ='<option value="">请选择</option>'; | ||
3745 | - if (data.code != "200"){ | ||
3746 | - $("#steveTeamIdError").html("没有匹配到装卸队") | ||
3747 | - $("#steveTeams").attr("aria-invalid",true); | ||
3748 | - $("#steveTeams").removeClass("is-valid"); | ||
3749 | - $("#steveTeams").addClass("is-invalid"); | ||
3750 | - return; | ||
3751 | - }else { | ||
3752 | - $("#steveTeamIdError").html("") | ||
3753 | - $("#steveTeams").attr("aria-invalid",false); | ||
3754 | - $("#steveTeams").addClass("is-valid"); | ||
3755 | - $("#steveTeams").removeClass("is-invalid"); | ||
3756 | - | ||
3757 | - } | ||
3758 | - var ret=data.data; | ||
3759 | - | ||
3760 | - /* var selected = ""; | ||
3761 | - if(ret.length == 1){ | ||
3762 | - selected = 'selected="selected"' | ||
3763 | - }*/ | ||
3764 | - for (var index = 0;index < ret.length;index++){ | ||
3765 | - optionItemHtml =optionItemHtml+ '<option bind-shareRatio="' + ret[index].shareRatio + '" value="' + ret[index].id + '">' + ret[index].teamName + '</option>'; | ||
3766 | - } | ||
3767 | - $("#steveTeams").append(optionItemHtml); | ||
3768 | - if(ret.length >= 1){ | ||
3769 | - console.info("teamName:"+ret[0].teamName); | ||
3770 | - | ||
3771 | - if($("#steveTeams").find('option')[1] == undefined){ | ||
3772 | - return; | ||
3773 | - } | ||
3774 | - $("#steveTeams").val( $("#steveTeams").find('option')[1].value); | ||
3775 | - //$("#steveTeams").children().eq(1).attr("selected", true); | ||
3776 | - $("#shareRatioVal").val(ret[0].shareRatio); | ||
3777 | - $("#handlingTeam").val(ret[0].teamName); | ||
3778 | - $("#steveTeamId").val(ret[0].id); | ||
3779 | - } | ||
3780 | - //console.info("size:"+$("#steveTeams").children().length); | ||
3781 | - } | ||
3782 | - }); | ||
3783 | - } | ||
3784 | - | ||
3785 | - function calculateFlag(){ | ||
3786 | - var viewType = $("#viewType").val(); | ||
3787 | - if(viewType=='pay'||viewType=='correct' ){ | ||
3788 | - | ||
3789 | - }else{ | ||
3790 | - $("#cal").hide(); | ||
3791 | - $(".no-require").each(function(){ | ||
3792 | - $('input:checkbox[name="billItemCheckIds"]').attr("onclick","return false"); | ||
3793 | - }); | ||
3794 | - /*$(".goods-tags").each(function(){ | ||
3795 | - $('input:checkbox[name="goodsTagIds"]').attr("onclick","return false"); | ||
3796 | - });*/ | ||
3797 | - | ||
3798 | - } | ||
3799 | - | ||
3800 | - } | ||
3801 | - function printView(){ | ||
3802 | - var chargeTotalAmount = receivableAmount()-discountAmount()-feedbackAmount(); | ||
3803 | - if($("#marketFlag").val()=="qd"){ | ||
3804 | - chargeTotalAmount = receivableAmount()-discountAmount(); | ||
3805 | - } | ||
3806 | - var targetNumber = new Number(chargeTotalAmount); | ||
3807 | - $("#printViewYuan").val(targetNumber.div(ONE_HUNDRED_NUMBER)); | ||
3808 | - $("#printViewSymbol").val(toThousands(targetNumber.div(ONE_HUNDRED_NUMBER))); | ||
3809 | - } | ||
3810 | - function steveFeeRequire(){ | ||
3811 | - if($("#marketFlag").val()=="qd" || $("#marketFlag").val()=="sy"){ | ||
3812 | - return true; | ||
3813 | - } | ||
3814 | - return false; | ||
3815 | - } | ||
3816 | - function waitPayStatus(){ | ||
3817 | - if($("#status").val()==2){ | ||
3818 | - return true; | ||
3819 | - } | ||
3820 | - return false; | ||
3821 | - } | ||
3822 | - function steveBack(){ | ||
3823 | - if($("#viewType").val()=="back"){ | ||
3824 | - return true; | ||
3825 | - } | ||
3826 | - return false; | ||
3827 | - } | ||
3828 | -</script> | ||
3829 | - | ||
3830 | -[2021-08-17 14:56:09] [INFO] : ====================================================================================== | ||
3831 | -[2021-08-17 14:56:10] [INFO] : | ||
3832 | -url: http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=888810032426 | ||
3833 | -参数: None | ||
3834 | -其他参数: {} | ||
3835 | -接口返回: {"code":"success","data":{"aInfo":{"accountId":105847,"balance":110752333,"balanceSymbol":"1,107,523.33","cardId":3850,"cardNo":"888810032426","cardState":1,"cardType":10,"customerCertificateNumber":"110101199003084552","customerCertificateType":"ID","customerCharacterType":"business_user_character_type","customerCode":"00000062","customerContactsPhone":"18011501258","customerId":389,"customerMarketType":"business_user_character_type","customerName":"长歌买家省内啊啊啊嘿","customerType":"business_user_character_type","customerTypeView":"卖家","firmId":9,"fundAccountId":105847,"holdContactsPhone":"18011501251","holdName":"长歌买家省啊","idCode":"110101199003084552","mobile":"18011501258","name":"长歌买家省内啊啊啊嘿","permissionList":["11","13","12"]}},"result":"操作成功!","success":true} | ||
3836 | -[2021-08-17 14:56:10] [INFO] : ====================================================================================== | ||
3837 | -[2021-08-17 14:56:10] [INFO] : | ||
3838 | -url: http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州 | ||
3839 | -参数: None | ||
3840 | -其他参数: {} | ||
3841 | -接口返回: {"suggestions":[{"data":"万州","levelType":3,"name":"重庆,重庆市,万州区","id":500101,"value":"重庆,重庆市,万州区","parentId":500100}]} | ||
3842 | -[2021-08-17 14:56:10] [INFO] : ====================================================================================== | ||
3843 | -[2021-08-17 14:56:11] [INFO] : | ||
3844 | -url: http://test.jmsf.diligrp.com:8385/calculate/index.action | ||
3845 | -参数: {'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '2', 'id': 4379, 'goodsId': '4393', 'number': '202108170900063', 'modified': '2021-08-17 14:56:10', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A74354', 'autocomplete-cartype': '003(板车)', 'carTypeName': '板车', 'carTypeCode': '003', 'carTypeId': '53', 'carTypeWeight': '', 'storeTareWeight': '', 'proveType': '665', 'grossWeight': '0', 'tareWeight': '0', 'weight': '220', '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-17 14:56:08', 'remark': 'false', 'goodsTagIds': '663', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-17 14:56:08', 'tareWeightDate': '2021-08-17 14:56:08', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '测试沈阳', 'inGreeterId': '223', 'outGreeterId': '', 'sumPrice': '22000', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''} | ||
3846 | -其他参数: {} | ||
3847 | -接口返回: <style> | ||
3848 | - .table-chrgeitem td, | ||
3849 | - .table-chrgeitem th { | ||
3850 | - padding: .5rem .45rem; | ||
3851 | - height: auto; | ||
3852 | - } | ||
3853 | -</style> | ||
3854 | -<input type="hidden" id="marketFlag" name="marketFlag" value="sy"> | ||
3855 | -<input type="hidden" id="goodsAllocationText" value="无"> | ||
3856 | -<input type="hidden" id="requireItemZeroMsg" value="1"> | ||
3857 | -<input type="hidden" id="checkItemAllZero" value="1"> | ||
3858 | -<input type="hidden" id="itemFee" value="交易管理费:¥5.00 检测费:¥3.00 "> | ||
3859 | -<input type="hidden" id="receivedInWords" value="捌元整"> | ||
3860 | -<input type="hidden" id="e" value=""> | ||
3861 | -<input type="hidden" id="ctotal" value="8.00"> | ||
3862 | -<input type="hidden" id="creceivable" value="13.00"> | ||
3863 | -<input type="hidden" id="cdiscount" value="5.00"> | ||
3864 | - | ||
3865 | -<input type="hidden" id="ctotalLong" name="totalMoney" value="800"> | ||
3866 | -<input type="hidden" id="creceivableLong" name="receivable" value="1300"> | ||
3867 | -<input type="hidden" id="ccollectionLong" name="collectionPrice" value="0"> | ||
3868 | -<input type="hidden" id="discountAmountLong" name="discountAmount" value="500"> | ||
3869 | -<input type="hidden" id="handReceivableAmountLong" name="handReceivableAmount" value="0"> | ||
3870 | -<input type="hidden" id="itemReceivableAmountLong" name="itemReceivableAmount" value="1300"> | ||
3871 | -<input type="hidden" id="correctDiscount" name="correctDiscount" value="1"> | ||
3872 | - | ||
3873 | -<table class="table table-hover table-bordered mt-2 table-chrgeitem"> | ||
3874 | - <tr class="row px-3"> | ||
3875 | - <th class="col-3">收费项目应收<span id="gz-tag" style="display: none;color: red;">【已更正】</span></th> | ||
3876 | - <th class="col-3">收费项目优惠1</th> | ||
3877 | - <th class="col-3">收费项目优惠2</th> | ||
3878 | - <th class="col-3">收费项目实收</th> | ||
3879 | - </tr> | ||
3880 | - <input type="hidden" name="billItems" value=''> | ||
3881 | - <input type="hidden" name="billItemsDic" value=''> | ||
3882 | - | ||
3883 | - | ||
3884 | - | ||
3885 | - <tr class="row px-3"> | ||
3886 | - <td class="col-3"> | ||
3887 | - <div class="itemwrap row"> | ||
3888 | - <div class="col-auto item chargeitem"> | ||
3889 | - <div class="form-group"> | ||
3890 | - <div class="d-flex align-items-center"> | ||
3891 | - <input type="checkbox" name="billItemCheckIds" value="103" data-name="交易管理费" | ||
3892 | - data-req="1" checked readonly onclick="return false"> | ||
3893 | - <div class="input-group-prepend"> | ||
3894 | - 交易管理费: | ||
3895 | - </div> | ||
3896 | - <input type="text" title="规则ID:615,规则名:交易管理" class="form-control fees bold" | ||
3897 | - name="103" maxlength="15" data-old="10.00" | ||
3898 | - data-old-receivable="1000" value="10.00" readonly> | ||
3899 | - <input type="hidden" name="billItems" value='{"discount":500,"id":103,"name":"交易管理费","receivable":1000,"require":1}'> | ||
3900 | - </div> | ||
3901 | - </div> | ||
3902 | - </div> | ||
3903 | - </div> | ||
3904 | - </td> | ||
3905 | - <td class="col-3"> | ||
3906 | - <div class="itemwrap row"> | ||
3907 | - | ||
3908 | - | ||
3909 | - <div class="col-auto item offeritem red" data-req="0"> | ||
3910 | - <div class="form-group"> | ||
3911 | - <div class="d-flex align-items-center"> | ||
3912 | - | ||
3913 | - <input type="checkbox" name="billItemDicCheckIds" value="105" data-req="0" | ||
3914 | - checked> | ||
3915 | - <div class="input-group-prepend"> | ||
3916 | - 优惠收费: | ||
3917 | - </div> | ||
3918 | - | ||
3919 | - <input type="text" 规则ID:619,规则名:卡账户匹配 class="form-control fees bold" | ||
3920 | - value="-5.00" readonly> | ||
3921 | - <input type="hidden" name="billItemsDic" value='{"discount":0,"id":105,"name":"优惠收费","receivable":500,"require":0}'> | ||
3922 | - </div> | ||
3923 | - </div> | ||
3924 | - </div> | ||
3925 | - | ||
3926 | - </div> | ||
3927 | - </td> | ||
3928 | - <td class="col-3"> | ||
3929 | - <div class="itemwrap row"> | ||
3930 | - <div class="col-auto item offeritem" > | ||
3931 | - <div class="form-group"> | ||
3932 | - <div class="d-flex align-items-center"> | ||
3933 | - 返点的钱 : | ||
3934 | - <input type="text" class="form-control fees bold" | ||
3935 | - value="0.00" readonly> | ||
3936 | - </div> | ||
3937 | - </div> | ||
3938 | - </div> | ||
3939 | - </div> | ||
3940 | - </td> | ||
3941 | - <td class="col-3"> | ||
3942 | - <span class="bold singleRealfee">5.00</span> | ||
3943 | - | ||
3944 | - </td> | ||
3945 | - </tr> | ||
3946 | - | ||
3947 | - | ||
3948 | - <tr class="row px-3"> | ||
3949 | - <td class="col-3"> | ||
3950 | - <div class="itemwrap row"> | ||
3951 | - <div class="col-auto item chargeitem"> | ||
3952 | - <div class="form-group"> | ||
3953 | - <div class="d-flex align-items-center"> | ||
3954 | - <input type="checkbox" name="billItemCheckIds" value="106" data-name="检测费" | ||
3955 | - data-req="1" checked readonly onclick="return false"> | ||
3956 | - <div class="input-group-prepend"> | ||
3957 | - 检测费: | ||
3958 | - </div> | ||
3959 | - <input type="text" title="规则ID:499,规则名:固定检测费" class="form-control fees bold" | ||
3960 | - name="106" maxlength="15" data-old="3.00" | ||
3961 | - data-old-receivable="300" value="3.00" readonly> | ||
3962 | - <input type="hidden" name="billItems" value='{"discount":0,"id":106,"name":"检测费","receivable":300,"require":1}'> | ||
3963 | - </div> | ||
3964 | - </div> | ||
3965 | - </div> | ||
3966 | - </div> | ||
3967 | - </td> | ||
3968 | - <td class="col-3"> | ||
3969 | - <div class="itemwrap row"> | ||
3970 | - | ||
3971 | - </div> | ||
3972 | - </td> | ||
3973 | - <td class="col-3"> | ||
3974 | - <div class="itemwrap row"> | ||
3975 | - <div class="col-auto item offeritem" > | ||
3976 | - </div> | ||
3977 | - </div> | ||
3978 | - </td> | ||
3979 | - <td class="col-3"> | ||
3980 | - <span class="bold singleRealfee">3.00</span> | ||
3981 | - | ||
3982 | - </td> | ||
3983 | - </tr> | ||
3984 | - | ||
3985 | - | ||
3986 | - | ||
3987 | - | ||
3988 | -</table> | ||
3989 | - | ||
3990 | - | ||
3991 | - | ||
3992 | - | ||
3993 | - | ||
3994 | - | ||
3995 | - | ||
3996 | - | ||
3997 | - | ||
3998 | -<script> | ||
3999 | - $(function () { | ||
4000 | - /* 可选项的收费项目才能选择优惠项目 */ | ||
4001 | - $('#feeitemedit .chargeitem [data-req="-1"]').each(function () { | ||
4002 | - // offeritem所有优惠项目,offeritemReq必填优惠项目 | ||
4003 | - var offeritem = $(this).closest('tr').find('.offeritem :checkbox'); | ||
4004 | - var offeritemReq = $(this).closest('tr').find('.offeritem [data-req="1"]'); | ||
4005 | - if ($(this).is(':checked')) { | ||
4006 | - offeritem.not(offeritemReq).attr('disabled', false); | ||
4007 | - offeritemReq.prop('checked', true); | ||
4008 | - } else { | ||
4009 | - offeritem.not(offeritemReq).attr('disabled', true); | ||
4010 | - offeritem.prop('checked', false); | ||
4011 | - } | ||
4012 | - }) | ||
4013 | - var uItem = $("#updateFeeItems").val(); | ||
4014 | - if (uItem == 2) { | ||
4015 | - $("#gz-tag").show(); | ||
4016 | - } | ||
4017 | - }) | ||
4018 | - | ||
4019 | - $('#feeitemedit :checkbox').change(function () { | ||
4020 | - calculate(); | ||
4021 | - }) | ||
4022 | - // 收费项目金额千位分隔符四舍五入显示2位小数.00 | ||
4023 | - $('#feeitemedit .chargeitem .fees').on('blur', function () { | ||
4024 | - var old = $(this).attr("data-old"); | ||
4025 | - var now = $(this).val(); | ||
4026 | - //console.log("old:"+old+",new:"+now); | ||
4027 | - if (old == now) { | ||
4028 | - //没有变动 | ||
4029 | - //console.log("没有变动old:"+old+",new:"+now); | ||
4030 | - return; | ||
4031 | - } | ||
4032 | - | ||
4033 | - var fees = parseFloat($(this).val().replace(/[^\d\.]/g, '')); | ||
4034 | - var feesThousand; | ||
4035 | - if (fees === '' || isNaN(fees) || fees < 0) { | ||
4036 | - fees = 0 | ||
4037 | - $(this).val('0.00') | ||
4038 | - } else { | ||
4039 | - fees = Math.round(fees).toFixed(2); | ||
4040 | - feesThousand = fees.replace(/(\d{1,3})(?=(\d{3})+(?:$|\.))/g, "$1,"); | ||
4041 | - $(this).val(feesThousand) | ||
4042 | - } | ||
4043 | - var price = new Number(fees); | ||
4044 | - var temp1 = new Number(100); | ||
4045 | - var receivable = price.mul(temp1); | ||
4046 | - var old = $(this).attr("data-old-receivable"); | ||
4047 | - if (old == receivable) { | ||
4048 | - //没有变动 | ||
4049 | - //console.log("没有变动old:"+old+",new:"+receivable); | ||
4050 | - return; | ||
4051 | - } | ||
4052 | - | ||
4053 | - var info = $(this).siblings()[0]; | ||
4054 | - var req = $(info).attr("data-req"); | ||
4055 | - var dateid = $(info).val(); | ||
4056 | - var itemName = $(info).attr("data-name"); | ||
4057 | - var feeItemParamHtml = new Object(); | ||
4058 | - feeItemParamHtml.id = dateid; | ||
4059 | - feeItemParamHtml.name = itemName; | ||
4060 | - feeItemParamHtml.require = req; | ||
4061 | - feeItemParamHtml.receivable = receivable; | ||
4062 | - var result = JSON.stringify(feeItemParamHtml); | ||
4063 | - $(this).next().val(result); | ||
4064 | - if ($("#correctInfo").val() == 2) { | ||
4065 | - $("#updateFeeItems").val(2); | ||
4066 | - } | ||
4067 | - calculate(); | ||
4068 | - }) | ||
4069 | - | ||
4070 | - | ||
4071 | -</script> | ||
4072 | -[2021-08-17 14:56:11] [INFO] : ====================================================================================== | ||
4073 | -[2021-08-17 14:56:16] [INFO] : | ||
4074 | -url: http://test.jmsf.diligrp.com:8385/entranceTrade/doPay.action | ||
4075 | -参数: protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=2&id=4379&goodsId=4393&number=202108170900063&modified=2021-08-17%2014%3A56%3A08&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=800&customerId=389&fundAccount=105847&ic=888810032426&customerName=%E9%95%BF%E6%AD%8C%E4%B9%B0%E5%AE%B6%E7%9C%81%E5%86%85%E5%95%8A%E5%95%8A%E5%95%8A%E5%98%BF&customerPhone=18011501258&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA74354&autocomplete-cartype=003%28%E6%9D%BF%E8%BD%A6%29&carTypeName=%E6%9D%BF%E8%BD%A6&carTypeCode=003&carTypeId=53&carTypeWeight=&storeTareWeight=&proveType=665&grossWeight=0&tareWeight=0&weight=220&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=800&chargeTotalAmountYuan=8&freezeMoneySymbol=13&comparisonFreezeAmount=13&created=2021-08-17%2014%3A56%3A08&remark=&goodsTagIds=663&marketFlag=sy&totalMoney=800&receivable=1300&collectionPrice=0&discountAmount=500&handReceivableAmount=0&itemReceivableAmount=1300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=1300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=53&driverTel=&grossWeightDate=2021-08-17%2014%3A56%3A08&tareWeightDate=2021-08-17%2014%3A56%3A08&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=&inGreeterId=0&outGreeterId=&sumPrice=22000&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=105847&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=103&103=10.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%3A1000%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 | ||
4076 | -其他参数: {} | ||
4077 | -接口返回: {"code":"200","message":"OK","result":"OK","success":true} | 1 | +[2021-08-18 17:52:24] [INFO] : ====================================================================================== |
2 | +[2021-08-18 17:52:24] [INFO] : http://test.uap.diligrp.com/api/authenticationApi/loginWeb | ||
3 | +{'data': None, 'json': {'userName': 'sy_chen', 'password': 'HTRQ9gKKIZlqPWnyRqcpYdrgYpgi1fnk5o3jK4IovXLGxphXDJMoXYX2+B3o5SyPeqPHPW1vUAjaQrKE141Kyi+iw4hz6VNNRCwdYTsL93NgSOXxt3Gtjsd+kTEB16vvIUvvWpoXEjQ8hzXRfFAMMmWGkB7gQ1Qt8NydaN1G3Uk='}, 'headers': {'Content-Type': 'text/plain;charset=utf-8', 'Host': 'test.uap.diligrp.com', 'Content-Length': '209', 'Expect': '100-continue'}} | ||
4 | + | ||
5 | +[2021-08-18 17:52:24] [INFO] : ====================================================================================== | ||
6 | +[2021-08-18 17:52:24] [INFO] : http://test.uap.diligrp.com/api/authenticationApi/loginWeb | ||
7 | +{'data': None, 'json': {'userName': 'sygangda', 'password': 'lMfiKic/9TfZD0zd/x0dmHAe2aZW+imACcUMD3kZILkZ/cgLqrytQibLVdR4blMSOYOQzjQy+YKNxNYRfunk3SkTH3SIn1rkTdkTVT6pLiEtWbc6vVwJwIFe2hN2zYSgbAQ799Gczq2cOKRVEL9xRYMvKRBTYzeaWAn4xFlmUHE='}, 'headers': {'Content-Type': 'text/plain;charset=utf-8', 'Host': 'test.uap.diligrp.com', 'Content-Length': '209', 'Expect': '100-continue'}} | ||
8 | + | ||
9 | +[2021-08-18 17:52:25] [INFO] : ====================================================================================== | ||
10 | +[2021-08-18 17:52:25] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType | ||
11 | +{"businessCode": "jmsf"} | ||
12 | +{} | ||
13 | + | ||
14 | +[2021-08-18 17:52:25] [INFO] : ====================================================================================== | ||
15 | +[2021-08-18 17:52:25] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree | ||
16 | +{"marketId": 9, "state": 1, "keyword": "\u852c\u83dc"} | ||
17 | +{} | ||
18 | + | ||
19 | +[2021-08-18 17:52:25] [INFO] : ====================================================================================== | ||
20 | +[2021-08-18 17:52:25] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api | ||
21 | +{"firmCode": "sy", "departmentId": 58, "keyword": ""} | ||
22 | +{} | ||
23 | + | ||
24 | +[2021-08-18 17:52:25] [INFO] : ====================================================================================== | ||
25 | +[2021-08-18 17:52:25] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/tradeType/query | ||
26 | +{"pageNum": 100, "pageSize": 100, "marketId": 9} | ||
27 | +{} | ||
28 | + | ||
29 | +[2021-08-18 17:52:26] [INFO] : ====================================================================================== | ||
30 | +[2021-08-18 17:52:26] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | ||
31 | +None | ||
32 | +{'params': {'pid': 'goods_tag'}} | ||
33 | + | ||
34 | +[2021-08-18 17:52:26] [INFO] : ====================================================================================== | ||
35 | +[2021-08-18 17:52:26] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/address | ||
36 | +{"province": "C", "city": null, "area": null} | ||
37 | +{} | ||
38 | + | ||
39 | +[2021-08-18 17:52:26] [INFO] : ====================================================================================== | ||
40 | +[2021-08-18 17:52:26] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep | ||
41 | +None | ||
42 | +{'params': {'keyword': ''}} | ||
43 | + | ||
44 | +[2021-08-18 17:52:27] [INFO] : ====================================================================================== | ||
45 | +[2021-08-18 17:52:27] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | ||
46 | +None | ||
47 | +{'params': {'pid': 'prove_type'}} | ||
48 | + | ||
49 | +[2021-08-18 17:52:27] [INFO] : ====================================================================================== | ||
50 | +[2021-08-18 17:52:27] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action | ||
51 | +None | ||
52 | +{} | ||
53 | + | ||
54 | +[2021-08-18 17:52:27] [INFO] : ====================================================================================== | ||
55 | +[2021-08-18 17:52:27] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave | ||
56 | +{"carTypeCode": "003", "carTypeId": 53, "carTypeName": "\u677f\u8f66", "carTypeWeight": 333, "plate": "\u5dddA24416", "inGreeterId": 223, "inGreeterName": "\u6d4b\u8bd5\u6c88\u9633", "productId": 1, "productName": "\u852c\u83dc", "proveTypeCode": 665, "proveTypeName": "\u98df\u54c1\u5b89\u5168", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 432, "grossWeightDate": "2021-08-18 17:52:27", "newWeight": 99, "tareWeight": 333, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA24416", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 58, "depName": "\u6c34\u679c\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": 663} | ||
57 | +{} | ||
58 | + | ||
59 | +[2021-08-18 17:52:28] [INFO] : ====================================================================================== | ||
60 | +[2021-08-18 17:52:28] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action | ||
61 | +{'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': '202108180900161'} | ||
62 | +{} | ||
63 | + | ||
64 | +[2021-08-18 17:52:28] [INFO] : ====================================================================================== | ||
65 | +[2021-08-18 17:52:28] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/amend/4554.action | ||
66 | +None | ||
67 | +{} | ||
68 | + | ||
69 | +[2021-08-18 17:52:30] [INFO] : ====================================================================================== | ||
70 | +[2021-08-18 17:52:30] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州 | ||
71 | +None | ||
72 | +{} | ||
73 | + | ||
74 | +[2021-08-18 17:52:30] [INFO] : ====================================================================================== | ||
75 | +[2021-08-18 17:52:30] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action | ||
76 | +{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'amend', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 4554, 'goodsId': '4568', 'number': '202108180900161', 'modified': '2021-08-18 17:52:30', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A24416', 'autocomplete-cartype': '003(板车)', 'carTypeName': '板车', 'carTypeCode': '003', 'carTypeId': '53', 'carTypeWeight': '333', 'storeTareWeight': '', 'proveType': '1895', 'grossWeight': '432', 'tareWeight': '333', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '水果部', 'regionName': '', 'regionId': '0', 'productName': '蔬菜', 'productId': '1', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '80', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-18 17:52:27', 'remark': 'false', 'goodsTagIds': '1900', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '蔬菜', 'categoryId': '1', 'driverTel': '', 'grossWeightDate': '2021-08-18 17:52:27', 'tareWeightDate': '2021-08-18 17:52:27', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '测试沈阳', 'inGreeterId': '223', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'proveTypeName': '产地证明'} | ||
77 | +{} | ||
78 | + | ||
79 | +[2021-08-18 17:52:30] [INFO] : ====================================================================================== | ||
80 | +[2021-08-18 17:52:30] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/doAmend.action | ||
81 | +protocolId=&pwd=111111&clientRedirectTag=&viewType=amend&optType=0&optUrl=&correctInfo=1&weightType=1&id=4554&goodsId=4568&number=202108180900161&modified=2021-08-18%2017%3A52%3A27&status=2&source=1&updateFeeItems=2&correctDiscount=1&totalAmount=800&customerId=0&fundAccount=&accountId=&ic=&customerName=&customerPhone=&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA24416&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=1895&grossWeight=432&tareWeight=333&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E6%B0%B4%E6%9E%9C%E9%83%A8&dep=58®ionId=&productName=%E8%94%AC%E8%8F%9C&productId=1&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=80&chargeTotalAmount=800&chargeTotalAmountYuan=8&freezeMoneySymbol=13&comparisonFreezeAmount=13&created=2021-08-18%2017%3A52%3A27&remark=%E5%A4%87%E6%B3%A8&goodsTagIds=1900&shareRatio=0&handlingTeam=&steveTeamId=&handlingRatio=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&marketFlag=sy&totalMoney=800&receivable=1300&collectionPrice=0&discountAmount=500&handReceivableAmount=0&itemReceivableAmount=1300&receivableAmount=1300&categoryName=%E8%94%AC%E8%8F%9C&categoryId=1&driverTel=&grossWeightDate=2021-08-18%2017%3A52%3A27&tareWeightDate=2021-08-18%2017%3A52%3A27&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=103&103=10.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%3A1000%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 | ||
82 | +{} | ||
83 | + | ||
84 | +[2021-08-18 17:52:31] [INFO] : ====================================================================================== | ||
85 | +[2021-08-18 17:52:31] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType | ||
86 | +{"businessCode": "jmsf"} | ||
87 | +{} | ||
88 | + | ||
89 | +[2021-08-18 17:52:31] [INFO] : ====================================================================================== | ||
90 | +[2021-08-18 17:52:31] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree | ||
91 | +{"marketId": 9, "state": 1, "keyword": "\u852c\u83dc"} | ||
92 | +{} | ||
93 | + | ||
94 | +[2021-08-18 17:52:31] [INFO] : ====================================================================================== | ||
95 | +[2021-08-18 17:52:31] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api | ||
96 | +{"firmCode": "sy", "departmentId": 58, "keyword": ""} | ||
97 | +{} | ||
98 | + | ||
99 | +[2021-08-18 17:52:31] [INFO] : ====================================================================================== | ||
100 | +[2021-08-18 17:52:31] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/tradeType/query | ||
101 | +{"pageNum": 100, "pageSize": 100, "marketId": 9} | ||
102 | +{} | ||
103 | + | ||
104 | +[2021-08-18 17:52:32] [INFO] : ====================================================================================== | ||
105 | +[2021-08-18 17:52:32] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | ||
106 | +None | ||
107 | +{'params': {'pid': 'goods_tag'}} | ||
108 | + | ||
109 | +[2021-08-18 17:52:32] [INFO] : ====================================================================================== | ||
110 | +[2021-08-18 17:52:32] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/address | ||
111 | +{"province": "C", "city": null, "area": null} | ||
112 | +{} | ||
113 | + | ||
114 | +[2021-08-18 17:52:32] [INFO] : ====================================================================================== | ||
115 | +[2021-08-18 17:52:32] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep | ||
116 | +None | ||
117 | +{'params': {'keyword': ''}} | ||
118 | + | ||
119 | +[2021-08-18 17:52:33] [INFO] : ====================================================================================== | ||
120 | +[2021-08-18 17:52:33] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | ||
121 | +None | ||
122 | +{'params': {'pid': 'prove_type'}} | ||
123 | + | ||
124 | +[2021-08-18 17:52:33] [INFO] : ====================================================================================== | ||
125 | +[2021-08-18 17:52:33] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action | ||
126 | +None | ||
127 | +{} | ||
128 | + | ||
129 | +[2021-08-18 17:52:33] [INFO] : ====================================================================================== | ||
130 | +[2021-08-18 17:52:33] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave | ||
131 | +{"carTypeCode": "003", "carTypeId": 53, "carTypeName": "\u677f\u8f66", "carTypeWeight": 333, "plate": "\u5dddA72352", "inGreeterId": 223, "inGreeterName": "\u6d4b\u8bd5\u6c88\u9633", "productId": 1, "productName": "\u852c\u83dc", "proveTypeCode": 665, "proveTypeName": "\u98df\u54c1\u5b89\u5168", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 432, "grossWeightDate": "2021-08-18 17:52:33", "newWeight": 99, "tareWeight": 333, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA72352", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 58, "depName": "\u6c34\u679c\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": 663} | ||
132 | +{} | ||
133 | + | ||
134 | +[2021-08-18 17:52:34] [INFO] : ====================================================================================== | ||
135 | +[2021-08-18 17:52:34] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action | ||
136 | +{'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': '202108180900162'} | ||
137 | +{} | ||
138 | + | ||
139 | +[2021-08-18 17:52:34] [INFO] : ====================================================================================== | ||
140 | +[2021-08-18 17:52:34] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/correct/4555.action | ||
141 | +None | ||
142 | +{} | ||
143 | + | ||
144 | +[2021-08-18 17:52:35] [INFO] : ====================================================================================== | ||
145 | +[2021-08-18 17:52:35] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州 | ||
146 | +None | ||
147 | +{} | ||
148 | + | ||
149 | +[2021-08-18 17:52:36] [INFO] : ====================================================================================== | ||
150 | +[2021-08-18 17:52:36] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action | ||
151 | +{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'correct', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 4555, 'goodsId': '4569', 'number': '202108180900162', 'modified': '2021-08-18 17:52:36', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '2', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A72352', 'autocomplete-cartype': '003(板车)', 'carTypeName': '板车', 'carTypeCode': '003', 'carTypeId': '53', 'carTypeWeight': '333', 'storeTareWeight': '', 'proveType': '1895', 'grossWeight': '432', 'tareWeight': '333', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '水果部', 'regionName': '', 'regionId': '0', 'productName': '蔬菜', 'productId': '1', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '80', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-18 17:52:33', 'remark': 'false', 'goodsTagIds': '1900', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '蔬菜', 'categoryId': '1', 'driverTel': '', 'grossWeightDate': '2021-08-18 17:52:33', 'tareWeightDate': '2021-08-18 17:52:33', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '测试沈阳', 'inGreeterId': '223', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': ''} | ||
152 | +{} | ||
153 | + | ||
154 | +[2021-08-18 17:52:36] [INFO] : ====================================================================================== | ||
155 | +[2021-08-18 17:52:36] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/doCorrect.action | ||
156 | +protocolId=&pwd=111111&clientRedirectTag=&viewType=correct&optType=0&optUrl=&correctInfo=1&weightType=1&id=4555&goodsId=4569&number=202108180900162&modified=2021-08-18%2017%3A52%3A33&status=2&source=1&updateFeeItems=2&correctDiscount=1&totalAmount=11900&customerId=0&fundAccount=&accountId=&ic=&customerName=&customerPhone=&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA72352&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=1895&grossWeight=432&tareWeight=333&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E6%B0%B4%E6%9E%9C%E9%83%A8&dep=58®ionId=&productName=%E8%94%AC%E8%8F%9C&productId=1&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=80&chargeTotalAmount=11900&chargeTotalAmountYuan=119&freezeMoneySymbol=124&comparisonFreezeAmount=124&created=2021-08-18%2017%3A52%3A33&remark=%E5%A4%87%E6%B3%A8&goodsTagIds=1900&shareRatio=0&handlingTeam=&steveTeamId=&handlingRatio=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&marketFlag=sy&totalMoney=800&receivable=12400&collectionPrice=0&discountAmount=500&handReceivableAmount=0&itemReceivableAmount=12400&receivableAmount=12400&categoryName=%E8%94%AC%E8%8F%9C&categoryId=1&driverTel=&grossWeightDate=2021-08-18%2017%3A52%3A33&tareWeightDate=2021-08-18%2017%3A52%3A33&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=103&103=69&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%3A6900%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=55&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%3A5500%2C%22require%22%3A1%7D | ||
157 | +{} | ||
158 | + | ||
159 | +[2021-08-18 17:52:37] [INFO] : ====================================================================================== | ||
160 | +[2021-08-18 17:52:37] [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': '202108180900162'} | ||
162 | +{} | ||
163 | + | ||
164 | +[2021-08-18 17:52:37] [INFO] : ====================================================================================== | ||
165 | +[2021-08-18 17:52:37] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType | ||
166 | +{"businessCode": "jmsf"} | ||
167 | +{} | ||
168 | + | ||
169 | +[2021-08-18 17:52:37] [INFO] : ====================================================================================== | ||
170 | +[2021-08-18 17:52:37] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree | ||
171 | +{"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"} | ||
172 | +{} | ||
173 | + | ||
174 | +[2021-08-18 17:52:38] [INFO] : ====================================================================================== | ||
175 | +[2021-08-18 17:52:38] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api | ||
176 | +{"firmCode": "sy", "departmentId": 58, "keyword": ""} | ||
177 | +{} | ||
178 | + | ||
179 | +[2021-08-18 17:52:38] [INFO] : ====================================================================================== | ||
180 | +[2021-08-18 17:52:38] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/tradeType/query | ||
181 | +{"pageNum": 100, "pageSize": 100, "marketId": 9} | ||
182 | +{} | ||
183 | + | ||
184 | +[2021-08-18 17:52:38] [INFO] : ====================================================================================== | ||
185 | +[2021-08-18 17:52:38] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | ||
186 | +None | ||
187 | +{'params': {'pid': 'goods_tag'}} | ||
188 | + | ||
189 | +[2021-08-18 17:52:38] [INFO] : ====================================================================================== | ||
190 | +[2021-08-18 17:52:38] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/address | ||
191 | +{"province": "C", "city": null, "area": null} | ||
192 | +{} | ||
193 | + | ||
194 | +[2021-08-18 17:52:39] [INFO] : ====================================================================================== | ||
195 | +[2021-08-18 17:52:39] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep | ||
196 | +None | ||
197 | +{'params': {'keyword': ''}} | ||
198 | + | ||
199 | +[2021-08-18 17:52:39] [INFO] : ====================================================================================== | ||
200 | +[2021-08-18 17:52:39] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | ||
201 | +None | ||
202 | +{'params': {'pid': 'prove_type'}} | ||
203 | + | ||
204 | +[2021-08-18 17:52:39] [INFO] : ====================================================================================== | ||
205 | +[2021-08-18 17:52:39] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action | ||
206 | +None | ||
207 | +{} | ||
208 | + | ||
209 | +[2021-08-18 17:52:39] [INFO] : ====================================================================================== | ||
210 | +[2021-08-18 17:52:39] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/sparePartsWeighSave | ||
211 | +{"driverTel": "", "inGreeterId": 223, "inGreeterName": "\u6d4b\u8bd5\u6c88\u9633", "itemWeight": 11, "productId": 2182, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 665, "proveTypeName": "\u98df\u54c1\u5b89\u5168", "qty": 33, "weighRemark": null, "weight": 220, "weighmanRecord": {"grossWeight": null, "grossWeightDate": null, "newWeight": null, "tareWeight": null, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "plate": "\u5dddA81142", "carTypeId": 53, "carTypeCode": "003", "carTypeName": "\u677f\u8f66", "pathAddress": "A4-BB-6D-0A-F4-13", "entryPlateInputType": 1, "feeDepId": 0, "feeDepName": null, "dep": 58, "depName": "\u6c34\u679c\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": "\u5dddA81142", "cateId": 2182, "productState": "1"} | ||
212 | +{} | ||
213 | + | ||
214 | +[2021-08-18 17:52:40] [INFO] : ====================================================================================== | ||
215 | +[2021-08-18 17:52:40] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action | ||
216 | +{'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': '202108180900163'} | ||
217 | +{} | ||
218 | + | ||
219 | +[2021-08-18 17:52:40] [INFO] : ====================================================================================== | ||
220 | +[2021-08-18 17:52:40] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/4556.action | ||
221 | +None | ||
222 | +{} | ||
223 | + | ||
224 | +[2021-08-18 17:52:42] [INFO] : ====================================================================================== | ||
225 | +[2021-08-18 17:52:42] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=888810033081 | ||
226 | +None | ||
227 | +{} | ||
228 | + | ||
229 | +[2021-08-18 17:52:42] [INFO] : ====================================================================================== | ||
230 | +[2021-08-18 17:52:42] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州 | ||
231 | +None | ||
232 | +{} | ||
233 | + | ||
234 | +[2021-08-18 17:52:42] [INFO] : ====================================================================================== | ||
235 | +[2021-08-18 17:52:42] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action | ||
236 | +{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '2', 'id': 4556, 'goodsId': '4570', 'number': '202108180900163', 'modified': '2021-08-18 17:52:42', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A81142', 'autocomplete-cartype': '003(板车)', 'carTypeName': '板车', 'carTypeCode': '003', 'carTypeId': '53', 'carTypeWeight': '', 'storeTareWeight': '', 'proveType': '665', 'grossWeight': '0', 'tareWeight': '0', 'weight': '220', '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-18 17:52:39', 'remark': 'false', 'goodsTagIds': '663', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-18 17:52:39', 'tareWeightDate': '2021-08-18 17:52:39', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '测试沈阳', 'inGreeterId': '223', 'outGreeterId': '', 'sumPrice': '22000', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''} | ||
237 | +{} | ||
238 | + | ||
239 | +[2021-08-18 17:52:43] [INFO] : ====================================================================================== | ||
240 | +[2021-08-18 17:52:43] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doPay.action | ||
241 | +protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=2&id=4556&goodsId=4570&number=202108180900163&modified=2021-08-18%2017%3A52%3A39&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=800&customerId=384&fundAccount=103101&ic=888810033081&customerName=%2A%2A%2A%2A%2A%2A&customerPhone=19010001000&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA81142&autocomplete-cartype=003%28%E6%9D%BF%E8%BD%A6%29&carTypeName=%E6%9D%BF%E8%BD%A6&carTypeCode=003&carTypeId=53&carTypeWeight=&storeTareWeight=&proveType=665&grossWeight=0&tareWeight=0&weight=220&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=800&chargeTotalAmountYuan=8&freezeMoneySymbol=13&comparisonFreezeAmount=13&created=2021-08-18%2017%3A52%3A39&remark=&goodsTagIds=663&marketFlag=sy&totalMoney=800&receivable=1300&collectionPrice=0&discountAmount=500&handReceivableAmount=0&itemReceivableAmount=1300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=1300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=53&driverTel=&grossWeightDate=2021-08-18%2017%3A52%3A39&tareWeightDate=2021-08-18%2017%3A52%3A39&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=&inGreeterId=0&outGreeterId=&sumPrice=22000&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=103101&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=103&103=10.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%3A1000%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 | ||
242 | +{} | ||
243 | + | ||
244 | +[2021-08-18 17:52:47] [INFO] : ====================================================================================== | ||
245 | +[2021-08-18 17:52:47] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType | ||
246 | +{"businessCode": "jmsf"} | ||
247 | +{} | ||
248 | + | ||
249 | +[2021-08-18 17:52:47] [INFO] : ====================================================================================== | ||
250 | +[2021-08-18 17:52:47] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree | ||
251 | +{"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"} | ||
252 | +{} | ||
253 | + | ||
254 | +[2021-08-18 17:52:48] [INFO] : ====================================================================================== | ||
255 | +[2021-08-18 17:52:48] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api | ||
256 | +{"firmCode": "sy", "departmentId": 58, "keyword": ""} | ||
257 | +{} | ||
258 | + | ||
259 | +[2021-08-18 17:52:48] [INFO] : ====================================================================================== | ||
260 | +[2021-08-18 17:52:48] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/tradeType/query | ||
261 | +{"pageNum": 100, "pageSize": 100, "marketId": 9} | ||
262 | +{} | ||
263 | + | ||
264 | +[2021-08-18 17:52:48] [INFO] : ====================================================================================== | ||
265 | +[2021-08-18 17:52:48] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | ||
266 | +None | ||
267 | +{'params': {'pid': 'goods_tag'}} | ||
268 | + | ||
269 | +[2021-08-18 17:52:48] [INFO] : ====================================================================================== | ||
270 | +[2021-08-18 17:52:48] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/address | ||
271 | +{"province": "C", "city": null, "area": null} | ||
272 | +{} | ||
273 | + | ||
274 | +[2021-08-18 17:52:49] [INFO] : ====================================================================================== | ||
275 | +[2021-08-18 17:52:49] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep | ||
276 | +None | ||
277 | +{'params': {'keyword': ''}} | ||
278 | + | ||
279 | +[2021-08-18 17:52:49] [INFO] : ====================================================================================== | ||
280 | +[2021-08-18 17:52:49] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | ||
281 | +None | ||
282 | +{'params': {'pid': 'prove_type'}} | ||
283 | + | ||
284 | +[2021-08-18 17:52:49] [INFO] : ====================================================================================== | ||
285 | +[2021-08-18 17:52:49] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action | ||
286 | +None | ||
287 | +{} | ||
288 | + | ||
289 | +[2021-08-18 17:52:50] [INFO] : ====================================================================================== | ||
290 | +[2021-08-18 17:52:50] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave | ||
291 | +{"carTypeCode": "003", "carTypeId": 53, "carTypeName": "\u677f\u8f66", "carTypeWeight": 333, "plate": "\u5dddA77999", "inGreeterId": 223, "inGreeterName": "\u6d4b\u8bd5\u6c88\u9633", "productId": 2182, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 665, "proveTypeName": "\u98df\u54c1\u5b89\u5168", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 432, "grossWeightDate": "2021-08-18 17:52:50", "newWeight": 99, "tareWeight": 333, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA77999", "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} | ||
292 | +{} | ||
293 | + | ||
294 | +[2021-08-18 17:52:50] [INFO] : ====================================================================================== | ||
295 | +[2021-08-18 17:52:50] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action | ||
296 | +{'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': '202108180900164'} | ||
297 | +{} | ||
298 | + | ||
299 | +[2021-08-18 17:52:50] [INFO] : ====================================================================================== | ||
300 | +[2021-08-18 17:52:50] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/4557.action | ||
301 | +None | ||
302 | +{} | ||
303 | + | ||
304 | +[2021-08-18 17:52:52] [INFO] : ====================================================================================== | ||
305 | +[2021-08-18 17:52:52] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=888810033081 | ||
306 | +None | ||
307 | +{} | ||
308 | + | ||
309 | +[2021-08-18 17:52:52] [INFO] : ====================================================================================== | ||
310 | +[2021-08-18 17:52:52] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州 | ||
311 | +None | ||
312 | +{} | ||
313 | + | ||
314 | +[2021-08-18 17:52:52] [INFO] : ====================================================================================== | ||
315 | +[2021-08-18 17:52:52] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action | ||
316 | +{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 4557, 'goodsId': '4571', 'number': '202108180900164', 'modified': '2021-08-18 17:52:52', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A77999', '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-18 17:52:50', 'remark': 'false', 'goodsTagIds': '663', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-18 17:52:49', 'tareWeightDate': '2021-08-18 17:52:49', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '测试沈阳', 'inGreeterId': '223', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''} | ||
317 | +{} | ||
318 | + | ||
319 | +[2021-08-18 17:52:53] [INFO] : ====================================================================================== | ||
320 | +[2021-08-18 17:52:53] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doPay.action | ||
321 | +protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=1&id=4557&goodsId=4571&number=202108180900164&modified=2021-08-18%2017%3A52%3A50&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=800&customerId=384&fundAccount=103101&ic=888810033081&customerName=%2A%2A%2A%2A%2A%2A&customerPhone=19010001000&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA77999&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=800&chargeTotalAmountYuan=8&freezeMoneySymbol=13&comparisonFreezeAmount=13&created=2021-08-18%2017%3A52%3A50&remark=&goodsTagIds=663&marketFlag=sy&totalMoney=800&receivable=1300&collectionPrice=0&discountAmount=500&handReceivableAmount=0&itemReceivableAmount=1300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=1300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=53&driverTel=&grossWeightDate=2021-08-18%2017%3A52%3A49&tareWeightDate=2021-08-18%2017%3A52%3A49&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=&inGreeterId=0&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=103101&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=103&103=10.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%3A1000%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 | ||
322 | +{} | ||
323 | + | ||
324 | +[2021-08-18 17:52:57] [INFO] : ====================================================================================== | ||
325 | +[2021-08-18 17:52:57] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType | ||
326 | +{"businessCode": "jmsf"} | ||
327 | +{} | ||
328 | + | ||
329 | +[2021-08-18 17:52:58] [INFO] : ====================================================================================== | ||
330 | +[2021-08-18 17:52:58] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree | ||
331 | +{"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"} | ||
332 | +{} | ||
333 | + | ||
334 | +[2021-08-18 17:52:58] [INFO] : ====================================================================================== | ||
335 | +[2021-08-18 17:52:58] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api | ||
336 | +{"firmCode": "sy", "departmentId": 58, "keyword": ""} | ||
337 | +{} | ||
338 | + | ||
339 | +[2021-08-18 17:52:58] [INFO] : ====================================================================================== | ||
340 | +[2021-08-18 17:52:58] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/tradeType/query | ||
341 | +{"pageNum": 100, "pageSize": 100, "marketId": 9} | ||
342 | +{} | ||
343 | + | ||
344 | +[2021-08-18 17:52:58] [INFO] : ====================================================================================== | ||
345 | +[2021-08-18 17:52:58] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | ||
346 | +None | ||
347 | +{'params': {'pid': 'goods_tag'}} | ||
348 | + | ||
349 | +[2021-08-18 17:52:58] [INFO] : ====================================================================================== | ||
350 | +[2021-08-18 17:52:58] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/address | ||
351 | +{"province": "C", "city": null, "area": null} | ||
352 | +{} | ||
353 | + | ||
354 | +[2021-08-18 17:52:59] [INFO] : ====================================================================================== | ||
355 | +[2021-08-18 17:52:59] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep | ||
356 | +None | ||
357 | +{'params': {'keyword': ''}} | ||
358 | + | ||
359 | +[2021-08-18 17:52:59] [INFO] : ====================================================================================== | ||
360 | +[2021-08-18 17:52:59] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | ||
361 | +None | ||
362 | +{'params': {'pid': 'prove_type'}} | ||
363 | + | ||
364 | +[2021-08-18 17:52:59] [INFO] : ====================================================================================== | ||
365 | +[2021-08-18 17:52:59] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action | ||
366 | +None | ||
367 | +{} | ||
368 | + | ||
369 | +[2021-08-18 17:53:00] [INFO] : ====================================================================================== | ||
370 | +[2021-08-18 17:53:00] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave | ||
371 | +{"carTypeCode": "003", "carTypeId": 53, "carTypeName": "\u677f\u8f66", "carTypeWeight": 333, "plate": "\u5dddA41496", "inGreeterId": 223, "inGreeterName": "\u6d4b\u8bd5\u6c88\u9633", "productId": 2182, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 665, "proveTypeName": "\u98df\u54c1\u5b89\u5168", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 432, "grossWeightDate": "2021-08-18 17:53:00", "newWeight": 99, "tareWeight": 333, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA41496", "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} | ||
372 | +{} | ||
373 | + | ||
374 | +[2021-08-18 17:53:00] [INFO] : ====================================================================================== | ||
375 | +[2021-08-18 17:53:00] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action | ||
376 | +{'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': '202108180900165'} | ||
377 | +{} | ||
378 | + | ||
379 | +[2021-08-18 17:53:01] [INFO] : ====================================================================================== | ||
380 | +[2021-08-18 17:53:01] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/4558.action | ||
381 | +None | ||
382 | +{} | ||
383 | + | ||
384 | +[2021-08-18 17:53:02] [INFO] : ====================================================================================== | ||
385 | +[2021-08-18 17:53:02] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=888810033081 | ||
386 | +None | ||
387 | +{} | ||
388 | + | ||
389 | +[2021-08-18 17:53:02] [INFO] : ====================================================================================== | ||
390 | +[2021-08-18 17:53:02] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州 | ||
391 | +None | ||
392 | +{} | ||
393 | + | ||
394 | +[2021-08-18 17:53:03] [INFO] : ====================================================================================== | ||
395 | +[2021-08-18 17:53:03] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action | ||
396 | +{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 4558, 'goodsId': '4572', 'number': '202108180900165', 'modified': '2021-08-18 17:53:03', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A41496', '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-18 17:53:00', 'remark': 'false', 'goodsTagIds': '663', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-18 17:52:59', 'tareWeightDate': '2021-08-18 17:52:59', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '测试沈阳', 'inGreeterId': '223', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''} | ||
397 | +{} | ||
398 | + | ||
399 | +[2021-08-18 17:53:03] [INFO] : ====================================================================================== | ||
400 | +[2021-08-18 17:53:03] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doFreeze.action | ||
401 | +protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=1&id=4558&goodsId=4572&number=202108180900165&modified=2021-08-18%2017%3A53%3A00&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=800&customerId=384&fundAccount=103101&ic=888810033081&customerName=%2A%2A%2A%2A%2A%2A&customerPhone=19010001000&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA41496&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=800&chargeTotalAmountYuan=8&freezeMoneySymbol=13&comparisonFreezeAmount=13&created=2021-08-18%2017%3A53%3A00&remark=&goodsTagIds=663&marketFlag=sy&totalMoney=800&receivable=1300&collectionPrice=0&discountAmount=500&handReceivableAmount=0&itemReceivableAmount=1300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=1300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=1616&driverTel=&grossWeightDate=2021-08-18%2017%3A52%3A59&tareWeightDate=2021-08-18%2017%3A52%3A59&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=&inGreeterId=0&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=103101&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=103&103=10.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%3A1000%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 | ||
402 | +{} | ||
403 | + | ||
404 | +[2021-08-18 17:53:06] [INFO] : ====================================================================================== | ||
405 | +[2021-08-18 17:53:06] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType | ||
406 | +{"businessCode": "jmsf"} | ||
407 | +{} | ||
408 | + | ||
409 | +[2021-08-18 17:53:07] [INFO] : ====================================================================================== | ||
410 | +[2021-08-18 17:53:07] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree | ||
411 | +{"marketId": 9, "state": 1, "keyword": "\u852c\u83dc"} | ||
412 | +{} | ||
413 | + | ||
414 | +[2021-08-18 17:53:07] [INFO] : ====================================================================================== | ||
415 | +[2021-08-18 17:53:07] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api | ||
416 | +{"firmCode": "sy", "departmentId": 58, "keyword": ""} | ||
417 | +{} | ||
418 | + | ||
419 | +[2021-08-18 17:53:07] [INFO] : ====================================================================================== | ||
420 | +[2021-08-18 17:53:07] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/tradeType/query | ||
421 | +{"pageNum": 100, "pageSize": 100, "marketId": 9} | ||
422 | +{} | ||
423 | + | ||
424 | +[2021-08-18 17:53:07] [INFO] : ====================================================================================== | ||
425 | +[2021-08-18 17:53:07] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | ||
426 | +None | ||
427 | +{'params': {'pid': 'goods_tag'}} | ||
428 | + | ||
429 | +[2021-08-18 17:53:08] [INFO] : ====================================================================================== | ||
430 | +[2021-08-18 17:53:08] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/address | ||
431 | +{"province": "C", "city": null, "area": null} | ||
432 | +{} | ||
433 | + | ||
434 | +[2021-08-18 17:53:08] [INFO] : ====================================================================================== | ||
435 | +[2021-08-18 17:53:08] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep | ||
436 | +None | ||
437 | +{'params': {'keyword': ''}} | ||
438 | + | ||
439 | +[2021-08-18 17:53:08] [INFO] : ====================================================================================== | ||
440 | +[2021-08-18 17:53:08] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | ||
441 | +None | ||
442 | +{'params': {'pid': 'prove_type'}} | ||
443 | + | ||
444 | +[2021-08-18 17:53:09] [INFO] : ====================================================================================== | ||
445 | +[2021-08-18 17:53:09] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action | ||
446 | +None | ||
447 | +{} | ||
448 | + | ||
449 | +[2021-08-18 17:53:09] [INFO] : ====================================================================================== | ||
450 | +[2021-08-18 17:53:09] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave | ||
451 | +{"carTypeCode": "003", "carTypeId": 53, "carTypeName": "\u677f\u8f66", "carTypeWeight": 333, "plate": "\u5dddA55680", "inGreeterId": 223, "inGreeterName": "\u6d4b\u8bd5\u6c88\u9633", "productId": 1, "productName": "\u852c\u83dc", "proveTypeCode": 665, "proveTypeName": "\u98df\u54c1\u5b89\u5168", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 432, "grossWeightDate": "2021-08-18 17:53:09", "newWeight": 99, "tareWeight": 333, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA55680", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 58, "depName": "\u6c34\u679c\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": 663} | ||
452 | +{} | ||
453 | + | ||
454 | +[2021-08-18 17:53:09] [INFO] : ====================================================================================== | ||
455 | +[2021-08-18 17:53:09] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action | ||
456 | +{'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': '202108180900166'} | ||
457 | +{} | ||
458 | + | ||
459 | +[2021-08-18 17:53:10] [INFO] : ====================================================================================== | ||
460 | +[2021-08-18 17:53:10] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/invalid/4559.action | ||
461 | +None | ||
462 | +{} | ||
463 | + | ||
464 | +[2021-08-18 17:53:11] [INFO] : ====================================================================================== | ||
465 | +[2021-08-18 17:53:11] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州 | ||
466 | +None | ||
467 | +{} | ||
468 | + | ||
469 | +[2021-08-18 17:53:11] [INFO] : ====================================================================================== | ||
470 | +[2021-08-18 17:53:11] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action | ||
471 | +{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'invalid', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 4559, 'goodsId': '4573', 'number': '202108180900166', 'modified': '2021-08-18 17:53:11', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A55680', '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': '水果部', 'regionName': '', 'regionId': '0', 'productName': '蔬菜', 'productId': '1', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '70', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-18 17:53:09', 'remark': 'false', 'goodsTagIds': '663', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '蔬菜', 'categoryId': '1', 'driverTel': '', 'grossWeightDate': '2021-08-18 17:53:09', 'tareWeightDate': '2021-08-18 17:53:09', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '测试沈阳', 'inGreeterId': '223', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': ''} | ||
472 | +{} | ||
473 | + | ||
474 | +[2021-08-18 17:53:11] [INFO] : ====================================================================================== | ||
475 | +[2021-08-18 17:53:11] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/doInvalid.action | ||
476 | +protocolId=&pwd=111111&clientRedirectTag=&viewType=invalid&optType=0&optUrl=&correctInfo=1&weightType=1&id=4559&goodsId=4573&number=202108180900166&modified=2021-08-18%2017%3A53%3A09&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=800&customerId=0&fundAccount=&accountId=&ic=&customerName=&customerPhone=&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA55680&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&dep=58®ionId=&productName=%E8%94%AC%E8%8F%9C&productId=1&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=70&chargeTotalAmount=800&chargeTotalAmountYuan=8&freezeMoneySymbol=13&comparisonFreezeAmount=13&created=2021-08-18%2017%3A53%3A09&remark=%E5%A4%87%E6%B3%A8&goodsTagIds=663&shareRatio=0&handlingTeam=&steveTeamId=&handlingRatio=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&marketFlag=sy&totalMoney=800&receivable=1300&collectionPrice=0&discountAmount=500&handReceivableAmount=0&itemReceivableAmount=1300&receivableAmount=1300&categoryName=%E8%94%AC%E8%8F%9C&categoryId=1&driverTel=&grossWeightDate=2021-08-18%2017%3A53%3A09&tareWeightDate=2021-08-18%2017%3A53%3A09&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=103&103=10.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%3A1000%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 | ||
477 | +{} | ||
478 | + | ||
479 | +[2021-08-18 17:53:12] [INFO] : ====================================================================================== | ||
480 | +[2021-08-18 17:53:12] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType | ||
481 | +{"businessCode": "jmsf"} | ||
482 | +{} | ||
483 | + | ||
484 | +[2021-08-18 17:53:12] [INFO] : ====================================================================================== | ||
485 | +[2021-08-18 17:53:12] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree | ||
486 | +{"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"} | ||
487 | +{} | ||
488 | + | ||
489 | +[2021-08-18 17:53:13] [INFO] : ====================================================================================== | ||
490 | +[2021-08-18 17:53:13] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api | ||
491 | +{"firmCode": "sy", "departmentId": 58, "keyword": ""} | ||
492 | +{} | ||
493 | + | ||
494 | +[2021-08-18 17:53:13] [INFO] : ====================================================================================== | ||
495 | +[2021-08-18 17:53:13] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/tradeType/query | ||
496 | +{"pageNum": 100, "pageSize": 100, "marketId": 9} | ||
497 | +{} | ||
498 | + | ||
499 | +[2021-08-18 17:53:13] [INFO] : ====================================================================================== | ||
500 | +[2021-08-18 17:53:13] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | ||
501 | +None | ||
502 | +{'params': {'pid': 'goods_tag'}} | ||
503 | + | ||
504 | +[2021-08-18 17:53:13] [INFO] : ====================================================================================== | ||
505 | +[2021-08-18 17:53:13] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/address | ||
506 | +{"province": "C", "city": null, "area": null} | ||
507 | +{} | ||
508 | + | ||
509 | +[2021-08-18 17:53:14] [INFO] : ====================================================================================== | ||
510 | +[2021-08-18 17:53:14] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep | ||
511 | +None | ||
512 | +{'params': {'keyword': ''}} | ||
513 | + | ||
514 | +[2021-08-18 17:53:14] [INFO] : ====================================================================================== | ||
515 | +[2021-08-18 17:53:14] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | ||
516 | +None | ||
517 | +{'params': {'pid': 'prove_type'}} | ||
518 | + | ||
519 | +[2021-08-18 17:53:14] [INFO] : ====================================================================================== | ||
520 | +[2021-08-18 17:53:14] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action | ||
521 | +None | ||
522 | +{} | ||
523 | + | ||
524 | +[2021-08-18 17:53:15] [INFO] : ====================================================================================== | ||
525 | +[2021-08-18 17:53:15] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave | ||
526 | +{"carTypeCode": "003", "carTypeId": 53, "carTypeName": "\u677f\u8f66", "carTypeWeight": 333, "plate": "\u5dddA50225", "inGreeterId": 223, "inGreeterName": "\u6d4b\u8bd5\u6c88\u9633", "productId": 2182, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 665, "proveTypeName": "\u98df\u54c1\u5b89\u5168", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 432, "grossWeightDate": "2021-08-18 17:53:15", "newWeight": 99, "tareWeight": 333, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA50225", "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} | ||
527 | +{} | ||
528 | + | ||
529 | +[2021-08-18 17:53:15] [INFO] : ====================================================================================== | ||
530 | +[2021-08-18 17:53:15] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action | ||
531 | +{'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': '202108180900167'} | ||
532 | +{} | ||
533 | + | ||
534 | +[2021-08-18 17:53:15] [INFO] : ====================================================================================== | ||
535 | +[2021-08-18 17:53:15] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/4560.action | ||
536 | +None | ||
537 | +{} | ||
538 | + | ||
539 | +[2021-08-18 17:53:17] [INFO] : ====================================================================================== | ||
540 | +[2021-08-18 17:53:17] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=888810032426 | ||
541 | +None | ||
542 | +{} | ||
543 | + | ||
544 | +[2021-08-18 17:53:17] [INFO] : ====================================================================================== | ||
545 | +[2021-08-18 17:53:17] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州 | ||
546 | +None | ||
547 | +{} | ||
548 | + | ||
549 | +[2021-08-18 17:53:17] [INFO] : ====================================================================================== | ||
550 | +[2021-08-18 17:53:17] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action | ||
551 | +{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 4560, 'goodsId': '4574', 'number': '202108180900167', 'modified': '2021-08-18 17:53:17', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A50225', '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-18 17:53:14', 'remark': 'false', 'goodsTagIds': '663', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-18 17:53:14', 'tareWeightDate': '2021-08-18 17:53:14', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '测试沈阳', 'inGreeterId': '223', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''} | ||
552 | +{} | ||
553 | + | ||
554 | +[2021-08-18 17:53:18] [INFO] : ====================================================================================== | ||
555 | +[2021-08-18 17:53:18] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doPay.action | ||
556 | +protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=1&id=4560&goodsId=4574&number=202108180900167&modified=2021-08-18%2017%3A53%3A14&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=800&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%9DA50225&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=800&chargeTotalAmountYuan=8&freezeMoneySymbol=13&comparisonFreezeAmount=13&created=2021-08-18%2017%3A53%3A14&remark=&goodsTagIds=663&marketFlag=sy&totalMoney=800&receivable=1300&collectionPrice=0&discountAmount=500&handReceivableAmount=0&itemReceivableAmount=1300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=1300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=53&driverTel=&grossWeightDate=2021-08-18%2017%3A53%3A14&tareWeightDate=2021-08-18%2017%3A53%3A14&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=10.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%3A1000%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 | ||
557 | +{} | ||
558 | + | ||
559 | +[2021-08-18 17:53:22] [INFO] : ====================================================================================== | ||
560 | +[2021-08-18 17:53:22] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action | ||
561 | +{'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': '202108180900167'} | ||
562 | +{} | ||
563 | + | ||
564 | +[2021-08-18 17:53:23] [INFO] : ====================================================================================== | ||
565 | +[2021-08-18 17:53:23] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/refund/4560.action | ||
566 | +None | ||
567 | +{} | ||
568 | + | ||
569 | +[2021-08-18 17:53:24] [INFO] : ====================================================================================== | ||
570 | +[2021-08-18 17:53:24] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州 | ||
571 | +None | ||
572 | +{} | ||
573 | + | ||
574 | +[2021-08-18 17:53:24] [INFO] : ====================================================================================== | ||
575 | +[2021-08-18 17:53:24] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action | ||
576 | +{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'refund', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 4560, 'goodsId': '4574', 'number': '202108180900167', 'modified': '2021-08-18 17:53:18', 'status': '4', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A50225', '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': '', 'regionName': '', 'regionId': '0', 'productName': '雪莲果', 'productId': '2182', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '70', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-18 17:53:14', 'remark': 'false', 'goodsTagIds': '663', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-18 17:53:14', 'tareWeightDate': '2021-08-18 17:53:14', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '测试沈阳', 'inGreeterId': '223', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''} | ||
577 | +{} | ||
578 | + | ||
579 | +[2021-08-18 17:53:24] [INFO] : ====================================================================================== | ||
580 | +[2021-08-18 17:53:24] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doUndo.action | ||
581 | +protocolId=&pwd=&clientRedirectTag=&viewType=refund&optType=0&optUrl=&correctInfo=1&weightType=1&id=4560&goodsId=4574&number=202108180900167&modified=2021-08-18%2017%3A53%3A18&status=4&source=1&updateFeeItems=&correctDiscount=1&totalAmount=800&customerId=384&fundAccount=107575&accountId=107575&ic=888810032426&customerName=%2A%2A%2A%2A%2A%2A&customerPhone=19010001000&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA50225&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&dep=58®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=70&chargeTotalAmount=800&chargeTotalAmountYuan=8&freezeMoneySymbol=13&comparisonFreezeAmount=13&created=2021-08-18%2017%3A53%3A14&remark=&goodsTagIds=663&shareRatio=0&handlingTeam=&steveTeamId=&handlingRatio=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&marketFlag=sy&totalMoney=800&receivable=1300&collectionPrice=0&discountAmount=500&handReceivableAmount=0&itemReceivableAmount=1300&receivableAmount=1300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=1616&driverTel=&grossWeightDate=2021-08-18%2017%3A53%3A14&tareWeightDate=2021-08-18%2017%3A53%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&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=103&103=10.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%3A1000%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%3A1%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 | ||
582 | +{} | ||
583 | + | ||
584 | +[2021-08-18 17:53:27] [INFO] : ====================================================================================== | ||
585 | +[2021-08-18 17:53:27] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType | ||
586 | +{"businessCode": "jmsf"} | ||
587 | +{} | ||
588 | + | ||
589 | +[2021-08-18 17:53:27] [INFO] : ====================================================================================== | ||
590 | +[2021-08-18 17:53:27] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree | ||
591 | +{"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"} | ||
592 | +{} | ||
593 | + | ||
594 | +[2021-08-18 17:53:27] [INFO] : ====================================================================================== | ||
595 | +[2021-08-18 17:53:27] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api | ||
596 | +{"firmCode": "sy", "departmentId": 58, "keyword": ""} | ||
597 | +{} | ||
598 | + | ||
599 | +[2021-08-18 17:53:27] [INFO] : ====================================================================================== | ||
600 | +[2021-08-18 17:53:27] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/tradeType/query | ||
601 | +{"pageNum": 100, "pageSize": 100, "marketId": 9} | ||
602 | +{} | ||
603 | + | ||
604 | +[2021-08-18 17:53:27] [INFO] : ====================================================================================== | ||
605 | +[2021-08-18 17:53:27] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | ||
606 | +None | ||
607 | +{'params': {'pid': 'goods_tag'}} | ||
608 | + | ||
609 | +[2021-08-18 17:53:28] [INFO] : ====================================================================================== | ||
610 | +[2021-08-18 17:53:28] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/address | ||
611 | +{"province": "C", "city": null, "area": null} | ||
612 | +{} | ||
613 | + | ||
614 | +[2021-08-18 17:53:28] [INFO] : ====================================================================================== | ||
615 | +[2021-08-18 17:53:28] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep | ||
616 | +None | ||
617 | +{'params': {'keyword': ''}} | ||
618 | + | ||
619 | +[2021-08-18 17:53:28] [INFO] : ====================================================================================== | ||
620 | +[2021-08-18 17:53:28] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | ||
621 | +None | ||
622 | +{'params': {'pid': 'prove_type'}} | ||
623 | + | ||
624 | +[2021-08-18 17:53:29] [INFO] : ====================================================================================== | ||
625 | +[2021-08-18 17:53:29] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action | ||
626 | +None | ||
627 | +{} | ||
628 | + | ||
629 | +[2021-08-18 17:53:29] [INFO] : ====================================================================================== | ||
630 | +[2021-08-18 17:53:29] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave | ||
631 | +{"carTypeCode": "003", "carTypeId": 53, "carTypeName": "\u677f\u8f66", "carTypeWeight": 333, "plate": "\u5dddA31251", "inGreeterId": 223, "inGreeterName": "\u6d4b\u8bd5\u6c88\u9633", "productId": 2182, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 665, "proveTypeName": "\u98df\u54c1\u5b89\u5168", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 432, "grossWeightDate": "2021-08-18 17:53:29", "newWeight": 99, "tareWeight": 333, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA31251", "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} | ||
632 | +{} | ||
633 | + | ||
634 | +[2021-08-18 17:53:30] [INFO] : ====================================================================================== | ||
635 | +[2021-08-18 17:53:30] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action | ||
636 | +{'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': '202108180900169'} | ||
637 | +{} | ||
638 | + | ||
639 | +[2021-08-18 17:53:30] [INFO] : ====================================================================================== | ||
640 | +[2021-08-18 17:53:30] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/4562.action | ||
641 | +None | ||
642 | +{} | ||
643 | + | ||
644 | +[2021-08-18 17:53:31] [INFO] : ====================================================================================== | ||
645 | +[2021-08-18 17:53:31] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=888810033081 | ||
646 | +None | ||
647 | +{} | ||
648 | + | ||
649 | +[2021-08-18 17:53:32] [INFO] : ====================================================================================== | ||
650 | +[2021-08-18 17:53:32] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州 | ||
651 | +None | ||
652 | +{} | ||
653 | + | ||
654 | +[2021-08-18 17:53:32] [INFO] : ====================================================================================== | ||
655 | +[2021-08-18 17:53:32] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action | ||
656 | +{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 4562, 'goodsId': '4576', 'number': '202108180900169', 'modified': '2021-08-18 17:53:32', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A31251', '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-18 17:53:29', 'remark': 'false', 'goodsTagIds': '663', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-18 17:53:29', 'tareWeightDate': '2021-08-18 17:53:29', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '测试沈阳', 'inGreeterId': '223', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''} | ||
657 | +{} | ||
658 | + | ||
659 | +[2021-08-18 17:53:32] [INFO] : ====================================================================================== | ||
660 | +[2021-08-18 17:53:32] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doFreeze.action | ||
661 | +protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=1&id=4562&goodsId=4576&number=202108180900169&modified=2021-08-18%2017%3A53%3A29&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=800&customerId=384&fundAccount=103101&ic=888810033081&customerName=%2A%2A%2A%2A%2A%2A&customerPhone=19010001000&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA31251&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=800&chargeTotalAmountYuan=8&freezeMoneySymbol=13&comparisonFreezeAmount=13&created=2021-08-18%2017%3A53%3A29&remark=&goodsTagIds=663&marketFlag=sy&totalMoney=800&receivable=1300&collectionPrice=0&discountAmount=500&handReceivableAmount=0&itemReceivableAmount=1300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=1300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=1616&driverTel=&grossWeightDate=2021-08-18%2017%3A53%3A29&tareWeightDate=2021-08-18%2017%3A53%3A29&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=&inGreeterId=0&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=103101&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=103&103=10.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%3A1000%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 | ||
662 | +{} | ||
663 | + | ||
664 | +[2021-08-18 17:53:36] [INFO] : ====================================================================================== | ||
665 | +[2021-08-18 17:53:36] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action | ||
666 | +{'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': '202108180900169'} | ||
667 | +{} | ||
668 | + | ||
669 | +[2021-08-18 17:53:36] [INFO] : ====================================================================================== | ||
670 | +[2021-08-18 17:53:36] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/unfreeze/4562.action | ||
671 | +None | ||
672 | +{} | ||
673 | + | ||
674 | +[2021-08-18 17:53:38] [INFO] : ====================================================================================== | ||
675 | +[2021-08-18 17:53:38] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州 | ||
676 | +None | ||
677 | +{} | ||
678 | + | ||
679 | +[2021-08-18 17:53:38] [INFO] : ====================================================================================== | ||
680 | +[2021-08-18 17:53:38] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action | ||
681 | +{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'unfreeze', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 4562, 'goodsId': '4576', 'number': '202108180900169', 'modified': '2021-08-18 17:53:38', 'status': '3', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A31251', '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': '水果部', 'regionName': '', 'regionId': '0', 'productName': '雪莲果', 'productId': '2182', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '70', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-18 17:53:29', 'remark': 'false', 'goodsTagIds': '663', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-18 17:53:29', 'tareWeightDate': '2021-08-18 17:53:29', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '测试沈阳', 'inGreeterId': '223', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': ''} | ||
682 | +{} | ||
683 | + | ||
684 | +[2021-08-18 17:53:38] [INFO] : ====================================================================================== | ||
685 | +[2021-08-18 17:53:38] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doUnfreeze.action | ||
686 | +protocolId=&pwd=111111&clientRedirectTag=&viewType=unfreeze&optType=0&optUrl=&correctInfo=1&weightType=1&id=4562&goodsId=4576&number=202108180900169&modified=2021-08-18%2017%3A53%3A29&status=3&source=1&updateFeeItems=&correctDiscount=1&totalAmount=800&customerId=384&fundAccount=103101&accountId=103101&ic=888810033081&customerName=%2A%2A%2A%2A%2A%2A&customerPhone=19010001000&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA31251&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&dep=58®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=70&chargeTotalAmount=800&chargeTotalAmountYuan=8&freezeMoneySymbol=13&comparisonFreezeAmount=13&created=2021-08-18%2017%3A53%3A29&remark=%E5%A4%87%E6%B3%A8&goodsTagIds=663&shareRatio=0&handlingTeam=&steveTeamId=&handlingRatio=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&marketFlag=sy&totalMoney=800&receivable=1300&collectionPrice=0&discountAmount=500&handReceivableAmount=0&itemReceivableAmount=1300&receivableAmount=1300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=1616&driverTel=&grossWeightDate=2021-08-18%2017%3A53%3A29&tareWeightDate=2021-08-18%2017%3A53%3A29&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=103&103=10.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%3A1000%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%3A1%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 | ||
687 | +{} | ||
688 | + | ||
689 | +[2021-08-18 17:53:39] [INFO] : ====================================================================================== | ||
690 | +[2021-08-18 17:53:39] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType | ||
691 | +{"businessCode": "jmsf"} | ||
692 | +{} | ||
693 | + | ||
694 | +[2021-08-18 17:53:39] [INFO] : ====================================================================================== | ||
695 | +[2021-08-18 17:53:39] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree | ||
696 | +{"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"} | ||
697 | +{} | ||
698 | + | ||
699 | +[2021-08-18 17:53:39] [INFO] : ====================================================================================== | ||
700 | +[2021-08-18 17:53:39] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api | ||
701 | +{"firmCode": "sy", "departmentId": 58, "keyword": ""} | ||
702 | +{} | ||
703 | + | ||
704 | +[2021-08-18 17:53:40] [INFO] : ====================================================================================== | ||
705 | +[2021-08-18 17:53:40] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/tradeType/query | ||
706 | +{"pageNum": 100, "pageSize": 100, "marketId": 9} | ||
707 | +{} | ||
708 | + | ||
709 | +[2021-08-18 17:53:40] [INFO] : ====================================================================================== | ||
710 | +[2021-08-18 17:53:40] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | ||
711 | +None | ||
712 | +{'params': {'pid': 'goods_tag'}} | ||
713 | + | ||
714 | +[2021-08-18 17:53:40] [INFO] : ====================================================================================== | ||
715 | +[2021-08-18 17:53:40] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/address | ||
716 | +{"province": "C", "city": null, "area": null} | ||
717 | +{} | ||
718 | + | ||
719 | +[2021-08-18 17:53:40] [INFO] : ====================================================================================== | ||
720 | +[2021-08-18 17:53:40] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep | ||
721 | +None | ||
722 | +{'params': {'keyword': ''}} | ||
723 | + | ||
724 | +[2021-08-18 17:53:41] [INFO] : ====================================================================================== | ||
725 | +[2021-08-18 17:53:41] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | ||
726 | +None | ||
727 | +{'params': {'pid': 'prove_type'}} | ||
728 | + | ||
729 | +[2021-08-18 17:53:41] [INFO] : ====================================================================================== | ||
730 | +[2021-08-18 17:53:41] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action | ||
731 | +None | ||
732 | +{} | ||
733 | + | ||
734 | +[2021-08-18 17:53:41] [INFO] : ====================================================================================== | ||
735 | +[2021-08-18 17:53:41] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave | ||
736 | +{"carTypeCode": "003", "carTypeId": 53, "carTypeName": "\u677f\u8f66", "carTypeWeight": 333, "plate": "\u5dddA85926", "inGreeterId": 223, "inGreeterName": "\u6d4b\u8bd5\u6c88\u9633", "productId": 2182, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 665, "proveTypeName": "\u98df\u54c1\u5b89\u5168", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 432, "grossWeightDate": "2021-08-18 17:53:41", "newWeight": 99, "tareWeight": 333, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA85926", "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} | ||
737 | +{} | ||
738 | + | ||
739 | +[2021-08-18 17:53:42] [INFO] : ====================================================================================== | ||
740 | +[2021-08-18 17:53:42] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action | ||
741 | +{'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': '202108180900170'} | ||
742 | +{} | ||
743 | + | ||
744 | +[2021-08-18 17:53:42] [INFO] : ====================================================================================== | ||
745 | +[2021-08-18 17:53:42] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/4563.action | ||
746 | +None | ||
747 | +{} | ||
748 | + | ||
749 | +[2021-08-18 17:53:44] [INFO] : ====================================================================================== | ||
750 | +[2021-08-18 17:53:44] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=888810033081 | ||
751 | +None | ||
752 | +{} | ||
753 | + | ||
754 | +[2021-08-18 17:53:44] [INFO] : ====================================================================================== | ||
755 | +[2021-08-18 17:53:44] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州 | ||
756 | +None | ||
757 | +{} | ||
758 | + | ||
759 | +[2021-08-18 17:53:44] [INFO] : ====================================================================================== | ||
760 | +[2021-08-18 17:53:44] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action | ||
761 | +{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 4563, 'goodsId': '4577', 'number': '202108180900170', 'modified': '2021-08-18 17:53:44', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A85926', '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-18 17:53:41', 'remark': 'false', 'goodsTagIds': '663', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-18 17:53:41', 'tareWeightDate': '2021-08-18 17:53:41', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '测试沈阳', 'inGreeterId': '223', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''} | ||
762 | +{} | ||
763 | + | ||
764 | +[2021-08-18 17:53:45] [INFO] : ====================================================================================== | ||
765 | +[2021-08-18 17:53:45] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doFreeze.action | ||
766 | +protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=1&id=4563&goodsId=4577&number=202108180900170&modified=2021-08-18%2017%3A53%3A41&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=800&customerId=384&fundAccount=103101&ic=888810033081&customerName=%2A%2A%2A%2A%2A%2A&customerPhone=19010001000&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA85926&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=800&chargeTotalAmountYuan=8&freezeMoneySymbol=13&comparisonFreezeAmount=13&created=2021-08-18%2017%3A53%3A41&remark=&goodsTagIds=663&marketFlag=sy&totalMoney=800&receivable=1300&collectionPrice=0&discountAmount=500&handReceivableAmount=0&itemReceivableAmount=1300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=1300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=1616&driverTel=&grossWeightDate=2021-08-18%2017%3A53%3A41&tareWeightDate=2021-08-18%2017%3A53%3A41&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=&inGreeterId=0&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=103101&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=103&103=10.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%3A1000%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 | ||
767 | +{} | ||
768 | + | ||
769 | +[2021-08-18 17:53:48] [INFO] : ====================================================================================== | ||
770 | +[2021-08-18 17:53:48] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listBackSkinTrucks | ||
771 | +{"plate": "", "number": "202108180900170", "customerName": ""} | ||
772 | +{} | ||
773 | + | ||
774 | +[2021-08-18 17:53:48] [INFO] : ====================================================================================== | ||
775 | +[2021-08-18 17:53:48] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api | ||
776 | +{"firmCode": "sy", "departmentId": 58, "keyword": ""} | ||
777 | +{} | ||
778 | + | ||
779 | +[2021-08-18 17:53:48] [INFO] : ====================================================================================== | ||
780 | +[2021-08-18 17:53:48] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/backSkinWeighSave | ||
781 | +{"hasStoreTruck": 1, "number": "202108180900170", "outGreeterId": 223, "outGreeterName": "\u6d4b\u8bd5\u6c88\u9633", "plate": "\u5dddA85926", "rail": 1, "tareWeight": 341, "tareWeightDate": "2021-08-18 17:53:48", "weighImgs": [], "weighId": 0, "remark": "123", "carTypeWeight": 333, "trailerNumber": "\u5dddA85926", "pathAddress": "A4-BB-6D-0A-F4-13", "bskinWithGoods": -1, "ic": "", "customerName": null, "customerId": 0, "carTypeCode": "003", "carTypeId": 53, "carTypeName": "\u677f\u8f66"} | ||
782 | +{} | ||
783 | + | ||
784 | +[2021-08-18 17:53:49] [INFO] : ====================================================================================== | ||
785 | +[2021-08-18 17:53:49] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action | ||
786 | +{'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': '202108180900170'} | ||
787 | +{} | ||
788 | + | ||
789 | +[2021-08-18 17:53:49] [INFO] : ====================================================================================== | ||
790 | +[2021-08-18 17:53:49] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType | ||
791 | +{"businessCode": "jmsf"} | ||
792 | +{} | ||
793 | + | ||
794 | +[2021-08-18 17:53:49] [INFO] : ====================================================================================== | ||
795 | +[2021-08-18 17:53:49] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree | ||
796 | +{"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"} | ||
797 | +{} | ||
798 | + | ||
799 | +[2021-08-18 17:53:49] [INFO] : ====================================================================================== | ||
800 | +[2021-08-18 17:53:49] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api | ||
801 | +{"firmCode": "sy", "departmentId": 58, "keyword": ""} | ||
802 | +{} | ||
803 | + | ||
804 | +[2021-08-18 17:53:49] [INFO] : ====================================================================================== | ||
805 | +[2021-08-18 17:53:49] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/tradeType/query | ||
806 | +{"pageNum": 100, "pageSize": 100, "marketId": 9} | ||
807 | +{} | ||
808 | + | ||
809 | +[2021-08-18 17:53:50] [INFO] : ====================================================================================== | ||
810 | +[2021-08-18 17:53:50] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | ||
811 | +None | ||
812 | +{'params': {'pid': 'goods_tag'}} | ||
813 | + | ||
814 | +[2021-08-18 17:53:50] [INFO] : ====================================================================================== | ||
815 | +[2021-08-18 17:53:50] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/address | ||
816 | +{"province": "C", "city": null, "area": null} | ||
817 | +{} | ||
818 | + | ||
819 | +[2021-08-18 17:53:50] [INFO] : ====================================================================================== | ||
820 | +[2021-08-18 17:53:50] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep | ||
821 | +None | ||
822 | +{'params': {'keyword': ''}} | ||
823 | + | ||
824 | +[2021-08-18 17:53:51] [INFO] : ====================================================================================== | ||
825 | +[2021-08-18 17:53:51] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | ||
826 | +None | ||
827 | +{'params': {'pid': 'prove_type'}} | ||
828 | + | ||
829 | +[2021-08-18 17:53:51] [INFO] : ====================================================================================== | ||
830 | +[2021-08-18 17:53:51] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action | ||
831 | +None | ||
832 | +{} | ||
833 | + | ||
834 | +[2021-08-18 17:53:51] [INFO] : ====================================================================================== | ||
835 | +[2021-08-18 17:53:51] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave | ||
836 | +{"carTypeCode": "003", "carTypeId": 53, "carTypeName": "\u677f\u8f66", "carTypeWeight": 333, "plate": "\u5dddA35550", "inGreeterId": 223, "inGreeterName": "\u6d4b\u8bd5\u6c88\u9633", "productId": 2182, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 665, "proveTypeName": "\u98df\u54c1\u5b89\u5168", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 432, "grossWeightDate": "2021-08-18 17:53:51", "newWeight": 99, "tareWeight": 333, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA35550", "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} | ||
837 | +{} | ||
838 | + | ||
839 | +[2021-08-18 17:53:52] [INFO] : ====================================================================================== | ||
840 | +[2021-08-18 17:53:52] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action | ||
841 | +{'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': '202108180900171'} | ||
842 | +{} | ||
843 | + | ||
844 | +[2021-08-18 17:53:52] [INFO] : ====================================================================================== | ||
845 | +[2021-08-18 17:53:52] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/update/4564.action | ||
846 | +None | ||
847 | +{} | ||
848 | + | ||
849 | +[2021-08-18 17:53:54] [INFO] : ====================================================================================== | ||
850 | +[2021-08-18 17:53:54] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州 | ||
851 | +None | ||
852 | +{} | ||
853 | + | ||
854 | +[2021-08-18 17:53:54] [INFO] : ====================================================================================== | ||
855 | +[2021-08-18 17:53:54] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action | ||
856 | +{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'update', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 4564, 'goodsId': '4578', 'number': '202108180900171', 'modified': '2021-08-18 17:53:54', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A35550', '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': '水果部', 'regionName': '', 'regionId': '0', 'productName': '雪莲果', 'productId': '2182', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '70', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-18 17:53:51', 'remark': 'false', 'goodsTagIds': '663', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '1616', 'driverTel': '', 'grossWeightDate': '2021-08-18 17:53:51', 'tareWeightDate': '2021-08-18 17:53:51', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '测试沈阳', 'inGreeterId': '223', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': ''} | ||
857 | +{} | ||
858 | + | ||
859 | +[2021-08-18 17:53:54] [INFO] : ====================================================================================== | ||
860 | +[2021-08-18 17:53:54] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/doUpdate.action | ||
861 | +protocolId=&pwd=111111&clientRedirectTag=&viewType=update&optType=0&optUrl=&correctInfo=1&weightType=1&id=4564&goodsId=4578&number=202108180900171&modified=2021-08-18%2017%3A53%3A51&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=800&customerId=0&fundAccount=&accountId=&ic=&customerName=&customerPhone=&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA35550&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&dep=58®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=70&chargeTotalAmount=800&chargeTotalAmountYuan=8&freezeMoneySymbol=13&comparisonFreezeAmount=13&created=2021-08-18%2017%3A53%3A51&remark=%E5%A4%87%E6%B3%A8&goodsTagIds=663&shareRatio=0&handlingTeam=&steveTeamId=&handlingRatio=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&marketFlag=sy&totalMoney=800&receivable=1300&collectionPrice=0&discountAmount=500&handReceivableAmount=0&itemReceivableAmount=1300&receivableAmount=1300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=1616&driverTel=&grossWeightDate=2021-08-18%2017%3A53%3A51&tareWeightDate=2021-08-18%2017%3A53%3A51&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=103&103=10.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%3A1000%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 | ||
862 | +{} | ||
863 | + | ||
864 | +[2021-08-18 17:53:55] [INFO] : ====================================================================================== | ||
865 | +[2021-08-18 17:53:55] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType | ||
866 | +{"businessCode": "jmsf"} | ||
867 | +{} | ||
868 | + | ||
869 | +[2021-08-18 17:53:55] [INFO] : ====================================================================================== | ||
870 | +[2021-08-18 17:53:55] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree | ||
871 | +{"marketId": 9, "state": 1, "keyword": "\u852c\u83dc"} | ||
872 | +{} | ||
873 | + | ||
874 | +[2021-08-18 17:53:55] [INFO] : ====================================================================================== | ||
875 | +[2021-08-18 17:53:55] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api | ||
876 | +{"firmCode": "sy", "departmentId": 58, "keyword": ""} | ||
877 | +{} | ||
878 | + | ||
879 | +[2021-08-18 17:53:56] [INFO] : ====================================================================================== | ||
880 | +[2021-08-18 17:53:56] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/tradeType/query | ||
881 | +{"pageNum": 100, "pageSize": 100, "marketId": 9} | ||
882 | +{} | ||
883 | + | ||
884 | +[2021-08-18 17:53:56] [INFO] : ====================================================================================== | ||
885 | +[2021-08-18 17:53:56] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | ||
886 | +None | ||
887 | +{'params': {'pid': 'goods_tag'}} | ||
888 | + | ||
889 | +[2021-08-18 17:53:56] [INFO] : ====================================================================================== | ||
890 | +[2021-08-18 17:53:56] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/address | ||
891 | +{"province": "C", "city": null, "area": null} | ||
892 | +{} | ||
893 | + | ||
894 | +[2021-08-18 17:53:56] [INFO] : ====================================================================================== | ||
895 | +[2021-08-18 17:53:56] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep | ||
896 | +None | ||
897 | +{'params': {'keyword': ''}} | ||
898 | + | ||
899 | +[2021-08-18 17:53:57] [INFO] : ====================================================================================== | ||
900 | +[2021-08-18 17:53:57] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | ||
901 | +None | ||
902 | +{'params': {'pid': 'prove_type'}} | ||
903 | + | ||
904 | +[2021-08-18 17:53:57] [INFO] : ====================================================================================== | ||
905 | +[2021-08-18 17:53:57] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action | ||
906 | +None | ||
907 | +{} | ||
908 | + | ||
909 | +[2021-08-18 17:53:57] [INFO] : ====================================================================================== | ||
910 | +[2021-08-18 17:53:57] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave | ||
911 | +{"carTypeCode": "003", "carTypeId": 53, "carTypeName": "\u677f\u8f66", "carTypeWeight": 333, "plate": "\u5dddA12345", "inGreeterId": 223, "inGreeterName": "\u6d4b\u8bd5\u6c88\u9633", "productId": 1, "productName": "\u852c\u83dc", "proveTypeCode": 665, "proveTypeName": "\u98df\u54c1\u5b89\u5168", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 432, "grossWeightDate": "2021-08-18 17:53:57", "newWeight": 99, "tareWeight": 333, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA12345", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 58, "depName": "\u6c34\u679c\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": 663} | ||
912 | +{} | ||
913 | + | ||
914 | +[2021-08-18 17:53:58] [INFO] : ====================================================================================== | ||
915 | +[2021-08-18 17:53:58] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/view/4565.action | ||
916 | +None | ||
917 | +{} | ||
918 | + |
testcase/test_ZC/demo.py
@@ -39,16 +39,25 @@ print(bb) | @@ -39,16 +39,25 @@ print(bb) | ||
39 | from bs4 import BeautifulSoup | 39 | from bs4 import BeautifulSoup |
40 | import random | 40 | import random |
41 | 41 | ||
42 | -with open("demo_a.html",encoding="utf-8") as com: | ||
43 | - data = com.read() | ||
44 | - | ||
45 | -orderDetailsSoup = BeautifulSoup(data, "html.parser") | ||
46 | -selectList = orderDetailsSoup.findAll("select") | ||
47 | -print(selectList) | ||
48 | -selectDict = {} | ||
49 | -for i in selectList: | ||
50 | - for a in i.findAll("option"): | ||
51 | - if a.get("selected") == "selected": | ||
52 | - selectDict[i.get("name")]=[a.get("value"),a.text] | ||
53 | - # print(i.text) | ||
54 | -print(selectDict) | ||
55 | \ No newline at end of file | 42 | \ No newline at end of file |
43 | +# with open("demo_a.html",encoding="utf-8") as com: | ||
44 | +# data = com.read() | ||
45 | + | ||
46 | +# orderDetailsSoup = BeautifulSoup(data, "html.parser") | ||
47 | +# selectList = orderDetailsSoup.findAll("select") | ||
48 | +# print(selectList) | ||
49 | +# selectDict = {} | ||
50 | +# for i in selectList: | ||
51 | +# for a in i.findAll("option"): | ||
52 | +# if a.get("selected") == "selected": | ||
53 | +# selectDict[i.get("name")]=[a.get("value"),a.text] | ||
54 | +# # print(i.text) | ||
55 | +# print(selectDict) | ||
56 | + | ||
57 | +# def do_ass(nA,tj,nB,msg): | ||
58 | +# res = | ||
59 | +# str = f'assert {res},"123123""' | ||
60 | +# exec(str) | ||
61 | + | ||
62 | +# do_ass([1],"==",'[1]',"测试失败") | ||
63 | +assert True | ||
64 | + |
testcase/test_listPage/test_listPageOperation.py
@@ -56,7 +56,7 @@ class test_listPage(unittest.TestCase): | @@ -56,7 +56,7 @@ class test_listPage(unittest.TestCase): | ||
56 | cre_res = zcA.create_jmsf(host=self.gatewayHost,plate=plate,keyword=goods) | 56 | cre_res = zcA.create_jmsf(host=self.gatewayHost,plate=plate,keyword=goods) |
57 | print(cre_res.json()) | 57 | print(cre_res.json()) |
58 | number = cre_res.json()["data"]["number"] | 58 | number = cre_res.json()["data"]["number"] |
59 | - res_pay = eFBL.do_payOrder(host=self.jmsfHost,attrValue=number) | 59 | + res_pay = eFBL.do_payOrder(host=self.jmsfHost,attrValue=number,ic=self.ic) |
60 | assert res_pay.json()["code"]=="200","缴费失败" | 60 | assert res_pay.json()["code"]=="200","缴费失败" |
61 | assert res_pay.json()["message"] == "OK", "缴费失败" | 61 | assert res_pay.json()["message"] == "OK", "缴费失败" |
62 | 62 | ||
@@ -78,7 +78,7 @@ class test_listPage(unittest.TestCase): | @@ -78,7 +78,7 @@ class test_listPage(unittest.TestCase): | ||
78 | cre_res = sjApi.create_sj(host=self.gatewayHost,plate=plate,keyword=goods) | 78 | cre_res = sjApi.create_sj(host=self.gatewayHost,plate=plate,keyword=goods) |
79 | print(cre_res.json()) | 79 | print(cre_res.json()) |
80 | number = cre_res.json()["data"]["number"] | 80 | number = cre_res.json()["data"]["number"] |
81 | - res_pay = eFBL.do_payOrder(host=self.jmsfHost,attrValue=number) | 81 | + res_pay = eFBL.do_payOrder(host=self.jmsfHost,attrValue=number,ic=self.ic) |
82 | assert res_pay.json()["code"]=="200","缴费失败" | 82 | assert res_pay.json()["code"]=="200","缴费失败" |
83 | assert res_pay.json()["message"] == "OK", "缴费失败" | 83 | assert res_pay.json()["message"] == "OK", "缴费失败" |
84 | 84 | ||
@@ -89,7 +89,7 @@ class test_listPage(unittest.TestCase): | @@ -89,7 +89,7 @@ class test_listPage(unittest.TestCase): | ||
89 | cre_res = zcA.create_jmsf(host=self.gatewayHost,plate=plate,keyword=goods) | 89 | cre_res = zcA.create_jmsf(host=self.gatewayHost,plate=plate,keyword=goods) |
90 | print(cre_res.json()) | 90 | print(cre_res.json()) |
91 | number = cre_res.json()["data"]["number"] | 91 | number = cre_res.json()["data"]["number"] |
92 | - res_pay = eFBL.do_freezeOrder(host=self.jmsfHost,attrValue=number) | 92 | + res_pay = eFBL.do_freezeOrder(host=self.jmsfHost,attrValue=number,ic=self.ic) |
93 | assert res_pay.json()["code"]=="200","缴费失败" | 93 | assert res_pay.json()["code"]=="200","缴费失败" |
94 | assert res_pay.json()["message"] == "OK", "缴费失败" | 94 | assert res_pay.json()["message"] == "OK", "缴费失败" |
95 | res,tareWeight = hpApi.do_backSkinWeighSave(host=self.gatewayHost,number=number) | 95 | res,tareWeight = hpApi.do_backSkinWeighSave(host=self.gatewayHost,number=number) |
@@ -108,7 +108,7 @@ class test_listPage(unittest.TestCase): | @@ -108,7 +108,7 @@ class test_listPage(unittest.TestCase): | ||
108 | cre_res = zcA.create_jmsf(host=self.gatewayHost,plate=plate,keyword=goods) | 108 | cre_res = zcA.create_jmsf(host=self.gatewayHost,plate=plate,keyword=goods) |
109 | print(cre_res.json()) | 109 | print(cre_res.json()) |
110 | number = cre_res.json()["data"]["number"] | 110 | number = cre_res.json()["data"]["number"] |
111 | - res_pay = eFBL.do_freezeOrder(host=self.jmsfHost,attrValue=number) | 111 | + res_pay = eFBL.do_freezeOrder(host=self.jmsfHost,attrValue=number,ic=self.ic) |
112 | assert res_pay.json()["code"]=="200","冻结失败" | 112 | assert res_pay.json()["code"]=="200","冻结失败" |
113 | assert res_pay.json()["message"] == "OK", "冻结失败" | 113 | assert res_pay.json()["message"] == "OK", "冻结失败" |
114 | 114 | ||
@@ -119,7 +119,7 @@ class test_listPage(unittest.TestCase): | @@ -119,7 +119,7 @@ class test_listPage(unittest.TestCase): | ||
119 | cre_res = zcA.create_jmsf(host=self.gatewayHost,plate=plate,keyword=goods) | 119 | cre_res = zcA.create_jmsf(host=self.gatewayHost,plate=plate,keyword=goods) |
120 | print(cre_res.json()) | 120 | print(cre_res.json()) |
121 | number = cre_res.json()["data"]["number"] | 121 | number = cre_res.json()["data"]["number"] |
122 | - eFBL.do_freezeOrder(host=self.jmsfHost,attrValue=number) | 122 | + eFBL.do_freezeOrder(host=self.jmsfHost,attrValue=number,ic=self.ic) |
123 | res_unfreezeOrder = eOp.do_unfreezeOrder(host=self.jmsfHost,attrValue=number) | 123 | res_unfreezeOrder = eOp.do_unfreezeOrder(host=self.jmsfHost,attrValue=number) |
124 | assert res_unfreezeOrder.json()["code"]=="200","解冻失败" | 124 | assert res_unfreezeOrder.json()["code"]=="200","解冻失败" |
125 | assert res_unfreezeOrder.json()["message"] == "OK", "解冻失败" | 125 | assert res_unfreezeOrder.json()["message"] == "OK", "解冻失败" |