- Account
- Category
- Company
- Customer
- Freightfee
- Goodslocation
- Goodsowner
- Rolemenu
- Spu
- Supplier
- User
- Userrole
- Warehouse
- Warehousearea
- Action_log
- Asn
- Arrival list
- get Arrival list
- add a new record
- update record
- delete a record
- page search, sqlTitle input asn_status:0 ~ 4
- get a record by id
- add a new record
- update a record
- delete a record
- Bulk modify Goodsowner
- Confirm Delivery change the asn_status from 0 to 1
- Cancel confirm, change asn_status 1 to 0
- Unload change the asn_status from 1 to 2
- Cancel unload change the asn_status from 2 to 1
- sorting, add a new asnsort record and update asn sorted_qty
- get asnsorts list by asn_id
- update or delete asnsorts data
- Sorted change the asn_status from 2 to 3
- Cancel sorted change the asn_status from 3 to 2
- get pending putaway data by asn_id
- PutAway
- Dispatchlist
- page searchPOST
- advanced dispatch order page searchPOST
- add a new recordPOST
- update dispatchlist with same dispatch_noPUT
- delete a recordDELETE
- get dispatchlist by dispatch_noGET
- get Dispatchlist details with available stockGET
- get pick list by dispatch_idGET
- Confirm orders and create dispatchpicklistPOST
- confirm dispatchpicklist picked by dispatch_noPUT
- package dispatchpicklistPOST
- weight dispatchpicklistPOST
- dispatchpicklist outbound deliveryPOST
- set dispatchlist freightfeePOST
- sign for arrivalPOST
- cancel order oprationPOST
- cancel dispatchlist detail oprationPUT
- PrintSolution
- Stock
- Stockadjust
- Stockfreeze
- Stockmove
- Stockprocess
- Stocktaking
get dispatchlist by dispatch_no
GET
/dispatchlist/by-dispatch_no
Dispatchlist
请求参数
Query 参数
dispatch_no
string
可选
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '/dispatchlist/by-dispatch_no'
返回响应
🟢200Success
application/json
Body
http response viewmodel
isSuccess
boolean
可选
code
integer <int32>
可选
errorMessage
string | null
可选
data
array[object (DispatchlistViewModel) {44}] | null
data
id
integer <int32>
id
dispatch_no
string | null
可选
<= 32 字符
dispatch_status
integer <int32>
可选
customer_id
integer <int32>
可选
customer_name
string | null
可选
<= 256 字符
sku_id
integer <int32>
sku_id
qty
integer <int32>
qty
weight
number <double>
weight
volume
number <double>
volume
creator
string | null
creator
<= 64 字符
create_time
string <date-time>
可选
damage_qty
integer <int32>
可选
lock_qty
integer <int32>
lock_qty
picked_qty
integer <int32>
可选
unpicked_qty
integer <int32>
可选
intrasit_qty
integer <int32>
可选
package_qty
integer <int32>
可选
unpackage_qty
integer <int32>
可选
weighing_qty
integer <int32>
可选
unweighing_qty
integer <int32>
可选
actual_qty
integer <int32>
可选
sign_qty
integer <int32>
sign_qty
package_no
string | null
可选
<= 32 字符
package_person
string | null
可选
<= 64 字符
package_time
string <date-time>
可选
weighing_no
string | null
可选
<= 32 字符
weighing_person
string | null
可选
<= 64 字符
weighing_weight
number <double>
可选
waybill_no
string | null
可选
<= 64 字符
carrier
string | null
carrier
<= 256 字符
freightfee
number <double>
可选
last_update_time
string <date-time>
可选
tenant_id
integer <int64>
tenant_id
spu_code
string | null
spu_code
spu_name
string | null
spu_name
sku_code
string | null
sku_code
spu_description
string | null
可选
bar_code
string | null
bar_code
volume_unit
integer <int32>
可选
weight_unit
integer <int32>
可选
length_unit
integer <int32>
可选
sku_name
string | null
sku_name
unit
string | null
unit
is_todo
boolean
is_todo
示例
{
"isSuccess": true,
"code": 0,
"errorMessage": "string",
"data": [
{
"id": 0,
"dispatch_no": "string",
"dispatch_status": 0,
"customer_id": 0,
"customer_name": "string",
"sku_id": 0,
"qty": 0,
"weight": 0,
"volume": 0,
"creator": "string",
"create_time": "2019-08-24T14:15:22Z",
"damage_qty": 0,
"lock_qty": 0,
"picked_qty": 0,
"unpicked_qty": 0,
"intrasit_qty": 0,
"package_qty": 0,
"unpackage_qty": 0,
"weighing_qty": 0,
"unweighing_qty": 0,
"actual_qty": 0,
"sign_qty": 0,
"package_no": "string",
"package_person": "string",
"package_time": "2019-08-24T14:15:22Z",
"weighing_no": "string",
"weighing_person": "string",
"weighing_weight": 0,
"waybill_no": "string",
"carrier": "string",
"freightfee": 0,
"last_update_time": "2019-08-24T14:15:22Z",
"tenant_id": 0,
"spu_code": "string",
"spu_name": "string",
"sku_code": "string",
"spu_description": "string",
"bar_code": "string",
"volume_unit": 0,
"weight_unit": 0,
"length_unit": 0,
"sku_name": "string",
"unit": "string",
"is_todo": true
}
]
}
修改于 2023-10-11 06:40:59