fix(inventory): 修复 BOM 编辑回显显示 ID 及出库齐套分析库存为 0 的问题

This commit is contained in:
DXC
2026-04-20 18:30:51 +08:00
parent 59a6a10803
commit 466e94c4dd
2 changed files with 31 additions and 5 deletions

View File

@ -498,6 +498,7 @@ const openManualSelect = async () => {
warehouse_location: i.warehouse_location || i.warehouse_loc || i.full_path || '',
uniqueKey: `${i.type}_${i.id}`,
available_quantity: parseFloat(i.available_quantity) || 0,
availableCount: parseFloat(i.available_quantity) || 0,
export_quantity: 1
}))
} catch (e) {