60 lines
1.5 KiB
SQL
60 lines
1.5 KiB
SQL
WITH
|
|
lq AS MATERIALIZED (
|
|
SELECT
|
|
lq.*
|
|
,substring(lq.part,1,8) mold
|
|
FROM
|
|
pricequote.live_quotes lq
|
|
)
|
|
,lqg AS (
|
|
SELECT
|
|
lq.*
|
|
,m.part_group
|
|
,(pricing->'guidance'->'finalPrice'->>'Price')::numeric guidance
|
|
,pricing->'guidance'->'finalPrice'->>'Reason' reason
|
|
,jsonb_pretty(pricing) pricing
|
|
FROM
|
|
lq
|
|
JOIN LATERAL rlarp.guidance_r1(
|
|
rlarp.get_guidance_dseg(lq.billto,lq.shipto,substring(lq.part,1,8),lq.v1ds,lq.units_each,2024)
|
|
) pricing ON TRUE
|
|
LEFT OUTER JOIN rlarp.molds m ON
|
|
m.stlc = lq.mold
|
|
WHERE
|
|
lq.qstat ~ 'Submitted'
|
|
)
|
|
,hist AS (
|
|
SELECT
|
|
g.*
|
|
,gset.chan
|
|
--,gset.mold moldh
|
|
,gset.v1ds v1dsh
|
|
,gset.cust
|
|
,gset.vers
|
|
,je.k
|
|
,seas.*
|
|
FROM
|
|
lqg g
|
|
LEFT OUTER JOIN rlarp.price_pool_dev p ON
|
|
p.gset @> jsonb_build_object('mold',g.part_group)
|
|
AND p.gset ? 'cust'
|
|
AND p.gset ? 'v1ds'
|
|
LEFT JOIN LATERAL jsonb_to_record(p.gset) AS gset(
|
|
chan text
|
|
,mold text
|
|
,v1ds text
|
|
,v0ds text
|
|
,cust text
|
|
,vers text
|
|
--,nurs text
|
|
--,ghse text
|
|
) ON TRUE
|
|
LEFT JOIN LATERAL jsonb_each(p.season) je(k,v) on true
|
|
LEFT JOIN Lateral jsonb_to_record(je.v) as seas(
|
|
units numeric
|
|
,sales_usd numeric
|
|
,price_usd numeric
|
|
) ON TRUE
|
|
)
|
|
SELECT * FROM hist WHERE qid = 73059
|