入库出库记录与库存管理一体化系统
| 入库时间 | 货物名称 | 数量 | 重量(kg) | 类型 | 操作员 | 备注 |
|---|---|---|---|---|---|---|
| {{ formatTime(record.in_time) }} | {{ record.name }} | {{ record.quantity }} | {{ record.weight }} | {{ record.type }} | {{ record.operator || '-' }} | {{ record.remark || '-' }} |
| 暂无入库记录 | ||||||
| 出库时间 | 货物名称 | 数量 | 重量(kg) | 类型 | 操作员 | 备注 |
|---|---|---|---|---|---|---|
| {{ formatTime(record.out_time) }} | {{ record.name }} | {{ record.quantity }} | {{ record.weight }} | {{ record.type }} | {{ record.operator || '-' }} | {{ record.remark || '-' }} |
| 暂无出库记录 | ||||||
| 序号 | 货物名称 | 库存数量 | 库存重量(kg) | 类型 | 更新时间 | 操作 |
|---|---|---|---|---|---|---|
| {{ index + 1 }} | {{ item.name }} | {{ item.quantity }} | {{ item.weight }} | {{ item.type }} | {{ formatTime(item.update_time) }} | |
| 暂无库存数据 | ||||||
| 时间 | 类型 | 货物名称 | 数量 | 重量(kg) | 货物类型 | 客户 | 操作员 | 备注 | 操作 |
|---|---|---|---|---|---|---|---|---|---|
| {{ formatTime(record.time) }} | {{ record.record_type === 'inbound' ? '入库' : record.record_type === 'outbound' ? '出库' : record.record_type === 'changebound' ? '修改' : '未知' }} | {{ record.name }} | {{ record.quantity }} | {{ record.weight }} | {{ record.type }} | {{ record.customer }} | {{ record.operator || '-' }} | {{ record.remark || '-' }} | |
| 暂无记录 | |||||||||