lib/active_merchant/billing/gateways/secure_net.rb in activemerchant-1.52.0 vs lib/active_merchant/billing/gateways/secure_net.rb in activemerchant-1.53.0
- old
+ new
@@ -210,9 +210,10 @@
def add_more_required_params(xml, options)
xml.tag! 'RETAIL_LANENUM', '0'
xml.tag! 'TEST', 'TRUE' if test?
xml.tag! 'TOTAL_INSTALLMENTCOUNT', 0
xml.tag! 'TRANSACTION_SERVICE', 0
+ xml.tag! 'DEVELOPERID', options[:developer_id] if options[:developer_id]
end
def success?(response)
response[:response_code].to_i == APPROVED
end