Compare commits
No commits in common. "7596038b545c65a5f14e1ca2fb703af7dc18a001" and "a8d83cc042e2f35fd7ef105b9dac85f8cf689093" have entirely different histories.
7596038b54
...
a8d83cc042
@ -10,41 +10,38 @@
|
|||||||
|
|
||||||
|
|
||||||
SELECT
|
SELECT
|
||||||
*, ui_json->'data'
|
ui_json->'data'
|
||||||
FROM pricequote.single_price_call(
|
FROM pricequote.single_price_call(
|
||||||
'BFGS0001',
|
'GRIF0001',
|
||||||
'SPRI0019',
|
'GRIF0001',
|
||||||
'INT12040G18C100',
|
'XNS0T1G3G18B096',
|
||||||
'v1:B..CSE..',
|
'v1:B..PLT..',
|
||||||
7037
|
9600
|
||||||
) f;
|
) f;
|
||||||
|
|
||||||
|
--
|
||||||
SELECT
|
-- SELECT
|
||||||
*, ui_json->'data'
|
-- ui_json
|
||||||
FROM pricequote.single_price_call(
|
-- FROM pricequote.single_price_call(
|
||||||
'BELL0039',
|
-- 'BFGS0001',
|
||||||
'BELL0039',
|
-- 'BOBS0002',
|
||||||
'XNS0T1G3X19B096PZBND',
|
-- 'HTI10754B12B024LXB04',
|
||||||
'v1:L.P.PLT..',
|
-- 'v1:L.L.PLT..',
|
||||||
82420
|
-- 172000
|
||||||
) f;
|
-- ) f;
|
||||||
|
--
|
||||||
SELECT * FROM rlarp.cust WHERE code = 'PACK0009'
|
|
||||||
|
|
||||||
-- SELECT * FROM pricequote.lastpricedetail l WHERE customer = 'HYBELS' AND l.partgroup = 'HZP3E100';
|
-- SELECT * FROM pricequote.lastpricedetail l WHERE customer = 'HYBELS' AND l.partgroup = 'HZP3E100';
|
||||||
--
|
--
|
||||||
|
|
||||||
SELECT
|
SELECT
|
||||||
q.billto, q.shipto, q.part, q.v1ds, q.units_each, pc.tprice, pc.tmath
|
pc.expl, pc.hist
|
||||||
FROM
|
FROM
|
||||||
pricequote.live_quotes q
|
pricequote.live_quotes
|
||||||
LEFT JOIN LATERAL pricequote.single_price_call(
|
LEFT JOIN LATERAL pricequote.single_price_call(
|
||||||
billto, shipto, part, v1ds, units_each
|
billto, shipto, part, v1ds, units_each
|
||||||
) pc ON TRUE
|
) pc ON TRUE
|
||||||
WHERE
|
WHERE
|
||||||
qid = 113761
|
qid = 113800
|
||||||
-- AND qrn = 4;
|
AND qrn = 4;
|
||||||
|
|
||||||
create table pricequote.target_prices_base as (
|
create table pricequote.target_prices_base as (
|
||||||
with
|
with
|
||||||
|
@ -356,14 +356,14 @@ BEGIN
|
|||||||
q2.last_price_norm,
|
q2.last_price_norm,
|
||||||
q2.listprice_eff,
|
q2.listprice_eff,
|
||||||
q2.last_date,
|
q2.last_date,
|
||||||
1.0, 1.0, 1.0
|
.95, 1.0, 1.0
|
||||||
) g ON TRUE
|
) g ON TRUE
|
||||||
JOIN LATERAL pricequote.approval_logic(
|
JOIN LATERAL pricequote.approval_logic(
|
||||||
q2.tprice,
|
q2.tprice,
|
||||||
q2.last_price_norm,
|
q2.last_price_norm,
|
||||||
q2.listprice_eff,
|
q2.listprice_eff,
|
||||||
q2.last_date,
|
q2.last_date,
|
||||||
1.0, 1.0, 1.0
|
.95, 1.0, 1.0
|
||||||
) a ON TRUE
|
) a ON TRUE
|
||||||
) s
|
) s
|
||||||
WHERE q.ctid = s.ctid;
|
WHERE q.ctid = s.ctid;
|
||||||
|
@ -105,9 +105,6 @@ lq AS MATERIALIZED (
|
|||||||
-- ,jsonb_pretty(pricing) pricing
|
-- ,jsonb_pretty(pricing) pricing
|
||||||
,p.guidance_price
|
,p.guidance_price
|
||||||
,p.guidance_reason
|
,p.guidance_reason
|
||||||
,p.approval_price
|
|
||||||
,p.approval_reason
|
|
||||||
,p.tprice guidance_target
|
|
||||||
,jsonb_pretty(p.ui_json->'data') expl
|
,jsonb_pretty(p.ui_json->'data') expl
|
||||||
FROM
|
FROM
|
||||||
lq
|
lq
|
||||||
@ -178,4 +175,4 @@ lq AS MATERIALIZED (
|
|||||||
WHERE
|
WHERE
|
||||||
COALESCE(g.bestprice,1) = 1
|
COALESCE(g.bestprice,1) = 1
|
||||||
)
|
)
|
||||||
SELECT * FROM hist --LIMIT 1000--WHERE qid = 108655
|
SELECT * FROM hist --WHERE qid = 108655
|
||||||
|
Loading…
Reference in New Issue
Block a user