summaryrefslogtreecommitdiff
path: root/lib/bidding/pre-quote/table/bidding-pre-quote-content.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bidding/pre-quote/table/bidding-pre-quote-content.tsx')
-rw-r--r--lib/bidding/pre-quote/table/bidding-pre-quote-content.tsx8
1 files changed, 1 insertions, 7 deletions
diff --git a/lib/bidding/pre-quote/table/bidding-pre-quote-content.tsx b/lib/bidding/pre-quote/table/bidding-pre-quote-content.tsx
index 692d12ea..91b80bd3 100644
--- a/lib/bidding/pre-quote/table/bidding-pre-quote-content.tsx
+++ b/lib/bidding/pre-quote/table/bidding-pre-quote-content.tsx
@@ -2,7 +2,7 @@
import * as React from 'react'
import { Bidding } from '@/db/schema'
-import { QuotationDetails, QuotationVendor } from '@/lib/bidding/detail/service'
+import { QuotationDetails } from '@/lib/bidding/detail/service'
import { getBiddingCompanies } from '../service'
import { BiddingPreQuoteVendorTableContent } from './bidding-pre-quote-vendor-table'
@@ -10,7 +10,6 @@ import { BiddingPreQuoteVendorTableContent } from './bidding-pre-quote-vendor-ta
interface BiddingPreQuoteContentProps {
bidding: Bidding
quotationDetails: QuotationDetails | null
- quotationVendors: QuotationVendor[]
biddingCompanies: any[]
prItems: any[]
}
@@ -18,7 +17,6 @@ interface BiddingPreQuoteContentProps {
export function BiddingPreQuoteContent({
bidding,
quotationDetails,
- quotationVendors,
biddingCompanies: initialBiddingCompanies,
prItems
}: BiddingPreQuoteContentProps) {
@@ -42,15 +40,11 @@ export function BiddingPreQuoteContent({
<BiddingPreQuoteVendorTableContent
biddingId={bidding.id}
bidding={bidding}
- vendors={quotationVendors}
biddingCompanies={biddingCompanies}
onRefresh={handleRefresh}
onOpenItemsDialog={() => {}}
onOpenTargetPriceDialog={() => {}}
onOpenSelectionReasonDialog={() => {}}
- onEdit={undefined}
- onDelete={undefined}
- onSelectWinner={undefined}
/>
</div>
)