Sha256: d0e7eb550b3b3b7f7cbcbe2b86fdc51b74d31029f1833ccfc5ca32b96e76c7a9
Contents?: true
Size: 1.01 KB
Versions: 5
Compression:
Stored size: 1.01 KB
Contents
module Spree class Calculator::DefaultTax < Calculator def self.description I18n.t(:default_tax) end def compute(computable) case computable when Spree::Order compute_order(computable) when Spree::LineItem compute_line_item(computable) end end private def rate rate = self.calculable end def compute_order(order) matched_line_items = order.line_items.select do |line_item| line_item.product.tax_category == rate.tax_category end line_items_total = matched_line_items.sum(&:total) round_to_two_places(line_items_total * rate.amount) end def compute_line_item(line_item) if line_item.product.tax_category == rate.tax_category round_to_two_places(line_item.total * rate.amount) else 0 end end def round_to_two_places(amount) BigDecimal.new(amount.to_s).round(2, BigDecimal::ROUND_HALF_UP) end end end
Version data entries
5 entries across 5 versions & 1 rubygems