Service - Sell Offer Plan: Difference between revisions

From Izara Wiki
Jump to navigation Jump to search
No edit summary
 
(42 intermediate revisions by the same user not shown)
Line 43: Line 43:
</syntaxhighlight>
</syntaxhighlight>


== LogicalResults ==
== LogicalResultsMain ==
[[Standard LogicalResults Per Service|LogicalResultsMain]]


Stores results for any requests to perform logical searches on sell offer data
== LogicalResultsData ==
[[Standard LogicalResults Per Service|LogicalResultsData]]


<syntaxhighlight lang="JavaScript">
== LogicalAwaitingStep ==
{
resultId: xxx // eg: filterMainId for a single logical element
dataId: xxx // one sellofferId
}
</syntaxhighlight>
 
* partition key: resultId
* sort key: dataId
 
== PriceLogical ==
 
Records ProcessLogical requests for pricing based elements, so when pricing flow completes can find results, save into LogicalResults, and send message out for complexFilter service to receive.


<syntaxhighlight lang="JavaScript">
[[NPM module - izara-shared|AwaitingStep]]
{
priceFilterId: "xx",
resultId: "xx",
logicalElement: {}, // needed for logicalTag after priceFilterList completes
timestamp: "xx", //when record created
}
</syntaxhighlight>


* partition key: priceCalcId
== FindDataMain ==
* sort key: resultId
[[Standard FindData Per Service|FindDataMain]]
* links shared priceFilterList records to any number of processLogical resultId requests (probably only comparison and value that differentiate them)
* is temporary, after save into LogicalResults and send OutProcessLogical can delete record so not keep sending OutProcessLogical when other comparison/value requests complete


== PriceFilterList ==
== FindDataAwaitingStep ==
[[NPM module - izara-shared|AwaitingStep]]


Records requests that filter sellOfferPlanIds according to pricing values
== FindDataSortedRequest ==
 
[[Standard FindData Per Service|FindDataSortedRequest]]
<syntaxhighlight lang="JavaScript">
{
priceFilterId: "xx",
status: "xx" // "processing"|"complete"
expiryTime: "xx",
}
</syntaxhighlight>
 
* partition key: priceFilterId
* sort key: none
* priceFilterId comes from a hash of deliverToLocationIds / orderQuantity / paymentMethodIds / deliveryMethodIds
 
== PriceFilterSellOfferPlanPending ==
 
SellOfferPlanIds for one PriceFilterList that has not completed yet
 
<syntaxhighlight lang="JavaScript">
{
priceFilterId: "xx",
SellOfferPlanId: "xx",
}
</syntaxhighlight>
 
* partition key: priceFilterId
* sort key: SellOfferPlanId
 
== PriceFilterSellOfferPlanComplete ==
 
SellOfferPlanIds for one PriceFilterList that has completed calculating price range, all prices found are saved here
 
<syntaxhighlight lang="JavaScript">
{
priceFilterId: "xx",
price: "xx",
SellOfferPlanId: "xx",
priceId: "xx",
}
</syntaxhighlight>
 
* partition key: priceFilterId
* sort key: price
 
== SellOfferPlanPriceRange ==
 
Manages a range of order price calculations for one sellOfferPlanId that include Payment and Delivery method costs, all combinations of the requested deliverToLocationIds, paymentMethodIds, deliveryMethodIds, for the given orderQuantity
 
<syntaxhighlight lang="JavaScript">
{
priceFilterId: "xx",
sellOfferPlanId: "xx",
// (not needed?) deliverToLocationIds: ["xx","yy"], // array of locationIds
// (not needed?) orderQuantity: x,
// (not needed?) paymentMethodIds: ["xx","yy"], // array of paymentMethodIds(strings), empty array means all available paymentMethods
// (not needed?) deliveryMethodIds: ["xx","yy"], // array of deliveryMethodIds(strings), empty array means all available deliveryMethods
status: "xx", // "processing"|"complete"
expiryTime: "xx"
}
</syntaxhighlight>
 
* partition key: priceFilterId
* sort key: sellOfferPlanId
 
== SellOfferPlanPriceRangePricePending ==
 
Is pending calculation for one sellOfferPlan combination of one deliverToLocationId, paymentMethodId, deliveryMethodId, and orderQuantity. Once complete record is removed from this table and inserted into SellOfferPlanPriceRangePriceComplete table
 
<syntaxhighlight lang="JavaScript">
{
priceId: "xx",
paymentIdDeliveryId: "xx"
}
</syntaxhighlight>
 
* partition key: priceId
* sort key: paymentIdDeliveryId
* priceId is {sellOfferPlanId_deliverToLocationId_orderQuantity}
* paymentIdDeliveryId is {sellOfferPlanUserPaymentMethodLinkId_sellOfferPlanDeliveryMethodLinkId}
* could hash partition and sort key into one partition key but though splitting them out might group them a little better, not need to add these fields separately in SellOfferPlanPriceRangePriceComplete records
 
== SellOfferPlanPriceRangePriceComplete ==
 
Is one completed calculation for a sellOfferPlan's combination of one deliverToLocationId, paymentMethodId, deliveryMethodId, and orderQuantity
 
<syntaxhighlight lang="JavaScript">
{
priceId: "xx",
paymentIdDeliveryId: "xx",
price: "xx"
expiryTime: "xx"
}
</syntaxhighlight>
 
* partition key: priceId
* sort key: paymentIdDeliveryId


= Graph database =  
= Graph database =  
Line 195: Line 83:
},
},
currencyId: {
currencyId: {
immutable: true, // all added deliveryMethods must match
immutable: true, // all added deliveryMethods and sellOffers must match},
},
},
},
},
Line 245: Line 133:
addToCalculatedValuePerOrder: {}, // added once per order to the value after calculating delivery method price
addToCalculatedValuePerOrder: {}, // added once per order to the value after calculating delivery method price
addToCalculatedValuePerUnit: {}, // added once per orderQuantity to the value after calculating delivery method price
addToCalculatedValuePerUnit: {}, // added once per orderQuantity to the value after calculating delivery method price
valueType: "xx", // orderQuantity|orderValue|productAttributeId|sellOfferTermId, if set overwrites deliveryMethod defaultValueType
valueType: "xx", // orderQuantity|orderSubtotal|productAttributeId|sellOfferTermId, if set overwrites deliveryMethod defaultValueType
valueId: "xx", // if set overwrites deliveryMethod defaultValueId (used for productAttributeId|sellOfferTermId)
valueId: "xx", // if set overwrites deliveryMethod defaultValueId (used for productAttributeId|sellOfferTermId)
valueLanguageId: {}, // used for productAttributeId|sellOfferTermId, when finding attribute value need to set language to find
accumulateValue: true // default: true, if set to false will find the largest value out of all sellOffers in the order
},
},
}
}
Line 262: Line 152:
</syntaxhighlight>
</syntaxhighlight>
* if both oneTimePercentage and oneTimeAmount are set, applies oneTimePercentage first
* if both oneTimePercentage and oneTimeAmount are set, applies oneTimePercentage first
* applies on to orderSubtotal + deliveryPrice


==== sellOfferPlanSettings ====
==== sellOfferPlanSettings ====
Line 268: Line 159:
{
{
properties: {
properties: {
combineWins: {}, // true|false
combineWins: true, // true|false, default true
prices: {
sellOfferQuantity: [ // sellOfferQuantity type price settings, ordered low to high
{
upToValue: "xx.xx",
price: "xx.xx",
},
// ...
],
orderQuantity: [ // orderQuantity type price settings, ordered low to high
{
upToValue: "xx.xx",
price: "xx.xx",
},
// ...
]
orderValue: [ // orderValue type price settings, ordered low to high
{
upToValue: "xx.xx",
price: "xx.xx",
},
// ...
]
},


},
},
Line 301: Line 169:
<syntaxhighlight lang="JavaScript">
<syntaxhighlight lang="JavaScript">
{
{
relationshipType: "{SellOfferPlanLib.createHasSellOfferPlanGraphRelationshipType()}", // "has_sellOfferPlan"
relationshipType: "{HAS_SELLOFFERPLAN_GRAPH_REL_TYPE}", // "has_sellOfferPlan"
schema: {
schema: {
elementCanBeRemoved: true,
elementCanBeRemoved: false,
allPropertiesImmutable: true,
allPropertiesImmutable: true,
restrictProperties: true,
restrictProperties: true,
Line 373: Line 241:
relationshipType: "{SellOfferPlanLib.createIsDeliveryMethodGraphRelationshipType()}", // "is_deliveryMethod"
relationshipType: "{SellOfferPlanLib.createIsDeliveryMethodGraphRelationshipType()}", // "is_deliveryMethod"
schema: {
schema: {
elementCanBeRemoved: true,
elementCanBeRemoved: false,
allPropertiesImmutable: true,
allPropertiesImmutable: true,
restrictProperties: true,
restrictProperties: true,
Line 387: Line 255:
relationshipType: "{SellOfferPlanLib.createIsUserPaymentMethodGraphRelationshipType()}", // "is_userPaymentMethod"
relationshipType: "{SellOfferPlanLib.createIsUserPaymentMethodGraphRelationshipType()}", // "is_userPaymentMethod"
schema: {
schema: {
elementCanBeRemoved: true,
elementCanBeRemoved: false,
allPropertiesImmutable: true,
allPropertiesImmutable: true,
restrictProperties: true,
restrictProperties: true,
Line 415: Line 283:
logicalTag: "combineWins",
logicalTag: "combineWins",
comparison: "true",
comparison: "true",
},
{
type: "logical",
logicalTag: "maxPrice",
comparison: "lessThan",
value: "xx"
},
{
type: "logical",
logicalTag: "minPrice",
comparison: "lessThan",
value: "xx"
},
},
{
{
type: "complexFilter",
type: "complexFilter",
complexFilter: {
complexFilter: {
filterType: "userPaymentMethod",
filterType: "managerUserPaymentMethod",
// see [[Service - Payment Method Generic|Complex Filter requests]]
// see [[Service - Payment Method Manager|Complex Filter requests]]
}
}
},
},
Line 438: Line 294:
type: "complexFilter",
type: "complexFilter",
complexFilter: {
complexFilter: {
filterType: "deliveryMethod",
filterType: "managerDeliveryMethod",
// see [[Service - Delivery Method Standard|Complex Filter requests]]
// see [[Service - Delivery Method Manager|Complex Filter requests]]
}
}
},
...
]
}
</syntaxhighlight>
<syntaxhighlight lang="JavaScript">
{
// finds all combinations where the plan has both a deliveryMethodId and paymentMethodId from the given lists of deliveryMethodId and paymentMethodIds
filterType: "planDeliveryPaymentCombination" //unique id is planDeliveryPaymentCombinationId
type: "group",
elements:
[
{
type: "logical",
logicalTag: "planDeliveryPaymentCombination",
paymentMethodIds: [],
deliveryMethodIds: []
},
{
//will find all PlanDeliveryPaymentCombinations for this sellOfferId
type: "logical",
logicalTag: "sellOfferId",
comparison: "equals",
value: {sellOfferId}
},
{
//will find all PlanDeliveryPaymentCombinations for listed sellOfferIds
type: "logical",
logicalTag: "sellOfferIds",
comparison: "equals",
value: [] // array of sellOfferIds
},
},
...
...
Line 446: Line 335:
}
}
</syntaxhighlight>
</syntaxhighlight>
* planDeliveryPaymentCombinationId = {sellOfferPlanId}_{sellOfferPlanDeliveryMethodLinkId}_{sellOfferPlanPaymentMethodLinkId}


== Translate Ids - userPaymentMethod and deliveryMethod to sellOfferPlan ==
== Translate Ids - userPaymentMethod and deliveryMethod to sellOfferPlan ==
Line 451: Line 342:
* only find sellOfferPlanIds that have has_userPaymentMethodLink or has_deliveryMethodLink relationships (ignore disabled)
* only find sellOfferPlanIds that have has_userPaymentMethodLink or has_deliveryMethodLink relationships (ignore disabled)
* bypasses link nodes (no complex filterType)
* bypasses link nodes (no complex filterType)
= Calc pricing use cases =
== Complex filter ==
Complex filter (filterType = sellOfferPlan) can find all sellOfferPlanIds that match a pricing comparison, eg minimumPrice < 100:
== Cart price ==
A cart has a fixed deliveryMethod and paymentMethod so no comparisons are needed across these, instead the array of sellOfferQuantities are sent to PriceCalc which returns the total price, per sellOffer price, orderQuantity, etc..
== Presenting a sellOffer's price options ==
* For a range of (or all) paymentMethodIds / deliveryMethodIds, deliverToLocationIds / orderQuantity are fixed.
== Presenting a product's price options ==
* For a range of (or all) paymentMethodIds / deliveryMethodIds, deliverToLocationIds / orderQuantity are fixed
= Handling SellOfferPlanPrice errors =
* If a SellOfferPlanPrice has an error it's status is set to error
* SellOfferPlanPrice's that are error do save into SellOfferPlanPriceRangePrice, so a SellOfferPlanPriceRange object can see all prices calculated, any requests at this level will need to filter out error prices
* SellOfferPlanPrice's that are error do not save into FilteredSellOfferPlanPrice, they are ignored as they cannot be filtered effectively
= Notes =
* A Sell Offer Plan can link to multiple payment/delivery links, but those multiple links should not point to the same delivery/userpaymentmethod nodes, try to catch/validate this when creating new link nodes


= Working documents =
= Working documents =

Latest revision as of 09:32, 6 August 2023

Overview

A user's plan that connects a user's sell offer to any number of delivery method links and payment method links, and also to the sell offer's prices.

Each sell offer will have one plan, the plan controls the sell offer's prices, and many sell offers can point to the same plan (if they all share the same prices), so any change in price will mean a new sell offer plan.

The plan also links to delivery methods and payment methods using link nodes, so sell offers that use the same sell offer plan must offer the same delivery method and payment methods and their link settings.

Many sell offer plans can use the same delivery method links and payment method links, so if multiple sell offers have the same delivery and payment method settings but different prices, they can share the links but with separate sell offer plans + pricing.

Repository

https://bitbucket.org/izara-market-products/izara-market-products-sell-offer-plan

DynamoDB tables

Standard Config Table Per Service

Configuration tags

{
	configTag: "DeliveryMethodManagerServiceName"
	configKey: "DeliveryMethodManagerServiceName"
	configValue: xxx // eg: "DeliveryMethodManager"
}
{
	configTag: "PaymentMethodManagerServiceName"
	configKey: "PaymentMethodManagerServiceName"
	configValue: xxx // eg: "PaymentMethodManager"
}
{
	configTag: "ProductGraphServiceName"
	configKey: "ProductGraphServiceName"
	configValue: xxx // eg: "ProductGraph"
}

LogicalResultsMain

LogicalResultsMain

LogicalResultsData

LogicalResultsData

LogicalAwaitingStep

AwaitingStep

FindDataMain

FindDataMain

FindDataAwaitingStep

AwaitingStep

FindDataSortedRequest

FindDataSortedRequest

Graph database

Service - Products Graph

Nodes

{
	nodeLabel: "{SellOfferPlanLib.SELLOFFERPLAN_GRAPH_NODE_LABEL}", // "sellOfferPlan"
	schema: {
		identifier: true,
		restrictProperties: true,
		restrictRelationships: true,
		properties: {
			sellOfferPlanId: {
				identifier: true, // create unique id from request params and uniqueMessageId
			},
			userId: {
				immutable: true, // a sellOfferPlan can only be used by one user (because links to their userPaymentMethods)
			},
			currencyId: {
				immutable: true, // all added deliveryMethods and sellOffers must match},
			},
		},
	}
}
{
	nodeLabel: "{SellOfferPlanLib.SELLOFFERPLAN_DELIVERYMETHODLINK_GRAPH_NODE_LABEL}", // "sellOfferPlanDeliveryMethodLink"
	schema: {
		identifier: true,
		restrictProperties: true,
		restrictRelationships: true,
		properties: {
			sellOfferPlanDeliveryMethodLinkId: {
				identifier: true, // create unique id from request params and uniqueMessageId
			},
		},
	}
}
{
	nodeLabel: "{SellOfferPlanLib.SELLOFFERPLAN_USERPAYMENTMETHODLINK_GRAPH_NODE_LABEL}", // "sellOfferPlanUserPaymentMethodLink"
	schema: {
		identifier: true,
		restrictProperties: true,
		restrictRelationships: true,
		properties: {
			sellOfferPlanUserPaymentMethodLinkId: {
				identifier: true, // create unique id from request params and uniqueMessageId
			},
		},
	}
}

Versioned data

sellOfferPlanDeliveryMethodLinkSettings

{
	properties: {
		addToRateTableValuePerOrder: {}, // added once per order to the value before calculating delivery method price
		addToRateTableValuePerUnit: {}, // added once per orderQuantity to the value before calculating delivery method price
		addToCalculatedValuePerOrder: {}, // added once per order to the value after calculating delivery method price
		addToCalculatedValuePerUnit: {}, // added once per orderQuantity to the value after calculating delivery method price
		valueType: "xx", // orderQuantity|orderSubtotal|productAttributeId|sellOfferTermId, if set overwrites deliveryMethod defaultValueType
		valueId: "xx", // if set overwrites deliveryMethod defaultValueId (used for productAttributeId|sellOfferTermId)
		valueLanguageId: {}, // used for productAttributeId|sellOfferTermId, when finding attribute value need to set language to find
		accumulateValue: true // default: true, if set to false will find the largest value out of all sellOffers in the order
	},
}

sellOfferPlanUserPaymentMethodLinkSettings

{
	properties: {
		oneTimePercentage: {}, // increase paymentMethod price by percentage
		oneTimeAmount: {}, // increase paymentMethod price by set amount
	},
}
  • if both oneTimePercentage and oneTimeAmount are set, applies oneTimePercentage first
  • applies on to orderSubtotal + deliveryPrice

sellOfferPlanSettings

{
	properties: {
		combineWins: true, // true|false, default true

	},
}

Relationships

{
	relationshipType: "{HAS_SELLOFFERPLAN_GRAPH_REL_TYPE}", // "has_sellOfferPlan"
	schema: {
		elementCanBeRemoved: false,
		allPropertiesImmutable: true,
		restrictProperties: true,
		properties: {
			originTimestamp: //timestamp the request to create/change this relationship was sent
		},
	}
}
  • links a user to one of their sell offer plans
{
	relationshipType: "{SellOfferPlanLib.createHasDeliveryMethodLinkGraphRelationshipType()}", // "has_deliveryMethodLink"
	schema: {
		elementCanBeRemoved: true,
		allPropertiesImmutable: true,
		restrictProperties: true,
		properties: {
			originTimestamp: //timestamp the request to create/change this relationship was sent
		},
	}
}
{
	relationshipType: "{SellOfferPlanLib.createDisabledDeliveryMethodLinkGraphRelationshipType()}", // "disabled_deliveryMethodLink"
	schema: {
		elementCanBeRemoved: true,
		allPropertiesImmutable: true,
		restrictProperties: true,
		properties: {
			originTimestamp: //timestamp the request to create/change this relationship was sent
		},
	}
}
{
	relationshipType: "{SellOfferPlanLib.createHasUserPaymentMethodLinkGraphRelationshipType()}", // "has_userPaymentMethodLink"
	schema: {
		elementCanBeRemoved: true,
		allPropertiesImmutable: true,
		restrictProperties: true,
		properties: {
			originTimestamp: //timestamp the request to create/change this relationship was sent
		},
	}
}
{
	relationshipType: "{SellOfferPlanLib.createDisabledUserPaymentMethodLinkGraphRelationshipType()}", // "disabled_userPaymentMethodLink"
	schema: {
		elementCanBeRemoved: true,
		allPropertiesImmutable: true,
		restrictProperties: true,
		properties: {
			originTimestamp: //timestamp the request to create/change this relationship was sent
		},
	}
}
  • many sell offer plans can link to one delivery method link, or one payment method link, this allows user to share settings in the link nodes across multiple sell offer plans
{
	relationshipType: "{SellOfferPlanLib.createIsDeliveryMethodGraphRelationshipType()}", // "is_deliveryMethod"
	schema: {
		elementCanBeRemoved: false,
		allPropertiesImmutable: true,
		restrictProperties: true,
		properties: {
			originTimestamp: //timestamp the request to create/change this relationship was sent
		},
	}
}
{
	relationshipType: "{SellOfferPlanLib.createIsUserPaymentMethodGraphRelationshipType()}", // "is_userPaymentMethod"
	schema: {
		elementCanBeRemoved: false,
		allPropertiesImmutable: true,
		restrictProperties: true,
		properties: {
			originTimestamp: //timestamp the request to create/change this relationship was sent
		},
	}
}

Complex Filter requests

{
	filterType: "sellOfferPlan" //unique id is sellOfferPlanId
	type: "group",
	elements:
	[
		{
			type: "logical",
			logicalTag: "userId",
			comparison: "equals",
			value: "xx"
		},
		{
			type: "logical",
			logicalTag: "combineWins",
			comparison: "true",
		},
		{
			type: "complexFilter",
			complexFilter: {
				filterType: "managerUserPaymentMethod",
				// see [[Service - Payment Method Manager|Complex Filter requests]]
			}
		},		
		{
			type: "complexFilter",
			complexFilter: {
				filterType: "managerDeliveryMethod",
				// see [[Service - Delivery Method Manager|Complex Filter requests]]
			}
		},
		...

	]
}
{
	// finds all combinations where the plan has both a deliveryMethodId and paymentMethodId from the given lists of deliveryMethodId and paymentMethodIds
	filterType: "planDeliveryPaymentCombination" //unique id is planDeliveryPaymentCombinationId
	type: "group",
	elements:
	[
		{
			type: "logical",
			logicalTag: "planDeliveryPaymentCombination",
			paymentMethodIds: [],
			deliveryMethodIds: []
		},
		{
			//will find all PlanDeliveryPaymentCombinations for this sellOfferId
			type: "logical",
			logicalTag: "sellOfferId",
			comparison: "equals",
			value: {sellOfferId}
		},
		{
			//will find all PlanDeliveryPaymentCombinations for listed sellOfferIds
			type: "logical",
			logicalTag: "sellOfferIds",
			comparison: "equals",
			value: [] // array of sellOfferIds
		},
		...
	]
}
  • planDeliveryPaymentCombinationId = {sellOfferPlanId}_{sellOfferPlanDeliveryMethodLinkId}_{sellOfferPlanPaymentMethodLinkId}

Translate Ids - userPaymentMethod and deliveryMethod to sellOfferPlan

  • only find sellOfferPlanIds that have has_userPaymentMethodLink or has_deliveryMethodLink relationships (ignore disabled)
  • bypasses link nodes (no complex filterType)

Calc pricing use cases

Complex filter

Complex filter (filterType = sellOfferPlan) can find all sellOfferPlanIds that match a pricing comparison, eg minimumPrice < 100:

Cart price

A cart has a fixed deliveryMethod and paymentMethod so no comparisons are needed across these, instead the array of sellOfferQuantities are sent to PriceCalc which returns the total price, per sellOffer price, orderQuantity, etc..

Presenting a sellOffer's price options

  • For a range of (or all) paymentMethodIds / deliveryMethodIds, deliverToLocationIds / orderQuantity are fixed.

Presenting a product's price options

  • For a range of (or all) paymentMethodIds / deliveryMethodIds, deliverToLocationIds / orderQuantity are fixed

Handling SellOfferPlanPrice errors

  • If a SellOfferPlanPrice has an error it's status is set to error
  • SellOfferPlanPrice's that are error do save into SellOfferPlanPriceRangePrice, so a SellOfferPlanPriceRange object can see all prices calculated, any requests at this level will need to filter out error prices
  • SellOfferPlanPrice's that are error do not save into FilteredSellOfferPlanPrice, they are ignored as they cannot be filtered effectively

Notes

  • A Sell Offer Plan can link to multiple payment/delivery links, but those multiple links should not point to the same delivery/userpaymentmethod nodes, try to catch/validate this when creating new link nodes

Working documents

Sell Offer Plan