- 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
sign for arrival
POST
/dispatchlist/sign
Dispatchlist
请求参数
Body 参数application/json
array of:
id
integer <int32>
可选
dispatch_no
string | null
可选
<= 32 字符
dispatch_status
integer <int32>
可选
damage_qty
integer <int32>
可选
示例
[
{
"id": 0,
"dispatch_no": "string",
"dispatch_status": 0,
"damage_qty": 0
}
]
示例代码
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/sign' \
--header 'Content-Type: application/json' \
--data-raw '[
{
"id": 0,
"dispatch_no": "string",
"dispatch_status": 0,
"damage_qty": 0
}
]'
返回响应
🟢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