forecast_api/route_sql/scale_pd.sql

256 lines
7.1 KiB
MySQL
Raw Normal View History

2019-03-06 09:19:50 -05:00
WITH
target AS (select target_increment incr)
2019-03-06 09:19:50 -05:00
,basemix AS (
2020-02-13 13:18:55 -05:00
SELECT
fspr
,plnt ---master data
2019-04-03 12:17:54 -04:00
,promo --history date mix
2019-03-06 09:19:50 -05:00
,terms
2020-02-13 13:18:55 -05:00
,bill_cust_descr --history cust mix
,ship_cust_descr --history cust mix
,dsm
,quota_rep_descr --master data
,director
,billto_group --master data
,shipto_group
2019-03-06 09:19:50 -05:00
,chan --master data
2020-02-13 13:18:55 -05:00
,chansub
,chan_retail
,part
,part_descr
,part_group
,branding
,majg_descr
,ming_descr
,majs_descr
,mins_descr
,segm
2019-03-06 09:19:50 -05:00
,fs_line --master data
,r_currency --history cust mix
,r_rate --master data
,c_currency --master data
,c_rate --master data
2020-02-13 13:18:55 -05:00
,sum(coalesce(units,0)) units --history value
,sum(coalesce(value_loc,0)) value_loc --history value
,sum(coalesce(value_usd,0)) value_usd --0
,sum(coalesce(cost_loc,0)) cost_loc --history part mix
,sum(coalesce(cost_usd,0)) cost_usd
2019-03-06 09:19:50 -05:00
,calc_status --0
,flag --0
2020-02-13 13:18:55 -05:00
,order_date --history date mix
2019-03-06 09:19:50 -05:00
,order_month
2020-02-13 13:18:55 -05:00
,order_season
,request_date --history date mix
2019-03-06 09:19:50 -05:00
,request_month
2020-02-13 13:18:55 -05:00
,request_season
,ship_date --history date mix
,ship_month
,ship_season
2019-03-06 09:19:50 -05:00
FROM
2020-02-13 13:18:55 -05:00
rlarp.osm_pool
2019-03-06 09:19:50 -05:00
WHERE
-----------------scenario----------------------------
where_clause
2019-03-06 09:19:50 -05:00
-----------------additional params-------------------
2020-02-13 13:18:55 -05:00
AND CASE (SELECT flag FROM flagv)
WHEN 'scale all' THEN true
WHEN 'scale copy' THEN iter = 'copy'
WHEN 'scale new part' THEN module = 'new basket'
END
2019-03-06 09:19:50 -05:00
AND calc_status||flag <> 'CLOSEDREMAINDER' --exclude short ships when building order adjustments
2020-02-13 13:18:55 -05:00
AND order_date <= ship_date
2019-03-06 09:19:50 -05:00
GROUP BY
2020-02-13 13:18:55 -05:00
fspr
,plnt ---master data
,promo --history date mix
2019-03-06 09:19:50 -05:00
,terms
2020-02-13 13:18:55 -05:00
,bill_cust_descr --history cust mix
,ship_cust_descr --history cust mix
,dsm
,quota_rep_descr --master data
,director
,billto_group --master data
,shipto_group
2019-03-06 09:19:50 -05:00
,chan --master data
2020-02-13 13:18:55 -05:00
,chansub
,chan_retail
,part
,part_descr
,part_group
,branding
,majg_descr
,ming_descr
,majs_descr
,mins_descr
,segm
2019-03-06 09:19:50 -05:00
,fs_line --master data
,r_currency --history cust mix
,r_rate --master data
,c_currency --master data
,c_rate --master data
,calc_status --0
,flag --0
2020-02-13 13:18:55 -05:00
,order_date --history date mix
2019-03-06 09:19:50 -05:00
,order_month
2020-02-13 13:18:55 -05:00
,order_season
,request_date --history date mix
2019-03-06 09:19:50 -05:00
,request_month
2020-02-13 13:18:55 -05:00
,request_season
,ship_date --history date mix
,ship_month
,ship_season
2019-03-06 09:19:50 -05:00
)
,scale AS (
SELECT
(SELECT incr::numeric FROM target) incr
2020-02-13 13:19:06 -05:00
,(SELECT sum(value_loc * r_rate) FROM basemix) base
,CASE WHEN (SELECT sum(value_loc * r_rate) FROM basemix) = 0 THEN
2019-04-03 03:00:38 -04:00
0
ELSE
2020-02-13 13:19:06 -05:00
(SELECT incr::numeric FROM target)/(SELECT sum(value_loc * r_rate) FROM basemix)
2019-04-03 03:00:38 -04:00
END factor
2020-02-13 13:19:06 -05:00
,CASE WHEN (SELECT sum(value_loc * r_rate) FROM basemix) = 0 THEN
CASE WHEN ((SELECT incr::numeric FROM target) - (SELECT sum(value_loc * r_rate) FROM basemix)) <> 0 THEN
2019-04-03 03:00:38 -04:00
--if the base value is -0- but the target value hasn't been achieved, derive a price to apply
2020-02-13 13:19:06 -05:00
((SELECT incr::numeric FROM target) - (SELECT sum(value_loc * r_rate) FROM basemix))/(SELECT sum(units) FROM basemix)
2019-04-03 03:00:38 -04:00
ELSE
0
END
ELSE
0
END mod_price
2019-03-06 09:19:50 -05:00
)
2020-02-13 13:20:33 -05:00
,log AS (
INSERT INTO rlarp.osm_log(doc) SELECT $$replace_iterdef$$::jsonb doc RETURNING *
)
2019-03-06 09:19:50 -05:00
,final AS (
2020-02-13 13:20:33 -05:00
SELECT
fspr
,plnt ---master data
,promo --history date mix
,terms
,bill_cust_descr --history cust mix
,ship_cust_descr --history cust mix
,dsm
,quota_rep_descr --master data
,director
,billto_group --master data
,shipto_group
,chan --master data
,chansub
,chan_retail
,part
,part_descr
,part_group
,branding
,majg_descr
,ming_descr
,majs_descr
,mins_descr
,segm
,fs_line --master data
,r_currency --history cust mix
,r_rate --master data
,c_currency --master data
,c_rate --master data
,0::numeric units
,(CASE WHEN s.factor = 0 THEN b.units * s.mod_price/b.r_rate ELSE b.value_loc*s.factor END)::numeric value_loc
,(CASE WHEN s.factor = 0 THEN b.units * s.mod_price ELSE b.value_usd*s.factor END)::numeric value_usd
,0::numeric cost_loc
,0::numeric cost_usd
,calc_status --0
,flag --0
,order_date --history date mix
,order_month
,order_season
,request_date --history date mix
,request_month
,request_season
,ship_date --history date mix
,ship_month
,ship_season
,'replace_version' "version"
,'replace_source'||' price' iter
,log.id
,log.doc->>'comment' "comment"
,log.doc->>'type' module
FROM
volume b
CROSS JOIN pscale s
CROSS JOIN log
WHERE
s.factor <> 0 or s.mod_price <> 0
2019-03-06 09:19:50 -05:00
)
2019-03-06 09:21:15 -05:00
--select sum(value_usd), count(*) from final
2019-03-06 09:19:50 -05:00
, ins AS (
INSERT INTO rlarp.osm_fcpool SELECT * FROM final RETURNING *
)
,insagg AS (
SELECT
bill_cust_descr
,billto_group
,ship_cust_descr
,shipto_group
,quota_rep_descr
,director_descr
,segm
,mod_chan
,mod_chansub
,majg_descr
,ming_descr
,majs_descr
,mins_descr
,brand
,part_family
,part_group
,branding
,color
,part_descr
,order_season
,order_month
,ship_season
,ship_month
,request_season
,request_month
,promo
,version
,iter
,sum(value_loc) value_loc
,sum(value_usd) value_usd
,sum(cost_loc) cost_loc
,sum(cost_usd) cost_usd
,sum(units) units
FROM
ins
GROUP BY
bill_cust_descr
,billto_group
,ship_cust_descr
,shipto_group
,quota_rep_descr
,director_descr
,segm
,mod_chan
,mod_chansub
,majg_descr
,ming_descr
,majs_descr
,mins_descr
,brand
,part_family
,part_group
,branding
,color
,part_descr
,order_season
,order_month
,ship_season
,ship_month
,request_season
,request_month
,promo
,version
,iter
)
2019-04-03 15:07:49 -04:00
SELECT json_agg(row_to_json(insagg)) x from insagg