Class: Skr::Core::StandardPricingProvider

Inherits:
Object
  • Object
show all
Defined in:
lib/skr/core/standard_pricing_provider.rb

Class Method Summary collapse

Class Method Details

.price(sku_loc: nil, customer: nil, uom: nil, qty: 1) ⇒ BigDecimal

The default implementation returns the price for the given UOM Custom implementations will return from a pricing library

Returns:

  • (BigDecimal)

    the “standard” price for the SKU



9
10
11
# File 'lib/skr/core/standard_pricing_provider.rb', line 9

def self.price( sku_loc: nil, customer: nil, uom: nil, qty: 1 )
    sku_loc.sku.uoms.with_code( uom.code ).price
end