module Spree module Calculator::Shipping module Usps class PriorityMailLargeFlatRateBox < Spree::Calculator::Shipping::Usps::Base def self.geo_group :domestic end def self.service_code "#{SERVICE_CODE_PREFIX[geo_group]}:22" #Priority Mail {0}™ Large Flat Rate Box end def self.description I18n.t("usps.priority_mail_large_flat_rate_box") end end end end end