- 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
Confirm orders and create dispatchpicklist
POST
/dispatchlist/confirm-order
Dispatchlist
请求参数
Body 参数application/json
array of:
dispatchlist_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
spu_code
string | null
spu_code
spu_name
string | null
spu_name
spu_description
string | null
可选
bar_code
string | null
bar_code
sku_code
string | null
sku_code
qty_available
integer <int32>
可选
confirm
boolean
可选
pick_list
array[object (DispatchlistConfirmPickDetailViewModel) {11}] | null
pick list
stock_id
integer <int32>
stock_id
dispatchlist_id
integer <int32>
可选
goods_owner_id
integer <int32>
可选
goods_owner_name
string | null
可选
goods_location_id
integer <int32>
可选
warehouse_name
string | null
可选
location_name
string | null
可选
warehouse_area_name
string | null
可选
qty_available
integer <int32>
可选
pick_qty
integer <int32>
pick_qty
series_number
string | null
可选
<= 64 字符
示例
[
{
"dispatchlist_id": 0,
"dispatch_no": "string",
"dispatch_status": 0,
"customer_id": 0,
"customer_name": "string",
"sku_id": 0,
"qty": 0,
"spu_code": "string",
"spu_name": "string",
"spu_description": "string",
"bar_code": "string",
"sku_code": "string",
"qty_available": 0,
"confirm": true,
"pick_list": [
{
"stock_id": 0,
"dispatchlist_id": 0,
"goods_owner_id": 0,
"goods_owner_name": "string",
"goods_location_id": 0,
"warehouse_name": "string",
"location_name": "string",
"warehouse_area_name": "string",
"qty_available": 0,
"pick_qty": 0,
"series_number": "string"
}
]
}
]
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/dispatchlist/confirm-order' \
--header 'Content-Type: application/json' \
--data-raw '[
{
"dispatchlist_id": 0,
"dispatch_no": "string",
"dispatch_status": 0,
"customer_id": 0,
"customer_name": "string",
"sku_id": 0,
"qty": 0,
"spu_code": "string",
"spu_name": "string",
"spu_description": "string",
"bar_code": "string",
"sku_code": "string",
"qty_available": 0,
"confirm": true,
"pick_list": [
{
"stock_id": 0,
"dispatchlist_id": 0,
"goods_owner_id": 0,
"goods_owner_name": "string",
"goods_location_id": 0,
"warehouse_name": "string",
"location_name": "string",
"warehouse_area_name": "string",
"qty_available": 0,
"pick_qty": 0,
"series_number": "string"
}
]
}
]'
返回响应
🟢200Success
application/json
Body
http response viewmodel
isSuccess
boolean
可选
code
integer <int32>
可选
errorMessage
string | null
可选
data
string | null
data
示例
{
"isSuccess": true,
"code": 0,
"errorMessage": "string",
"data": "string"
}
修改于 2023-10-11 06:40:59