diff --git a/src/components/outbound/ShipmentManagement/ShipmentDetail.tsx b/src/components/outbound/ShipmentManagement/ShipmentDetail.tsx index a412657f..b4a61b11 100644 --- a/src/components/outbound/ShipmentManagement/ShipmentDetail.tsx +++ b/src/components/outbound/ShipmentManagement/ShipmentDetail.tsx @@ -301,7 +301,7 @@ export function ShipmentDetail({ id }: ShipmentDetailProps) { 삭제 )} - {STATUS_TRANSITIONS[detail.status] && ( + {STATUS_TRANSITIONS[detail.status] && detail.canShip && ( )} + {STATUS_TRANSITIONS[detail.status] && !detail.canShip && ( + + )} ); }, [detail, canDelete, handleOpenStatusDialog]);