diff --git a/src/components/quotes/LocationDetailPanel.tsx b/src/components/quotes/LocationDetailPanel.tsx index d7045f51..5f7a0ef8 100644 --- a/src/components/quotes/LocationDetailPanel.tsx +++ b/src/components/quotes/LocationDetailPanel.tsx @@ -433,16 +433,16 @@ export function LocationDetailPanel({
산출중량

- {location.bomResult?.variables?.K - ? `${Number(location.bomResult.variables.K).toFixed(2)} kg` + {(location.bomResult?.variables?.K ?? location.bomResult?.variables?.WEIGHT) + ? `${Number(location.bomResult?.variables?.K ?? location.bomResult?.variables?.WEIGHT).toFixed(2)} kg` : "-"}

산출면적

- {location.bomResult?.variables?.M - ? `${Number(location.bomResult.variables.M).toFixed(2)} m²` + {(location.bomResult?.variables?.M ?? location.bomResult?.variables?.AREA) + ? `${Number(location.bomResult?.variables?.M ?? location.bomResult?.variables?.AREA).toFixed(2)} m²` : "-"}

diff --git a/src/components/quotes/QuoteSummaryPanel.tsx b/src/components/quotes/QuoteSummaryPanel.tsx index f286f4ac..e3d56137 100644 --- a/src/components/quotes/QuoteSummaryPanel.tsx +++ b/src/components/quotes/QuoteSummaryPanel.tsx @@ -154,7 +154,7 @@ export function QuoteSummaryPanel({

개소를 추가해주세요

) : ( -
+
{locationTotals.map((loc) => (