Sha256: b889f9b84432fb5e27ec2b7874db900dfd7550b31b5182bde57bb49dae2cbee0

Contents?: true

Size: 482 Bytes

Versions: 62

Compression:

Stored size: 482 Bytes

Contents

module Workarea
  class Shipping
    class Address < Workarea::Address
      def reset
        Workarea.config.address_attributes.each { |name| send("#{name}=", nil) }
      end

      def to_active_shipping
        ActiveShipping::Location.new(
          country: country.alpha2,
          state: region,
          city: city,
          zip: postal_code
        )
      end

      def allow_po_box?
        Workarea.config.allow_shipping_address_po_box
      end
    end
  end
end

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
workarea-core-3.4.13 app/models/workarea/shipping/address.rb
workarea-core-3.4.12 app/models/workarea/shipping/address.rb