blob: eba094742082ab908de66114c66acde40c8bd29c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
module SuperGood
module SolidusTaxJar
module APIParams
class << self
def order_params(order)
{}
.merge(address_params(order.tax_address))
.merge(line_items_params(order.line_items))
.merge(shipping: order.shipment_total)
end
private
def address_params(address)
{
to_country: address.country.iso,
to_zip: address.zipcode,
to_city: address.city,
to_state: address&.state&.abbr || address.state_name,
to_street: address.address1,
}
end
def line_items_params(line_items)
{
line_items: line_items.map do |line_item|
{
id: line_item.id,
quantity: line_item.quantity,
unit_price: line_item.price,
discount: discount(line_item),
product_tax_code: line_item.tax_category&.tax_code
}
end
}
end
def discount(line_item)
::SuperGood::SolidusTaxJar.discount_calculator.new(line_item).discount
end
end
end
end
end
|