class VertexClient::Payload::QuotationFallback
Private Instance Methods
transform_customer(customer_params)
click to toggle source
Calls superclass method
VertexClient::Payload::Quotation#transform_customer
# File lib/vertex_client/payloads/quotation_fallback.rb, line 7 def transform_customer(customer_params) customer_without_tax_area = customer_params.dup customer_without_tax_area.delete(:tax_area_id) if customer_without_tax_area[:tax_area_id].present? super(customer_without_tax_area) end