add:需求单新增显示平库立库库存

This commit is contained in:
zhaoyf
2026-08-12 09:12:54 +08:00
parent dfee696338
commit b40e11daf2
5 changed files with 36 additions and 15 deletions

View File

@@ -105,6 +105,16 @@
<el-table-column prop="targetArea" label="目标库存地点" min-width="140" show-overflow-tooltip />
<el-table-column prop="targetHouseCode" label="目标库" min-width="140" show-overflow-tooltip />
<el-table-column prop="inventoryDis" label="分配仓库" width="110" />
<el-table-column prop="pkInv" label="平库库存" width="110">
<template slot-scope="scope">
{{ scope.row.pkInv || '-' }}
</template>
</el-table-column>
<el-table-column prop="lkInv" label="立库库存" width="110">
<template slot-scope="scope">
{{ scope.row.lkInv || '-' }}
</template>
</el-table-column>
<el-table-column prop="carrierType" label="托盘类型" min-width="140" show-overflow-tooltip />
<el-table-column prop="productionLine" label="产线" min-width="100" show-overflow-tooltip />
<el-table-column prop="sn" label="车辆序列号" min-width="140" show-overflow-tooltip />
@@ -122,7 +132,7 @@
</template>
<script>
import crudDemand, {queryInventory, allocate, batchAllocate, push, batchAllcation} from './demand'
import crudDemand, { queryInventory, allocate, batchAllocate, push, batchAllcation } from './demand'
import CRUD, { crud, form, header, presenter } from '@crud/crud'
import crudOperation from '@crud/CRUD.operation.vue'
import udOperation from '@crud/UD.operation.vue'