1
This commit is contained in:
parent
33e985f965
commit
bf61ab4d9c
|
|
@ -99,7 +99,11 @@
|
||||||
<!-- <el-table-column label="记录号" align="center" prop="recordId" /> -->
|
<!-- <el-table-column label="记录号" align="center" prop="recordId" /> -->
|
||||||
<el-table-column label="单号" align="center" prop="orderId" width="270"/>
|
<el-table-column label="单号" align="center" prop="orderId" width="270"/>
|
||||||
<el-table-column label="出库单号" align="center" prop="listId" />
|
<el-table-column label="出库单号" align="center" prop="listId" />
|
||||||
<el-table-column label="出库单类型" align="center" prop="orderType" />
|
<el-table-column label="出库单类型" align="center" prop="orderType" >
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<dict-tag :options="dict.type.out_order_type" :value="scope.row.orderType"/>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
<el-table-column label="客户名称" align="center" prop="customerId" />
|
<el-table-column label="客户名称" align="center" prop="customerId" />
|
||||||
<el-table-column label="物料号" align="center" prop="goodsId" />
|
<el-table-column label="物料号" align="center" prop="goodsId" />
|
||||||
<el-table-column label="订单出库数量" align="center" prop="goodsNum" />
|
<el-table-column label="订单出库数量" align="center" prop="goodsNum" />
|
||||||
|
|
@ -118,8 +122,16 @@
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="库存数量" align="center" prop="stockNum" />
|
<el-table-column label="库存数量" align="center" prop="stockNum" />
|
||||||
<el-table-column label="物料描述" align="center" prop="goodsDesc" />
|
<el-table-column label="物料描述" align="center" prop="goodsDesc" />
|
||||||
<el-table-column label="订单状态" align="center" prop="orderStatus" />
|
<el-table-column label="订单状态" align="center" prop="orderStatus" >
|
||||||
<el-table-column label="是否锁定" align="center" prop="isLock" />
|
<template slot-scope="scope">
|
||||||
|
<dict-tag :options="dict.type.out_order_status" :value="scope.row.orderStatus"/>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="是否锁定" align="center" prop="isLock" >
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<dict-tag :options="dict.type.stock_or_order_status" :value="scope.row.isLock"/>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
<el-table-column label="操作人" align="center" prop="createBy" />
|
<el-table-column label="操作人" align="center" prop="createBy" />
|
||||||
<el-table-column label="创建时间" align="center" prop="createTime" />
|
<el-table-column label="创建时间" align="center" prop="createTime" />
|
||||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||||
|
|
@ -209,7 +221,9 @@ export default {
|
||||||
components: {
|
components: {
|
||||||
OutboundDialog
|
OutboundDialog
|
||||||
},
|
},
|
||||||
|
dicts: ["out_order_type", "out_order_status","stock_or_order_status"],
|
||||||
data() {
|
data() {
|
||||||
|
|
||||||
return {
|
return {
|
||||||
// 遮罩层
|
// 遮罩层
|
||||||
loading: true,
|
loading: true,
|
||||||
|
|
|
||||||
|
|
@ -136,7 +136,7 @@
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="库存状态" align="center" prop="stockStatus" >
|
<el-table-column label="库存状态" align="center" prop="stockStatus" >
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<dict-tag :options="dict.type.stock_status" :value="scope.row.stockStatus"/>
|
<dict-tag :options="dict.type.stock_or_order_status" :value="scope.row.stockStatus"/>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="操作人" align="center" prop="createUser" />
|
<el-table-column label="操作人" align="center" prop="createUser" />
|
||||||
|
|
@ -262,7 +262,7 @@ import { listStock, getStock, delStock, addStock, updateStock } from "@/api/syst
|
||||||
import {taskOutRequest} from "@/api/system/task";
|
import {taskOutRequest} from "@/api/system/task";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
dicts: ["in_order_type", "stock_status"],
|
dicts: ["in_order_type", "stock_or_order_status"],
|
||||||
name: "Stock",
|
name: "Stock",
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user