- Account
- Category
- Company
- Customer
- Freightfee
- Goodslocation
- Goodsowner
- Rolemenu
- Spu
- Supplier
- User
- Userrole
- Warehouse
- Warehousearea
- Action_log
- Asn
- Arrival listPOST
- get Arrival listGET
- add a new recordPOST
- update recordPUT
- delete a recordDELETE
- page search, sqlTitle input asn_status:0 ~ 4POST
- get a record by idGET
- add a new recordPOST
- update a recordPUT
- delete a recordDELETE
- Bulk modify GoodsownerPUT
- Confirm Delivery change the asn_status from 0 to 1PUT
- Cancel confirm, change asn_status 1 to 0PUT
- Unload change the asn_status from 1 to 2PUT
- Cancel unload change the asn_status from 2 to 1PUT
- sorting, add a new asnsort record and update asn sorted_qtyPUT
- get asnsorts list by asn_idGET
- update or delete asnsorts dataPUT
- Sorted change the asn_status from 2 to 3PUT
- Cancel sorted change the asn_status from 3 to 2PUT
- get pending putaway data by asn_idGET
- PutAwayPUT
- Dispatchlist
- page search
- advanced dispatch order page search
- add a new record
- update dispatchlist with same dispatch_no
- delete a record
- get dispatchlist by dispatch_no
- get Dispatchlist details with available stock
- get pick list by dispatch_id
- Confirm orders and create dispatchpicklist
- confirm dispatchpicklist picked by dispatch_no
- package dispatchpicklist
- weight dispatchpicklist
- dispatchpicklist outbound delivery
- set dispatchlist freightfee
- sign for arrival
- cancel order opration
- cancel dispatchlist detail opration
- PrintSolution
- Stock
- Stockadjust
- Stockfreeze
- Stockmove
- Stockprocess
- Stocktaking
get a record by id
GET
/asn
Asn
请求参数
Query 参数
id
integer
可选
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '/asn'
返回响应
🟢200Success
application/json
Body
http response viewmodel
isSuccess
boolean
可选
code
integer <int32>
可选
errorMessage
string | null
可选
data
object (AsnViewModel)
可选
id
integer <int32>
id
asnmaster_id
integer <int32>
可选
asn_no
string | null
asn_no
<= 32 字符
asn_batch
string | null
asn_batch
estimated_arrival_time
string <date-time>
可选
asn_status
integer <int32>
可选
spu_id
integer <int32>
spu_id
spu_code
string
spu_code
>= 1 字符<= 32 字符
spu_name
string
spu_name
>= 1 字符<= 200 字符
sku_id
integer <int32>
sku_id
sku_code
string | null
sku_code
<= 32 字符
sku_name
string | null
sku_name
<= 200 字符
origin
string | null
origin
<= 256 字符
length_unit
integer <int32>
可选
volume_unit
integer <int32>
可选
weight_unit
integer <int32>
可选
asn_qty
integer <int32>
asn_qty
actual_qty
integer <int32>
可选
arrival_time
string <date-time>
可选
unload_time
string <date-time>
可选
unload_person_id
integer <int32>
可选
unload_person
string | null
可选
sorted_qty
integer <int32>
可选
shortage_qty
integer <int32>
可选
more_qty
integer <int32>
more_qty
damage_qty
integer <int32>
可选
weight
number <double>
weight
volume
number <double>
volume
supplier_id
integer <int32>
可选
supplier_name
string | null
可选
<= 256 字符
goods_owner_id
integer <int32>
可选
goods_owner_name
string | null
可选
<= 256 字符
creator
string | null
creator
<= 64 字符
create_time
string <date-time>
可选
last_update_time
string <date-time>
可选
is_valid
boolean
is_valid
示例
{
"isSuccess": true,
"code": 0,
"errorMessage": "string",
"data": {
"id": 0,
"asnmaster_id": 0,
"asn_no": "string",
"asn_batch": "string",
"estimated_arrival_time": "2019-08-24T14:15:22Z",
"asn_status": 0,
"spu_id": 0,
"spu_code": "string",
"spu_name": "string",
"sku_id": 0,
"sku_code": "string",
"sku_name": "string",
"origin": "string",
"length_unit": 0,
"volume_unit": 0,
"weight_unit": 0,
"asn_qty": 0,
"actual_qty": 0,
"arrival_time": "2019-08-24T14:15:22Z",
"unload_time": "2019-08-24T14:15:22Z",
"unload_person_id": 0,
"unload_person": "string",
"sorted_qty": 0,
"shortage_qty": 0,
"more_qty": 0,
"damage_qty": 0,
"weight": 0,
"volume": 0,
"supplier_id": 0,
"supplier_name": "string",
"goods_owner_id": 0,
"goods_owner_name": "string",
"creator": "string",
"create_time": "2019-08-24T14:15:22Z",
"last_update_time": "2019-08-24T14:15:22Z",
"is_valid": true
}
}
修改于 2023-10-11 06:40:59