feat: 车间库存处添加已到工序
This commit is contained in:
parent
56e180b46f
commit
5f2ab70e8c
|
|
@ -241,6 +241,11 @@
|
||||||
<template #default="scope">{{
|
<template #default="scope">{{
|
||||||
scope.row.material_.model
|
scope.row.material_.model
|
||||||
}}</template>
|
}}</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="已到工序" prop="material">
|
||||||
|
<template #default="scope">{{
|
||||||
|
scope.row.material_.process_name
|
||||||
|
}}</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="批次" prop="batch"> </el-table-column>
|
<el-table-column label="批次" prop="batch"> </el-table-column>
|
||||||
<el-table-column label="数量" prop="count" width="80">
|
<el-table-column label="数量" prop="count" width="80">
|
||||||
|
|
|
||||||
|
|
@ -161,6 +161,11 @@
|
||||||
{{ scope.row.material_.model }}
|
{{ scope.row.material_.model }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
<el-table-column label="已到工序" prop="material">
|
||||||
|
<template #default="scope">{{
|
||||||
|
scope.row.material_.process_name
|
||||||
|
}}</template>
|
||||||
|
</el-table-column>
|
||||||
<el-table-column label="批次" prop="batch"> </el-table-column>
|
<el-table-column label="批次" prop="batch"> </el-table-column>
|
||||||
<el-table-column label="数量" prop="count" width="80">
|
<el-table-column label="数量" prop="count" width="80">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
|
|
||||||
|
|
@ -240,6 +240,11 @@
|
||||||
<template #default="scope">{{
|
<template #default="scope">{{
|
||||||
scope.row.material_.model
|
scope.row.material_.model
|
||||||
}}</template>
|
}}</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="已到工序" prop="material">
|
||||||
|
<template #default="scope">{{
|
||||||
|
scope.row.material_.process_name
|
||||||
|
}}</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="批次" prop="batch"> </el-table-column>
|
<el-table-column label="批次" prop="batch"> </el-table-column>
|
||||||
<el-table-column label="数量" prop="count" width="80">
|
<el-table-column label="数量" prop="count" width="80">
|
||||||
|
|
|
||||||
|
|
@ -128,6 +128,11 @@
|
||||||
<template #default="scope">{{
|
<template #default="scope">{{
|
||||||
scope.row.material_.model
|
scope.row.material_.model
|
||||||
}}</template>
|
}}</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="已到工序" prop="material">
|
||||||
|
<template #default="scope">{{
|
||||||
|
scope.row.material_.process_name
|
||||||
|
}}</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="批次" prop="batch"> </el-table-column>
|
<el-table-column label="批次" prop="batch"> </el-table-column>
|
||||||
<el-table-column label="数量" prop="count" width="80">
|
<el-table-column label="数量" prop="count" width="80">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue