Pull Confirm业务描述
当3PL接收到VMI系统的pull料指令后,根据自身库存确认是否可以正常送料。
Pull Confirm接口集成方式
参考Batch Integration模块
Pull Confirm业务字段
参数名称 | 参数类型 | 数据库type | 描述 | Primary Key | 是否必填/不为空 |
---|---|---|---|---|---|
pullId | String | VARCHAR2(40) | Pull header id | Y | |
shipToId | String | VARCHAR2(40) | Logic plant | ||
destStorageLocation | String | VARCHAR2(40) | destStorageLocation | ||
destBin | String | VARCHAR2(40) | Destination bin | ||
destType | String | VARCHAR2(40) | Destination type | ||
pullType | String | VARCHAR2(40) | Pull type | ||
pullLineId | String | VARCHAR2(40) | Pull line id | Y | |
itemId | String | VARCHAR2(18) | Item id | ||
supplierId | String | VARCHAR2(40) | Supplier id | ||
sourceStorageLocation | String | VARCHAR2(40) | Source storage location | ||
sourceBin | String | VARCHAR2(40) | Source bin | ||
sourceType | String | VARCHAR2(40) | Source type | ||
quantity | number | NUMBER | Confirm quantity | ||
dataType | String | VARCHAR2(40) | PullConfirm |
Pull Confirm报文示例
json
{
"push_id": "11111",
"workshop_code": "LSSC-SMT",
"source_system": "HIC/LESHINE",
"target_system": "VMI",
"system_time":"2020-11-20 14:00:00",
"total_size": 2,
"current_page": 1,
"current_page_size": 1,
"workshopCode": "LSSC-SMT",
"data": [
{
"pullId": "1489865",
"shipToId": "L210",
"destStorageLocation": "MMMN",
"destBin": "W09",
"destType": "W06",
"pullType": "NORMAL",
"pullLineId": "18390314",
"itemId": "000000A36941",
"supplierId": "1000037984",
"sourceStorageLocation": "MRNM",
"sourceBin": "VENDOR",
"sourceType": "C51",
"quantity": 21,
"dataType": "PullConfirm"
}
]
}