@@ -315,7 +315,7 @@ export function LocationDetailPanel({
value={location.floor}
onChange={(e) => handleFieldChange("floor", e.target.value)}
disabled={disabled}
- className="h-8 text-sm"
+ className="h-8 text-sm border border-gray-300"
/>
@@ -353,7 +353,7 @@ export function LocationDetailPanel({
value={location.openHeight}
onChange={(value) => handleFieldChange("openHeight", value ?? 0)}
disabled={disabled}
- className="h-8 text-sm"
+ className="h-8 text-sm border border-gray-300"
/>
@@ -372,7 +372,7 @@ export function LocationDetailPanel({
}}
disabled={disabled}
>
-
+
@@ -398,7 +398,7 @@ export function LocationDetailPanel({
onValueChange={(value) => handleFieldChange("guideRailType", value)}
disabled
>
-
+
@@ -419,7 +419,7 @@ export function LocationDetailPanel({
onValueChange={(value) => handleFieldChange("motorPower", value)}
disabled={disabled}
>
-
+
@@ -440,7 +440,7 @@ export function LocationDetailPanel({
onValueChange={(value) => handleFieldChange("controller", value)}
disabled={disabled}
>
-
+
@@ -454,27 +454,28 @@ export function LocationDetailPanel({
-
제작사이즈
-
+ 제작사이즈
+
{String(location.bomResult?.variables?.W1 ?? location.manufactureWidth ?? "-")}
X
{String(location.bomResult?.variables?.H1 ?? location.manufactureHeight ?? "-")}
-
산출중량
-
+ 산출중량
+
{(location.bomResult?.variables?.K ?? location.bomResult?.variables?.WEIGHT)
? `${Number(location.bomResult?.variables?.K ?? location.bomResult?.variables?.WEIGHT).toFixed(2)} kg`
: "-"}
-
산출면적
-
+ 산출면적
+
{(location.bomResult?.variables?.M ?? location.bomResult?.variables?.AREA)
? `${Number(location.bomResult?.variables?.M ?? location.bomResult?.variables?.AREA).toFixed(2)} m²`
: "-"}
@@ -493,7 +494,7 @@ export function LocationDetailPanel({
totalPrice: unitPrice * newQty,
});
}}
- className="h-8 text-sm font-semibold"
+ className="h-8 text-sm font-semibold border border-gray-300"
min={1}
disabled={disabled}
/>
@@ -502,7 +503,7 @@ export function LocationDetailPanel({