diff options
author | Jared Norman <jared@super.gd> | 2019-02-05 13:19:48 -0800 |
---|---|---|
committer | Jared Norman <jared@super.gd> | 2019-02-05 13:19:48 -0800 |
commit | 495f343ce7c93421bbde12745a127aff59ef30d0 (patch) | |
tree | 64bc73ee9f6f403f561367676a7070990be35282 /lib | |
parent | b31fa3208a08f39a161f76437b968aebb93f9d2d (diff) |
Make labels customizable.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/super_good/solidus_taxjar.rb | 2 | ||||
-rw-r--r-- | lib/super_good/solidus_taxjar/tax_calculator.rb | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lib/super_good/solidus_taxjar.rb b/lib/super_good/solidus_taxjar.rb index 9a32d9f..ef9497d 100644 --- a/lib/super_good/solidus_taxjar.rb +++ b/lib/super_good/solidus_taxjar.rb @@ -16,6 +16,7 @@ module SuperGood attr_accessor :exception_handler attr_accessor :taxable_address_check attr_accessor :shipping_tax_label_maker + attr_accessor :line_item_tax_label_maker end self.discount_calculator = ::SuperGood::SolidusTaxJar::DiscountCalculator @@ -25,5 +26,6 @@ module SuperGood } self.taxable_address_check = ->(address) { true } self.shipping_tax_label_maker = ->(shipment, shipping_tax) { "Sales Tax" } + self.line_item_tax_label_maker = ->(taxjar_line_item) { "Sales Tax" } end end diff --git a/lib/super_good/solidus_taxjar/tax_calculator.rb b/lib/super_good/solidus_taxjar/tax_calculator.rb index a2eb8ca..91ff6c0 100644 --- a/lib/super_good/solidus_taxjar/tax_calculator.rb +++ b/lib/super_good/solidus_taxjar/tax_calculator.rb @@ -38,7 +38,7 @@ module SuperGood taxjar_breakdown.line_items.map do |line_item| Spree::Tax::ItemTax.new( item_id: line_item.id.to_i, - label: "Sales Tax", + label: line_item_tax_label(line_item), tax_rate: tax_rate, amount: line_item.tax_collectable, included_in_price: false @@ -140,6 +140,10 @@ module SuperGood shipping_tax ) end + + def line_item_tax_label(taxjar_line_item) + SuperGood::SolidusTaxJar.line_item_tax_label_maker.(taxjar_line_item) + end end end end |