feat: restore available qty color and add BOM shortage analysis (kitting) for outbound

This commit is contained in:
DXC
2026-03-19 09:33:15 +08:00
parent e6dafc7775
commit de887136a3
2 changed files with 101 additions and 5 deletions

View File

@ -235,7 +235,7 @@
<el-table-column v-if="columns.available.visible" prop="availableCount" label="可用数" min-width="100" align="center" sortable="custom">
<template #default="{ row }">
<span>{{ row.availableCount }}</span>
<span :style="{ fontWeight: 'bold', color: row.availableCount > 0 ? '#409EFF' : 'inherit' }">{{ row.availableCount }}</span>
</template>
</el-table-column>