feat(mes): 重命名待检数量字段,优化数据一致性

pull/871/MERGE
YunaiV 2026-03-24 09:37:03 +08:00
parent 23748e3433
commit c9b99e9465
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ export interface QcPendingInspectVO {
itemName: string
specification: string
unitName: string
quantityToCheck: number
quantity: number
vendorId: number
vendorName: string
recordTime: string

View File

@ -61,7 +61,7 @@
<el-table-column label="物料编码" align="center" prop="itemCode" width="130" />
<el-table-column label="物料名称" align="center" prop="itemName" min-width="150" />
<el-table-column label="规格型号" align="center" prop="specification" width="130" />
<el-table-column label="待检数量" align="center" prop="quantityToCheck" width="100" />
<el-table-column label="待检数量" align="center" prop="quantity" width="100" />
<el-table-column label="单位" align="center" prop="unitName" width="80" />
<el-table-column label="操作" align="center" fixed="right" width="130">
<template #default="scope">
@ -143,7 +143,7 @@ const handleCreateIqc = (row: QcPendingInspectVO) => {
sourceLineId: row.sourceLineId,
vendorId: row.vendorId,
itemId: row.itemId,
receivedQuantity: row.quantityToCheck,
receivedQuantity: row.quantity,
receiveDate: row.recordTime,
name: row.sourceDocCode + ' 来料检验单'
})