Merge remote-tracking branch 'origin/master'

This commit is contained in:
M_Kececi
2026-03-31 14:59:41 +03:00
parent 4a67f0f444
commit 1b204bb8ed

View File

@@ -1,7 +1,7 @@
package queries
const GetProductSecondColors = `
SELECT DISTINCT
SELECT
Product.ProductCode,
ISNULL(prItemVariant.ColorCode, '') AS ColorCode,
ISNULL(prItemVariant.ItemDim2Code, '') AS ItemDim2Code,
@@ -20,5 +20,5 @@ GROUP BY
prItemVariant.ItemDim2Code,
prItemVariant.ColorCode,
ColorDesc.ColorDescription
ORDER BY prItemVariant.ItemDim2Code
ORDER BY ItemDim2Code
`