lib/active_merchant/billing/gateways/conekta.rb in activemerchant-1.79.0 vs lib/active_merchant/billing/gateways/conekta.rb in activemerchant-1.79.1
- old
+ new
@@ -75,9 +75,10 @@
def add_order(post, money, options)
post[:description] = options[:description] || "Active Merchant Purchase"
post[:reference_id] = options[:order_id] if options[:order_id]
post[:currency] = (options[:currency] || currency(money)).downcase
+ post[:monthly_installments] = options[:monthly_installments] if options[:monthly_installments]
post[:amount] = amount(money)
end
def add_details_data(post, options)
details = {}