Service - Sell Offer Plan: Difference between revisions
No edit summary |
No edit summary |
||
Line 42: | Line 42: | ||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== LogicalResults == | |||
Stores results for any requests to perform logical searches on sell offer data | |||
<syntaxhighlight lang="JavaScript"> | |||
{ | |||
resultId: xxx // eg: filterMainId for a single logical element | |||
dataId: xxx // one sellofferId | |||
} | |||
</syntaxhighlight> | |||
* partition key: resultId | |||
* sort key: dataId | |||
== PriceLogicals == | |||
Records ProcessLogical requests for pricing based elements, so when pricing flow completes can send message out for complexFilter service to receive. | |||
<syntaxhighlight lang="JavaScript"> | |||
{ | |||
priceCalcId: "xx", | |||
resultId: "xx", | |||
logicalElement: {}, | |||
timestamp: "xx", //when record created | |||
} | |||
</syntaxhighlight> | |||
* partition key: priceCalcId | |||
* sort key: resultId | |||
* priceCalcId comes from a hash of values sent into pricing flow | |||
* is a temporary record, after processLogical complete can delete record | |||
= Graph database = | = Graph database = | ||
Line 136: | Line 168: | ||
properties: { | properties: { | ||
combineWins: {}, // true|false | combineWins: {}, // true|false | ||
prices: [ | prices: { | ||
{ | sellOfferQuantity: [ // sellOfferQuantity type price settings, ordered low to high | ||
{ | |||
upToValue: "xx.xx", | 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", | |||
}, | |||
// ... | |||
] | |||
}, | |||
}, | }, | ||
} | } |
Revision as of 10:35, 8 November 2021
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"
}
LogicalResults
Stores results for any requests to perform logical searches on sell offer data
{
resultId: xxx // eg: filterMainId for a single logical element
dataId: xxx // one sellofferId
}
- partition key: resultId
- sort key: dataId
PriceLogicals
Records ProcessLogical requests for pricing based elements, so when pricing flow completes can send message out for complexFilter service to receive.
{
priceCalcId: "xx",
resultId: "xx",
logicalElement: {},
timestamp: "xx", //when record created
}
- partition key: priceCalcId
- sort key: resultId
- priceCalcId comes from a hash of values sent into pricing flow
- is a temporary record, after processLogical complete can delete record
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 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: {
oneTimeAmountSetting: {}, // "value"|"rate", do we add one time cost to the value before calculating, or is it a straight rate added after calculating
oneTimeAmount: {}, // value of the one time amount
oneTimeAmountAccumulate: {}, // boolean true|false, if TRUE for combined orders then add oneTimeAmount for each included Sell Offer, if FALSE only gets added once
valueType: "xx", // quantity|productValue|productAttribute|sellOfferTerm, if set overwrites deliveryMethod defaultValueType
valueId: "xx", // if set overwrites deliveryMethod defaultValueId
},
}
sellOfferPlanUserPaymentMethodLinkSettings
{
properties: {
oneTimeAmountSetting: {}, // "cost"|"percentage", do we add a one time cost, or add a % to the order total
oneTimeAmount: {}, // value of the one time amount
},
}
sellOfferPlanSettings
{
properties: {
combineWins: {}, // true|false
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",
},
// ...
]
},
},
}
Relationships
{
relationshipType: "{SellOfferPlanLib.createHasSellOfferPlanGraphRelationshipType()}", // "has_sellOfferPlan"
schema: {
elementCanBeRemoved: true,
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: true,
allPropertiesImmutable: true,
restrictProperties: true,
properties: {
originTimestamp: //timestamp the request to create/change this relationship was sent
},
}
}
{
relationshipType: "{SellOfferPlanLib.createIsUserPaymentMethodGraphRelationshipType()}", // "is_userPaymentMethod"
schema: {
elementCanBeRemoved: true,
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: "logical",
logicalTag: "maxPrice",
comparison: "lessThan",
value: "xx"
},
{
type: "logical",
logicalTag: "minPrice",
comparison: "lessThan",
value: "xx"
},
{
type: "complexFilter",
complexFilter: {
filterType: "userPaymentMethod",
// see [[Service - Payment Method Generic|Complex Filter requests]]
}
},
{
type: "complexFilter",
complexFilter: {
filterType: "deliveryMethod",
// see [[Service - Delivery Method Standard|Complex Filter requests]]
}
},
...
]
}
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)