Compare commits

...

2 Commits

1 changed files with 8 additions and 10 deletions

View File

@ -153,7 +153,7 @@ FROM
--the item master could have multiple since its defined per plant but will take the first item for now
AND up.pckg ? (i.uomp->>0)
AND COALESCE(i.BRANDING,'') = up.branding
AND COALESCE(i.ACCS,'') = up.ACCS
AND COALESCE(i.ACCS_PS,'') = up.ACCS
AND COALESCE(i.SUFFIX,'') = up.suffix
AND APLNT <> 'I'
)
@ -213,17 +213,17 @@ WHERE
SELECT
plist
,stlc
,string_agg(DISTINCT coltier ,', ') FILTER (WHERE clist IS NOT NULL) coltier
,string_agg(DISTINCT branding,', ') branding
,string_agg(DISTINCT coltier ,',') FILTER (WHERE clist IS NOT NULL) coltier
,string_agg(DISTINCT branding,',') branding
-------replace blank with 'none'--------------
,regexp_replace(string_agg(DISTINCT accs ,', '),'^,','none,','g') accs
,string_agg(DISTINCT suffix ,', ') suffix
,regexp_replace(string_agg(DISTINCT accs ,','),'^,','','g') accs
,regexp_replace(string_agg(DISTINCT suffix ,','),'^,','','g') suffix
,pckg
,col
,vol_uom
,voL_qty
,nm
,dm
,max(nm) nm
,max(dm) dm
,price
-----convert json array to a plain text representation as well as remove nulls------
,regexp_replace(jsonb_arr_aggcd(clist)::text,'["\[\]]|null, ','','g') clist
@ -236,13 +236,11 @@ WHERE
,col
,vol_uom
,vol_qty
,nm
,dm
,price
)
,seq_levels AS (
SELECT
plist||'.'||stlc||'.'||pckg||'.'||col||'.'||to_char(row_number() OVER (PARTITION BY plist, stlc, col ORDER BY price ASC),'FM00') lookup
plist||'.'||stlc||'.'||pckg||'.'||col||'.'||to_char(row_number() OVER (PARTITION BY plist, stlc, pckg, col ORDER BY price ASC),'FM00') lookup
,plist
,stlc
,coltier