出库界面列表添加领料人

This commit is contained in:
z 2025-06-06 16:00:10 +08:00
parent ef585eda43
commit b5e9f3514c
2 changed files with 11 additions and 1 deletions

View File

@ -127,6 +127,11 @@
{{ warehouseList.find((tag) => tag.id === scope.row.whId)?.whName }}
</template>
</el-table-column>
<el-table-column label="领料人" align="center" prop="materialReceiver" min-width="120">
<template #default="scope">
{{ userList.find((user) => user.id === scope.row.materialReceiver)?.nickname }}
</template>
</el-table-column>
<el-table-column label="备注" align="center" prop="description" min-width="120"/>
<el-table-column label="创建人" align="center" prop="creator" min-width="120">
<template #default="scope">
@ -141,7 +146,7 @@
min-width="240"
/>
<el-table-column label="提交人" align="center" prop="keeper" min-width="120">
<el-table-column label="提交人" align="center" prop="keeper" min-width="120">
<template #default="scope">
{{ userList.find((user) => user.id == scope.row.outbound)?.nickname }}
</template>

View File

@ -127,6 +127,11 @@
{{ warehouseList.find((tag) => tag.id === scope.row.whId)?.whName }}
</template>
</el-table-column>
<el-table-column label="领料人" align="center" prop="materialReceiver" min-width="120">
<template #default="scope">
{{ userList.find((user) => user.id === scope.row.materialReceiver)?.nickname }}
</template>
</el-table-column>
<el-table-column label="备注" align="center" prop="description" min-width="120"/>
<el-table-column label="创建人" align="center" prop="creator" min-width="120">
<template #default="scope">