diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-12-04 09:04:09 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-12-04 09:04:09 +0000 |
| commit | 25749225689c3934bc10ad1e8285e13020b61282 (patch) | |
| tree | 0c96af8f89b08715589a7ec6d2b19e025215b98f /lib/bidding/selection/vendor-selection-table.tsx | |
| parent | 0f3954bf57e65caef7b7dd14ea5fccb63fdb2bef (diff) | |
(최겸)구매 입찰, 계약 수정
Diffstat (limited to 'lib/bidding/selection/vendor-selection-table.tsx')
| -rw-r--r-- | lib/bidding/selection/vendor-selection-table.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/bidding/selection/vendor-selection-table.tsx b/lib/bidding/selection/vendor-selection-table.tsx index 8570b5b6..40f13ec1 100644 --- a/lib/bidding/selection/vendor-selection-table.tsx +++ b/lib/bidding/selection/vendor-selection-table.tsx @@ -10,9 +10,10 @@ interface VendorSelectionTableProps { biddingId: number bidding: Bidding onRefresh: () => void + readOnly?: boolean } -export function VendorSelectionTable({ biddingId, bidding, onRefresh }: VendorSelectionTableProps) { +export function VendorSelectionTable({ biddingId, bidding, onRefresh, readOnly = false }: VendorSelectionTableProps) { const [vendors, setVendors] = React.useState<any[]>([]) const [loading, setLoading] = React.useState(true) @@ -59,6 +60,7 @@ export function VendorSelectionTable({ biddingId, bidding, onRefresh }: VendorSe vendors={vendors} onRefresh={onRefresh} onOpenSelectionReasonDialog={() => {}} + readOnly={readOnly} /> </CardContent> </Card> |
