vault backup: 2023-11-10 10:51:46

This commit is contained in:
Paul Trowbridge 2023-11-10 10:51:46 -05:00
parent 8a746aa42c
commit e3c1367e51
2 changed files with 19 additions and 19 deletions

View File

@ -118,40 +118,40 @@ export function apply_guidance(doc: any) {
//} //}
doc.targetPrice = doc.v1tp ?? doc.v0tp; const targetPrice = doc.v1tp ?? doc.v0tp;
const earlyPrice = doc.hist.cust.early_price;
let anchorPrice = null;
let anchorSource = null;
let bridgePremium = doc.bridgePremium ?? 1.00000;
// Determine the anchor price and source // Determine the anchor price and source
if (doc.hist.cust?.early_price !== undefined ) { if (earlyPrice) {
if (doc.hist.cust.relevance !== 'customer exact') { // translate alternate product history to current product quoted
// translate alternate product history to current product quoted anchorPrice = Number((earlyPrice * bridgePremium).toFixed(5));
doc.anchorPrice = Number((doc.hist.cust.early_price * doc.bridgePremium).toFixed(5)); if (targetPrice < anchorPrice) {
if (doc.targetPrice < doc.anchorPrice) { anchorSource = 'Target Price';
doc.anchorPrice = doc.targetPrice; anchorPrice = targetPrice;
doc.anchorSource = 'Target Price'
} else {
doc.anchorSource = doc.hist.cust.early_season + ' Similar (' + doc.hist.cust.ds + ') Customer Price ' + doc.hist.cust.early_price + ' x ' + doc.bridgePremium + ' = ' + doc.anchorPrice;
}
} else { } else {
doc.anchorPrice = doc.hist.cust.early_price; anchorSource = doc.hist.cust.early_season + ' Similar (' + doc.hist.cust.ds + ') Customer Price ' + earlyPrice + ' x ' + doc.bridgePremium + ' = ' + anchorPrice;
doc.anchorSource = doc.hist.cust.early_season + ' Customer Price ' + doc.hist.cust.early_price;
} }
} else { } else {
doc.anchorPrice = doc.targetPrice; anchorPrice = doc.targetPrice;
doc.anchorSource = 'Target Price'; anchorSource = 'Target Price';
} }
doc.anchorSource = anchorSource;
const inflation = Math.max(...Object.keys(doc.iidx).map(Number)); const inflation = Math.max(...Object.keys(doc.iidx).map(Number));
const inflationFactor = doc.iidx[inflation] + 1; const inflationFactor = doc.iidx[inflation] + 1;
doc.inflationFactor = inflationFactor; doc.inflationFactor = inflationFactor;
var calcPrice = doc.anchorPrice * doc.inflationFactor; var calcPrice = anchorPrice * doc.inflationFactor;
calcPrice = parseFloat(calcPrice.toFixed(5)); calcPrice = parseFloat(calcPrice.toFixed(5));
let finalReason = ""; let finalReason = "";
if (calcPrice >= doc.list) { if (calcPrice >= doc.list) {
doc.calcCeiling = "Cap At List"; doc.calcCeiling = "Cap At List";
doc.finalPrice = doc.list; doc.finalPrice = doc.list;
finalReason = `${doc.anchorSource} x ${inflationFactor} = ${calcPrice} but cap at list ${doc.list}`; finalReason = `${anchorSource} x ${inflationFactor} = ${calcPrice} but cap at list ${doc.list}`;
} else { } else {
doc.finalPrice = calcPrice; doc.finalPrice = calcPrice;
finalReason = `${doc.anchorSource} x ${inflationFactor} = ${calcPrice}`; finalReason = `${anchorSource} x ${inflationFactor} = ${calcPrice}`;
} }
doc.finalReason = finalReason; doc.finalReason = finalReason;

View File

@ -133,7 +133,7 @@ BEGIN
--RAISE NOTICE 'list: %', jsonb_pretty(_list); --RAISE NOTICE 'list: %', jsonb_pretty(_list);
----------------get premium for quote hist gap-------------- ----------------get premium for quote hist gap--------------
SELECT coalesce(rlarp.get_premium(_stlc, _seas, (SELECT xchan FROM _chx WHERE chan = _chan),_v1ds, ((_rslt->'mostRelevantCustomerPriceInfo')->'source')->>'v1ds'),'{}'::jsonb) INTO _prem; SELECT coalesce(rlarp.get_premium(_stlc, _seas, (SELECT xchan FROM _chx WHERE chan = _chan),_rslt->'hist'->'cust'->>'ds', _v1ds),'{}'::jsonb) INTO _prem;
_rslt := _rslt||_prem; _rslt := _rslt||_prem;
--RAISE NOTICE 'list: %', jsonb_pretty(_list); --RAISE NOTICE 'list: %', jsonb_pretty(_list);