Sha256: b31d1b9beccaf845bb23b0dea3e02220f1dae2a4d25a1624e88507e0530451b9

Contents?: true

Size: 400 Bytes

Versions: 1

Compression:

Stored size: 400 Bytes

Contents

module Spree
  module Calculator::Shipping
    module Usps
      class StandardPost < Spree::Calculator::Shipping::Usps::Base
        def self.geo_group
          :domestic
        end

        def self.service_code
          "#{SERVICE_CODE_PREFIX[geo_group]}:4" #Standard Post
        end

        def self.description
          I18n.t("usps.standard_post")
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
solidus_active_shipping-1.0.0 app/models/spree/calculator/shipping/usps/standard_post.rb