From 7a53a1f4923215b7784f31e3d21435e091832f8b Mon Sep 17 00:00:00 2001 From: Jared Norman Date: Fri, 5 Apr 2019 16:23:35 +1300 Subject: Make shipping amount calculator configurable Necessary if you need to factor in order level adjustments (boooooo) into your shipping amounts to make things add up correctly. --- lib/super_good/solidus_taxjar.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/super_good/solidus_taxjar.rb') diff --git a/lib/super_good/solidus_taxjar.rb b/lib/super_good/solidus_taxjar.rb index 4e7d9c5..6d6c47c 100644 --- a/lib/super_good/solidus_taxjar.rb +++ b/lib/super_good/solidus_taxjar.rb @@ -16,6 +16,7 @@ module SuperGood attr_accessor :discount_calculator attr_accessor :exception_handler attr_accessor :line_item_tax_label_maker + attr_accessor :shipping_calculator attr_accessor :shipping_tax_label_maker attr_accessor :taxable_address_check attr_accessor :test_mode @@ -28,6 +29,7 @@ module SuperGood Rails.logger.error "An error occurred while fetching TaxJar tax rates - #{e}: #{e.message}" } self.line_item_tax_label_maker = ->(taxjar_line_item, spree_line_item) { "Sales Tax" } + self.shipping_calculator = ->(order) { order.shipment_total } self.shipping_tax_label_maker = ->(shipment, shipping_tax) { "Sales Tax" } self.taxable_address_check = ->(address) { true } self.test_mode = false -- cgit v1.2.3