查询发货单
POST
/api/open/v3/salesOutOrder/query
请求参数
Body 参数application/json
body
必需
Any of
conditions
object
SalesOutOrderConditionsV3Param
paging
分页参数
示例
{
"body": {
"conditions": {
"code": {
"conditionType": "KEYWORD",
"value": "155442"
}
},
"paging": {
"start": 0,
"length": 10
}
}
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://sit.newcoretech.com/api/open/v3/salesOutOrder/query' \
--header 'Content-Type: application/json' \
--data-raw '{
"body": {
"conditions": {
"code": {
"conditionType": "KEYWORD",
"value": "155442"
}
},
"paging": {
"start": 0,
"length": 10
}
}
}'
返回响应
🟢200成功
application/json
Body
code
integer
可选
message
string
可选
data
object (ListPagingResponseDataDeliveryDetailBatchInfo)
可选
list
array[object (DeliveryDetailBatchInfo) {17}]
可选
start
integer
可选
length
integer
可选
recordsTotal
integer
可选
示例
{
"code": 0,
"message": "",
"data": {
"list": [
{
"deliveryCompany": "",
"deliveryCompanyId": "",
"deliveryOrderId": "",
"deliveryTime": "",
"batchId": 0,
"comment": "",
"logisticsNumber": "",
"customerName": "",
"deleteReason": "",
"isMergeBatch": 0,
"outBatchMoney": 0.0,
"outInventoryProcess": [
""
],
"records": [
{
"id": 0,
"comment": "",
"currency": 0,
"customerOrderNumber": "",
"deadLine": "",
"customerRequestDeadLine": "",
"exchangeRate": 0.0,
"isAudited": 0,
"isDeleted": 0,
"itemId": "",
"itemCode": "",
"itemName": "",
"orderId": 0,
"orderNumber": "",
"outQuantity": 0.0,
"price": 0.0,
"lastPrice": 0.0,
"originPrice": 0.0,
"processStatus": 0,
"quantity": 0.0,
"returnQuantity": 0.0,
"taxRate": 0.0,
"totalTaxPrice": 0.0,
"baseCurrencyTotalTaxPrice": 0.0,
"updateTime": "",
"recordStatus": 0,
"excludeTaxPrice": 0.0,
"discount": 0.0,
"discountPrice": 0.0,
"noTaxDiscountPrice": 0.0,
"hasSpecialPrice": false,
"specialPrice": 0.0,
"noTaxSpecialPrice": 0.0,
"totalSpecialNoTaxPrice": 0.0,
"totalSpecialTaxPrice": 0.0,
"totalDiscountNoTaxPrice": 0.0,
"totalDiscountTaxPrice": 0.0,
"totalNoTaxPrice": 0.0,
"taxPrice": 0.0,
"totalPriceWithTax": 0.0,
"outBatchId": 0,
"warehouseId": 0,
"orderProductId": 0,
"saleUnit": {
"baseUnitId": 0,
"unitId": 0,
"unitName": "",
"unitToBaseRatio": 0.0,
"baseToUnitRatio": 0.0
},
"warehouseName": "",
"sort": 0
}
],
"processStatus": 0,
"updateTime": "",
"recordStatus": 0,
"itemDtos": [
{
"id": "",
"rootItemId": "",
"itemId": "",
"name": "",
"unit": "",
"type": "",
"category": "",
"code": "",
"imageUrl": "",
"comments": "",
"attributes": {
"": ""
},
"costPrice": 0.0,
"cost_price": 0.0,
"price": 0.0,
"shelfLife": 0,
"taxRate": 0.0,
"tax_rate": 0.0,
"defectiveRate": 0.0,
"categoryId": 0,
"overStock": false,
"hasProcurementInspection": false,
"allowProduction": 0,
"allowPurchase": 0,
"allowSale": 0,
"useStockBatch": 0
}
]
}
],
"start": 0,
"length": 0,
"recordsTotal": 0
}
}