- 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 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
/stockprocess
Stockprocess
请求参数
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 '/stockprocess'
返回响应
🟢200Success
application/json
Body
http response viewmodel
isSuccess
boolean
可选
code
integer <int32>
可选
errorMessage
string | null
可选
data
object (StockprocessWithDetailViewModel)
可选
id
integer <int32>
id
job_code
string | null
job_code
<= 32 字符
job_type
boolean
job_type
process_status
boolean
可选
processor
string | null
processor
<= 64 字符
process_time
string <date-time>
可选
creator
string | null
creator
<= 64 字符
create_time
string <date-time>
可选
last_update_time
string <date-time>
可选
tenant_id
integer <int64>
tenant_id
adjust_status
boolean
可选
source_detail_list
array[object (StockprocessdetailViewModel) {16}] | null
可选
target_detail_list
array[object (StockprocessdetailViewModel) {16}] | null
可选
示例
{
"isSuccess": true,
"code": 0,
"errorMessage": "string",
"data": {
"id": 0,
"job_code": "string",
"job_type": true,
"process_status": true,
"processor": "string",
"process_time": "2019-08-24T14:15:22Z",
"creator": "string",
"create_time": "2019-08-24T14:15:22Z",
"last_update_time": "2019-08-24T14:15:22Z",
"tenant_id": 0,
"adjust_status": true,
"source_detail_list": [
{
"id": 0,
"stock_process_id": 0,
"sku_id": 0,
"goods_owner_id": 0,
"goods_location_id": 0,
"qty": 0,
"last_update_time": "2019-08-24T14:15:22Z",
"tenant_id": 0,
"is_source": true,
"spu_code": "string",
"spu_name": "string",
"sku_code": "string",
"unit": "string",
"is_update_stock": true,
"location_name": "string",
"series_number": "string"
}
],
"target_detail_list": [
{
"id": 0,
"stock_process_id": 0,
"sku_id": 0,
"goods_owner_id": 0,
"goods_location_id": 0,
"qty": 0,
"last_update_time": "2019-08-24T14:15:22Z",
"tenant_id": 0,
"is_source": true,
"spu_code": "string",
"spu_name": "string",
"sku_code": "string",
"unit": "string",
"is_update_stock": true,
"location_name": "string",
"series_number": "string"
}
]
}
}
修改于 2023-10-11 06:40:59