This commit is contained in:
zds
2022-11-14 19:54:37 +08:00
parent fcd828d13f
commit 06a3ea258d
19 changed files with 582 additions and 142 deletions

View File

@@ -160,7 +160,7 @@
<el-table-column prop="stor_name" label="仓库" />
<el-table-column prop="sect_name" label="库区" min-width="100" />
<el-table-column prop="struct_code" label="货位编码" width="120" />
<el-table-column prop="struct_name" label="货位名称" min-width="150" show-overflow-tooltip />
<el-table-column prop="struct_name" label="货位名称" min-width="150" />
<el-table-column prop="storagevehicle_code" label="托盘号">
<template slot-scope="scope">
<el-link type="warning" @click="openBucket(scope.row)">{{ scope.row.storagevehicle_code }}</el-link>
@@ -174,11 +174,11 @@
<el-table-column prop="quality_scode" label="品质类型" :formatter="format_quality_scode" />
<el-table-column prop="ivt_level" label="库存等级" :formatter="format_ivt_level" />
<el-table-column prop="is_active" label="是否可用" :formatter="format_is_active" />
<el-table-column prop="bucket_num" :formatter="crud.formatNum0" label="桶数" min-width="80" />
<el-table-column prop="ivt_qty" label="库存重量" :formatter="formatQty" />
<el-table-column prop="canuse_qty" label="可用重量" :formatter="formatQty" />
<el-table-column prop="frozen_qty" label="冻结数" :formatter="formatQty" />
<el-table-column prop="warehousing_qty" label="待入数" :formatter="formatQty" />
<el-table-column prop="bucket_num" :formatter="crud.formatNum0" label="桶数" min-width="100" />
<el-table-column prop="ivt_qty" label="库存重量" :formatter="formatQty" min-width="100" />
<el-table-column prop="canuse_qty" label="可用重量" :formatter="formatQty" min-width="100" />
<el-table-column prop="frozen_qty" label="冻结数" :formatter="formatQty" min-width="100" />
<el-table-column prop="warehousing_qty" label="待入数" :formatter="formatQty" min-width="100" />
<el-table-column prop="qty_unit_name" label="单位" />
<el-table-column prop="instorage_time" label="入库时间" width="135" />
</el-table>