Compare commits

..

No commits in common. "20cf93d6726ee3c1e09349d74e0ece676dd0702f" and "9a590793ceaae49624c9f363a777081029b8385d" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -83,7 +83,7 @@ async function getSuitableList(request: NextRequest): Promise<NextResponse> {
ON msm.id = details.main_id
WHERE 1=1
--roofMtCd AND msm.roof_mt_cd IN (:roofMtCd)
--productName AND msm.product_name LIKE N'%:productName%'
--productName AND msm.product_name LIKE '%:productName%'
ORDER BY msm.product_name
OFFSET (@P1 - 1) * @P2 ROWS
FETCH NEXT @P2 ROWS ONLY;

View File

@ -50,7 +50,7 @@ async function getSuitablePick(request: NextRequest): Promise<NextResponse> {
ON msm.id = details.main_id
WHERE 1=1
--roofMtCd AND msm.roof_mt_cd IN (:roofMtCd)
--productName AND msm.product_name LIKE N'%:productName%'
--productName AND msm.product_name LIKE '%:productName%'
;
`