class Skr::Core::StandardPricingProvider
Public Class Methods
price( sku_loc: nil, customer: nil, uom: nil, qty: 1 )
click to toggle source
The default implementation returns the price for the given UOM Custom implementations will return from a pricing library @return [BigDecimal] the “standard” price for the SKU
# 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