| 1234567891011121314151617181920212223242526272829 |
- // 查询机构库存(库存管理/当前库存)
- export interface Ermcp3AreaStock{
- brandname :string;//品牌名称
- curstock :number;//期末库存量(今日量)
- deliverygoodscode :string;//现货品种代码
- deliverygoodsid :number;//现货品种id
- deliverygoodsname :string;//现货品种名称
- enumdicname :string;//单位名称
- goodsunitid :number;//现货商品单位id
- oristock :number;//期初库存量(昨日量)
- spotgoodsbrandid :number;//现货品牌ID
- todaybuyinqty :number;//今日采购入库量
- todayproduceinqty :number;//今日生产入库量
- todayproduceoutqty :number;//今日生产出库量
- todayselloutqty :number;//今日销售出库量
- unitid :number;//单位id
- updatetime :string;//更新时间
- userid :number;//机构ID
- username :string;//机构名称
- warehousecode :string;//仓库代码
- warehouseinfoid :string;//仓库ID
- warehousename :string;//仓库名称
- warehousetype :number;//仓库类型 - 1 厂库 2 自有库 3 合作库
- wrstandardcode :string;//品类代码
- wrstandardid :string;//品类ID
- wrstandardname :string;//品类名称
- }
|