{
"inboundNoticeCode": "string",
"warehouseId": "string",
"thirdCode": "string"
}curl --location --request POST '/open/inboundNotice/detailWithBox' \
--header 'Authorization: Bearer {{token}}' \
--header 'timestamp: {{timestamp}}' \
--header 'sign: {{sign}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"inboundNoticeCode": "string",
"warehouseId": "string",
"thirdCode": "string"
}'{
"inboundNoticeCode": "预约单号",
"inboundCode": "入库单号(收货后才有此字段)",
"thirdCode": "三方ERP单号",
"warehouseId": "仓库ID",
"status": "收货状态(非入库)",
"inboundStatus": "入库状态",
"details": [
// SKU1装在2501和2502箱
// SKU2装在2502箱 -- 和SKU1混装
// SKU3装在2503箱 -- 独立装箱
{
"skuCode": "SKU1",
"boxNo": "2501",
"quantity": "预报数量",
"arrivalStatus": "到货状态",
"inboundQuantity": "总上架数量",
"breakQuantity": "次品上架数量",
"goodQuantity": "良品上架数量"
},
{
"skuCode": "SKU1",
"boxNo": "2502",
"quantity": "预报数量",
"arrivalStatus": "到货状态",
"inboundQuantity": "总上架数量",
"breakQuantity": "次品上架数量",
"goodQuantity": "良品上架数量"
},
{
"skuCode": "SKU2",
"boxNo": "2502",
"quantity": "预报数量",
"arrivalStatus": "到货状态",
"inboundQuantity": "总上架数量",
"breakQuantity": "次品上架数量",
"goodQuantity": "良品上架数量"
},
{
"skuCode": "SKU3",
"boxNo": "2503",
"quantity": "预报数量",
"arrivalStatus": "到货状态",
"inboundQuantity": "总上架数量",
"breakQuantity": "次品上架数量",
"goodQuantity": "良品上架数量"
}
]
}