summaryrefslogtreecommitdiff
path: root/lib/super_good/solidus_taxjar
diff options
context:
space:
mode:
authorJared Norman <jared@super.gd>2019-04-05 16:32:11 +1300
committerGitHub <noreply@github.com>2019-04-05 16:32:11 +1300
commit4ec7b4cc9d6107dca122fb691b4eea576f96eff8 (patch)
treed093cbca92a3fb6d87265adf77f08130df1a86a1 /lib/super_good/solidus_taxjar
parent0cb3cb6ef633898d609c0cc43c5e48b2d0afd280 (diff)
parent7a53a1f4923215b7784f31e3d21435e091832f8b (diff)
Merge pull request #9 from SuperGoodSoft/feature/configurable-shipping
Make shipping amount calculator configurable
Diffstat (limited to 'lib/super_good/solidus_taxjar')
-rw-r--r--lib/super_good/solidus_taxjar/api_params.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/super_good/solidus_taxjar/api_params.rb b/lib/super_good/solidus_taxjar/api_params.rb
index cb554a8..8596856 100644
--- a/lib/super_good/solidus_taxjar/api_params.rb
+++ b/lib/super_good/solidus_taxjar/api_params.rb
@@ -29,7 +29,7 @@ module SuperGood
transaction_id: order.number,
transaction_date: order.completed_at.to_formatted_s(:iso8601),
amount: order.total - order.additional_tax_total,
- shipping: order.shipment_total,
+ shipping: shipping(order),
sales_tax: order.additional_tax_total
)
end
@@ -94,6 +94,10 @@ module SuperGood
def discount(line_item)
::SuperGood::SolidusTaxJar.discount_calculator.new(line_item).discount
end
+
+ def shipping(order)
+ SuperGood::SolidusTaxJar.shipping_calculator.(order)
+ end
end
end
end