summaryrefslogtreecommitdiff
path: root/lib/techsales-rfq/service.ts
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-06-27 01:16:20 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-06-27 01:16:20 +0000
commite9897d416b3e7327bbd4d4aef887eee37751ae82 (patch)
treebd20ce6eadf9b21755bd7425492d2d31c7700a0e /lib/techsales-rfq/service.ts
parent3bf1952c1dad9d479bb8b22031b06a7434d37c37 (diff)
(대표님) 20250627 오전 10시 작업사항
Diffstat (limited to 'lib/techsales-rfq/service.ts')
-rw-r--r--lib/techsales-rfq/service.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/techsales-rfq/service.ts b/lib/techsales-rfq/service.ts
index ffa29acd..e658747b 100644
--- a/lib/techsales-rfq/service.ts
+++ b/lib/techsales-rfq/service.ts
@@ -531,7 +531,7 @@ export async function sendTechSalesRfqToVendors(input: {
const vendorQuotations = await db.query.techSalesVendorQuotations.findMany({
where: and(
eq(techSalesVendorQuotations.rfqId, input.rfqId),
- sql`${techSalesVendorQuotations.vendorId} IN (${input.vendorIds.join(',')})`
+ inArray(techSalesVendorQuotations.vendorId, input.vendorIds)
),
columns: {
id: true,