1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- export default [
- {
- type: "expand",
- _slot_: "expand",
- label: "",
- },
- {
- prop: "company_no",
- label: "仓库业务公司编码",
- width: "150",
- },
- {
- prop: "company_name",
- label: "仓库业务公司名称",
- 'min-width':"180"
- },
- {
- prop: "supplier_code",
- label: "仓库所在公司编码",
- width: "150",
- },
- {
- prop: "supplier_name",
- label: "仓库所在公司名称",
- 'min-width':"180"
- },
- {
- prop: "wsm_code",
- label: "仓库编码",
- width:'180'
- },
- {
- prop: "wsm_name",
- label: "仓库名称",
- 'min-width':"100"
- },
- {
- prop: "total_stock",
- label: "当前库存",
- },
- {
- prop: "wait_in_stock",
- label: "待入库",
- },
- {
- prop: "wait_out_stock",
- label: "待出库",
- width: "80px",
- },
- {
- prop: "usable_stock",
- label: "可用库存",
- // sortable: true,
- },
- {
- prop: "intra_stock",
- label: "在途库存",
- // sortable: true,
- },
- // {
- // prop: "warn_stock",
- // label: "预警库存",
- // },
-
- ]
|