diff --git a/src/components/quotes/LocationDetailPanel.tsx b/src/components/quotes/LocationDetailPanel.tsx index 1cdd71af..2cfa271a 100644 --- a/src/components/quotes/LocationDetailPanel.tsx +++ b/src/components/quotes/LocationDetailPanel.tsx @@ -480,18 +480,28 @@ export function LocationDetailPanel({ {/* 3행: 제작사이즈, 산출중량, 산출면적, 수량 */}
- {location.manufactureWidth || location.openWidth + 280}X{location.manufactureHeight || location.openHeight + 280} + {location.bomResult?.variables?.W1 || location.manufactureWidth || "-"} + X + {location.bomResult?.variables?.H1 || location.manufactureHeight || "-"}
kg
+ 산출중량 ++ {location.bomResult?.variables?.K + ? `${Number(location.bomResult.variables.K).toFixed(2)} kg` + : "-"} +
m²
+ 산출면적 ++ {location.bomResult?.variables?.M + ? `${Number(location.bomResult.variables.M).toFixed(2)} m²` + : "-"} +