diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-11-21 10:16:21 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-11-21 10:16:21 +0700 |
| commit | 570b867dec4832c201e70ae8a756db70d6af4ac4 (patch) | |
| tree | b6ee17b9ced2c2b6b0e1e06373824422eac87f45 /src/app/api/stock-opname/route.tsx | |
| parent | 1203dca98a712d5c0fcb8af635beea68f9ec6559 (diff) | |
Fix stock opname and product search where
Diffstat (limited to 'src/app/api/stock-opname/route.tsx')
| -rw-r--r-- | src/app/api/stock-opname/route.tsx | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/app/api/stock-opname/route.tsx b/src/app/api/stock-opname/route.tsx index 3aa9d06..ef4e1d5 100644 --- a/src/app/api/stock-opname/route.tsx +++ b/src/app/api/stock-opname/route.tsx @@ -1,5 +1,5 @@ import { StockOpnameLocationRes, StockOpnameRequest } from "@/common/types/stockOpname"; -import { Team } from "@prisma/client"; +import { Prisma, Team } from "@prisma/client"; import { NextRequest, NextResponse } from "next/server"; import { prisma } from "prisma/client"; import _ from "lodash" @@ -23,15 +23,16 @@ export async function GET(request: NextRequest) { return NextResponse.json({ error: 'Bad Request. Missing companyId' }, { status: 400 }) } - const where = { + const where: Prisma.ProductWhereInput = { AND: { stockOpnames: { some: {} }, companyId: parseInt(companyId), isDifferent: show ? (show == 'diff' ? true : false) : undefined, OR: [ - { name: { contains: search ?? '' } }, - { itemCode: { contains: search ?? '' } }, - { barcode: { contains: search ?? '' } }, + { name: { mode: 'insensitive', contains: search ?? '' } }, + { itemCode: { mode: 'insensitive', contains: search ?? '' } }, + { barcode: { mode: 'insensitive', contains: search ?? '' } }, + { stockOpnames: { some: { location: { name: { mode: 'insensitive', contains: search ?? '' } } } } }, ] } } |
