sjApi.py
10.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
# -*- coding: utf-8 -*-
# @Time : 2021/8/11 15:59
# @Author : Ljq
# @File : sjApi.py
# @Software: PyCharm
"""
散件
"""
import json,time,random
from commons.scripts import dealContentType as dct
from commons.MySession import my
from commons.api import zcApi
from commons.api import entranceFeeBillList as eFBL
def create_sparePartsWeighSave(host="",duplicateToken=None,**kwargs):
"""查询证明类型
:param host:
:param **kwargs:
{
"driverTel": "",
"inGreeterId": 223,
"inGreeterName": "测试沈阳",
"itemWeight": 11,
"productId": 14158,
"productName": "雪莲果",
"proveTypeCode": 665,
"proveTypeName": "食品安全",
"qty": 33,
"weighRemark": null,
"weight": 363,
"weighmanRecord": {
"grossWeight": null,
"grossWeightDate": null,
"newWeight": null,
"tareWeight": null,
"tareWeightDate": null,
"weighImgs": []
},
"productCode": null,
"plate": "ASD",
"carTypeId": 53,
"carTypeCode": "003",
"carTypeName": "板车",
"pathAddress": "A4-BB-6D-0A-F4-13",
"entryPlateInputType": 1,
"feeDepId": 0,
"feeDepName": null,
"dep": 58,
"depName": "水果部",
"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": "沈阳1号",
"goodsTagId": 663,
"originId": 500101,
"origin": "万州区",
"originCode": "023"l
}
:return:"""
url = host + "/jmsf-web/api/entrace/sparePartsWeighSave"
# data = {"driverTel":"","inGreeterId":223,"inGreeterName":"测试沈阳","itemWeight":11,"productId":14158,"productName":"雪莲果","proveTypeCode":665,"proveTypeName":"食品安全","qty":33,"weighRemark":None,"weight":363,"weighmanRecord":{"grossWeight":None,"grossWeightDate":None,"newWeight":None,"tareWeight":None,"tareWeightDate":None,"weighImgs":[]},"productCode":None,"plate":"ASD","carTypeId":53,"carTypeCode":"003","carTypeName":"板车","pathAddress":"A4-BB-6D-0A-F4-13","entryPlateInputType":1,"feeDepId":0,"feeDepName":None,"dep":58,"depName":"水果部","notice":0,"backSkinTwo":-1,"recordOriginId":0,"recordOriginName":None,"recordProductId":0,"recordProductName":None,"recordWeight":None,"codeIc":None,"codeId":0,"difference":0,"bindRecordSign":0,"recordDesc":None,"hasCodeItems":False,"type":2,"tradeTypeId":70,"tradeType":"9001","tradeTypeName":"沈阳1号","goodsTagId":663,"originId":500101,"origin":"万州区","originCode":"023"}
data = {"driverTel": "", "inGreeterId": 223, "inGreeterName": "测试沈阳", "itemWeight": 11, "productId": 14158,
"productName": "雪莲果", "proveTypeCode": 665, "proveTypeName": "食品安全", "qty": 33, "weighRemark": None,
"weight": 363,
"weighmanRecord": {"grossWeight": None, "grossWeightDate": None, "newWeight": None, "tareWeight": None,
"tareWeightDate": None, "weighImgs": []}, "productCode": None, "plate": "ASD",
"carTypeId": 53, "carTypeCode": "003", "carTypeName": "板车", "pathAddress": "A4-BB-6D-0A-F4-13",
"entryPlateInputType": 1, "feeDepId": 0, "feeDepName": None, "dep": 58, "depName": "水果部", "notice": 0,
"backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": None, "recordProductId": 0,
"recordProductName": None, "recordWeight": None, "codeIc": None, "codeId": 0, "difference": 0,
"bindRecordSign": 0, "recordDesc": None, "hasCodeItems": False, "type": 2, "tradeTypeId": 70,
"tradeType": "9001", "tradeTypeName": "沈阳1号", "goodsTagId": 663, "originId": 500101, "origin": "万州区",
"originCode": "023"}
headers = dct.jsonCode()
headers["jmsf_duplicate_commit_token"] = duplicateToken
data = dict(data, **kwargs)
res = my.useHeadersRequests(method="POST", url=url, data=json.dumps(data), headers=headers)
return res
def create_sj(host=None,carTypeName=None,keyword="蔬菜",userName=None,transactionName=None,
plate="川A12345",goodsTagName=None,depName=None,proveName=None,itemWeight="10",qty="22"):
"""
"""
# 获取车型
carType = zcApi.get_carType(host=host)
print(carType.text)
if carTypeName ==None:
carTypeIndex = 0
else:
carTypeIndex = carType.json()["data"].index(
[i for i in carType.json()["data"] if i["carTypeName"] == carTypeName][0])
carTypeCode = carType.json()["data"][carTypeIndex]["code"]
carTypeId = carType.json()["data"][carTypeIndex]["id"]
carTypeName = carType.json()["data"][carTypeIndex]["carTypeName"]
carTypeWeight = carType.json()["data"][carTypeIndex]["weight"]
# 获取商品
categoryByCondition = zcApi.get_listCategoryByCondition(host=host,keyword=keyword)
print(categoryByCondition.json())
cateId = categoryByCondition.json()["data"][0]["id"]
productId = categoryByCondition.json()["data"][0]["id"]
productName = categoryByCondition.json()["data"][0]["name"]
productCode = categoryByCondition.json()["data"][0]["keycode"]
print(productName)
print(productId)
# 获取接车员信息
listByExample = zcApi.get_listByExample(host=host)
print(listByExample.json())
if userName ==None:
listByExampleIndex = 0
else:
listByExampleIndex = listByExample.json()["data"].index(
[i for i in listByExample.json()["data"] if i["userName"] == userName][0])
inGreeterId = listByExample.json()["data"][listByExampleIndex]["id"]
inGreeterName = listByExample.json()["data"][listByExampleIndex]["realName"]
# 获取交易类型
transactionType = zcApi.query_transactionType(host=host)
print(transactionType.json())
print("交易类型")
if transactionName ==None:
transactionTypeIndex = 0
else:
transactionTypeIndex = transactionType.json()["rows"].index(
[i for i in transactionType.json()["rows"] if i["name"] == transactionName][0])
tradeType = transactionType.json()["rows"][transactionTypeIndex]["code"]
tradeTypeId = transactionType.json()["rows"][transactionTypeIndex]["id"]
tradeTypeName = transactionType.json()["rows"][transactionTypeIndex]["name"]
# 获取货物标签
goodsTag = zcApi.get_goodsTag(host=host)
print(goodsTag.json())
if goodsTagName ==None:
transactionTypeIndex = 0
else:
transactionTypeIndex = goodsTag.json()["data"].index(
[i for i in goodsTag.json()["data"] if i["name"] == goodsTagName][0])
goodsTagId = goodsTag.json()["data"][transactionTypeIndex]["id"]
# 产地信息获取
address = zcApi.get_address(host=host)
print(address.json())
originId = address.json()["data"][0]["id"]
origin = address.json()["data"][0]["name"]
originCode = address.json()["data"][0]["cityCode"]
# 查询部门信息
depRes = zcApi.get_dep(host=host)
print(depRes.json())
if depName ==None:
depResIndex = 0
else:
depResIndex = depRes.json()["data"].index(
[i for i in depRes.json()["data"] if i["name"] == depName][0])
feeDepId = depRes.json()["data"][depResIndex]["id"]
feeDepName = depRes.json()["data"][depResIndex]["name"]
# 获取证明类型
proveType = zcApi.get_proveType(host=host)
print(proveType.json())
# print("proveName",proveName)
if proveName ==None:
proveTypeIndex = 0
else:
proveTypeIndex = proveType.json()["data"].index(
[i for i in proveType.json()["data"] if i["name"] == proveName][0])
proveTypeCode = proveType.json()["data"][proveTypeIndex]["id"]
proveTypeName = proveType.json()["data"][proveTypeIndex]["name"]
print("proveTypeCode", proveTypeCode)
print("proveTypeName", proveTypeName)
# 获取防重token
duplicateTokenRes = zcApi.get_duplicateToken(host=host)
print(duplicateTokenRes.json())
duplicateToken = duplicateTokenRes.json()["data"]
# 创建生成进门单
plate = plate
productState = "1"
trailerNumber = plate
# 重量信息准备
weight = int(itemWeight)*int(qty)
# 创建进门单
cre_res = create_sparePartsWeighSave(host=host, duplicateToken=duplicateToken,
carTypeCode=carTypeCode, carTypeId=carTypeId,
carTypeName=carTypeName, plate=plate,weight=weight,
productId=productId, productName=productName, proveTypeCode=proveTypeCode,
proveTypeName=proveTypeName, trailerNumber=trailerNumber, depName=feeDepName,
cateId=cateId, originId=originId, origin=origin, originCode=originCode,
tradeType=tradeType, tradeTypeName=tradeTypeName, productState=productState,
tradeTypeId=tradeTypeId, goodsTagId=goodsTagId, inGreeterId=inGreeterId,
inGreeterName=inGreeterName, dep=feeDepId)
return cre_res
# host="http://test.gateway.diligrp.com:8285"
# cre_res = create_sj(host=host,keyword="雪莲果")
# print(cre_res.json())
# number = cre_res.json()["data"]["number"]
# aa = eFBL.do_payOrder(attrValue=number)