fix: [shipment] 출하 상세 shipping 상태에서도 수정 허용
This commit is contained in:
@@ -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[]) => (
|
||||
|
||||
Reference in New Issue
Block a user