Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 15 Next »

地址: http://test.birdsystem.com/client/product/Get-Product-Available-Quantity?ids=1302332

只读,批量获取产品可用库存

参数

字段备注类型说明
ids产品id集合string

多个产品id以 ',' 分割,查询定向共享产品时格式为 产品ID|D,

例如客户2定向共享给客户1的产品3,客户1查询的时候格式为3|D。查询多个产品时参数ids=2,3|D

company_id查询对应站点的库存int



返回

{
    "data": [
        {
            "live_stock": 0,     //当前库存
            "current_locked_stock": 0,    //占用库存
            "dynamic_warehouse_available_stock": 0,  //动态仓有效库存
            "id": 214569   //产品ID
        },
        {
            "live_stock": 5,  //当前库存
            "current_locked_stock": 2,   //占用库存
            "dynamic_warehouse_available_stock": 2,   //动态仓有效库存
            "id": 30741
        }
    ],
    "success": true,
    "refresh": false,
    "moduleName": "client"
}

可用库存为live_stock - current_locked_stock

  • No labels