Skip to main content

Interface: PricingMarketCostPrice

Represents base cost and recommended retail pricing for a specific price code.

The PricingMarketCostPrice interface defines pricing foundations for a specific market, code, and quantity combination. These entries form the building blocks of the pricing system, establishing cost and recommended retail prices for product components, materials, or complete products identified by price codes.

Each unique market|code|quantity combination creates a pricing breakpoint that, when taken together, builds the quantity-based price tiers. For example, entries with quantities 1, 5, and 15 for the same code establish pricing bands of 1-4, 5-14, and 15+ units.

Example

// Defining market cost prices for a chair's base component
const chairBasePrices = [
// Standard quantity pricing
{
market: "PLN",
code: "CHAIR-BASE",
quantity: 1, // For orders of 1-4 units
cost: 45.00,
rrp: 99.00
},
// Medium volume discount
{
market: "PLN",
code: "CHAIR-BASE",
quantity: 5, // For orders of 5-14 units
cost: 40.00,
rrp: 89.00
},
// High volume discount
{
market: "PLN",
code: "CHAIR-BASE",
quantity: 15, // For orders of 15+ units
cost: 35.00,
rrp: 79.00
}
];

// These entries will create three price levels (1-4, 5-14, 15+) when processed

Properties

code

code: string

The price code this entry applies to.

This code identifies a product, component, material, or other pricing element. A finished product may incorporate multiple price codes representing different aspects of its construction.


cost

cost: number

Base cost price for this code and quantity.

This represents the cost or wholesale price that forms the foundation of pricing calculations and margin analysis.


customerId?

optional customerId: string

ID of the customer this price entry belongs to.

This identifies which customer or organization owns this pricing information, relevant for multi-tenant systems.


history?

optional history: History

Revision history information for this price entry.


lastModifiedDate?

optional lastModifiedDate: number

Timestamp when this price entry was last modified.


lastModifiedUser?

optional lastModifiedUser: string

ID of the user who last modified this price entry.


market

market: string

Market code or currency identifying the target market.

This identifies which geographical market or currency zone this pricing applies to, enabling region-specific pricing.


marketCostPriceId?

optional marketCostPriceId: string

Unique identifier for this price entry.

This ID uniquely identifies this specific price record for reference, updates, and tracking.


quantity

quantity: number

Minimum quantity threshold for this price point.

This value establishes the lower bound of the quantity range where this price applies. When multiple entries for the same code exist with different quantities, they form a series of quantity breaks with progressive pricing.


rrp

rrp: number

Recommended retail price for this code and quantity.

This represents the suggested selling price to end customers, often used as a reference point even when actual selling prices differ due to promotions or channel pricing.