Browse Source

完善仓储--库存--出入库查询

master
yunuo970428 7 months ago
parent
commit
495de72151
  1. 6
      yxt-as-ui/src/views/storage/inventory/inventoryRefer.vue

6
yxt-as-ui/src/views/storage/inventory/inventoryRefer.vue

@ -71,7 +71,11 @@
<el-table-column prop="warehouseName" label="仓库" align="center" width="150" />
<el-table-column prop="warehouseRackCode" label="库位" align="center" width="100" />
<el-table-column prop="billNo" label="来源单号" align="center" width="150" />
<el-table-column prop="billType" label="单据类型" align="center" width="100" />
<el-table-column label="单据类型" align="center" width="100">
<template slot-scope="scope">
<span>{{ scope.row.billType == '1' ? '入库' : scope.row.billType == '0' ? '出库' : '' }}</span>
</template>
</el-table-column>
<el-table-column prop="createTime" label="发生时间" align="center" width="120" />
<el-table-column prop="busTypeValue" label="业务类型" align="center" width="100" />
<el-table-column prop="supplierName" label="供应商" align="center" min-width="150" />

Loading…
Cancel
Save