fix: [shipment] 출하 상세 shipping 상태에서도 수정 허용

This commit is contained in:
2026-03-18 23:16:56 +09:00
parent f8ca5f89c4
commit 20d1ce3146

View File

@@ -235,7 +235,7 @@ export function ShipmentDetail({ id }: ShipmentDetailProps) {
</div>
);
const canEdit = detail ? (detail.status === 'scheduled' || detail.status === 'ready') : false;
const canEdit = detail ? (detail.status === 'scheduled' || detail.status === 'ready' || detail.status === 'shipping') : false;
// 제품 부품 테이블 렌더링
const renderPartsTable = (parts: ProductPart[]) => (