Class: FriendlyShipping::Services::TForceFreight::PackageOptions
- Inherits:
-
PackageOptions
- Object
- PackageOptions
- FriendlyShipping::Services::TForceFreight::PackageOptions
- Defined in:
- lib/friendly_shipping/services/tforce_freight/package_options.rb
Overview
Options for packages/pallets in a shipment.
Constant Summary collapse
- PACKAGING_TYPES =
Maps friendly names to packaging types.
{ bag: { code: "BAG", description: "Bag" }, bale: { code: "BAL", description: "Bale" }, barrel: { code: "BAR", description: "Barrel" }, bundle: { code: "BDL", description: "Bundle" }, bin: { code: "BIN", description: "Bin" }, box: { code: "BOX", description: "Box" }, basket: { code: "BSK", description: "Basket" }, bunch: { code: "BUN", description: "Bunch" }, cabinet: { code: "CAB", description: "Cabinet" }, can: { code: "CAN", description: "Can" }, carrier: { code: "CAR", description: "Carrier" }, case: { code: "CAS", description: "Case" }, carboy: { code: "CBY", description: "Carboy" }, container: { code: "CON", description: "Container" }, crate: { code: "CRT", description: "Crate" }, cask: { code: "CSK", description: "Cask" }, carton: { code: "CTN", description: "Carton" }, cylinder: { code: "CYL", description: "Cylinder" }, drum: { code: "DRM", description: "Drum" }, loose: { code: "LOO", description: "Loose" }, other: { code: "OTH", description: "Other" }, pail: { code: "PAL", description: "Pail" }, pieces: { code: "PCS", description: "Pieces" }, package: { code: "PKG", description: "Package" }, pipe_line: { code: "PLN", description: "Pipe Line" }, pallet: { code: "PLT", description: "Pallet" }, rack: { code: "RCK", description: "Rack" }, reel: { code: "REL", description: "Reel" }, roll: { code: "ROL", description: "Roll" }, skid: { code: "SKD", description: "Skid" }, spool: { code: "SPL", description: "Spool" }, tube: { code: "TBE", description: "Tube" }, tank: { code: "TNK", description: "Tank" }, totes: { code: "TOT", description: "Totes" }, unit: { code: "UNT", description: "Unit" }, van_pack: { code: "VPK", description: "Van Pack" }, wrapped: { code: "WRP", description: "Wrapped" } }.freeze
- HANDLING_UNIT_TYPES =
Maps friendly names to handling unit types.
{ pallet: { code: "PLT", description: "Pallet", handling_unit_tag: 'One' }, skid: { code: "SKD", description: "Skid", handling_unit_tag: 'One' }, carboy: { code: "CBY", description: "Carboy", handling_unit_tag: 'One' }, totes: { code: "TOT", description: "Totes", handling_unit_tag: 'One' }, other: { code: "OTH", description: "Other", handling_unit_tag: 'Two' }, loose: { code: "LOO", description: "Loose", handling_unit_tag: 'Two' } }.freeze
Instance Attribute Summary collapse
-
#freight_class ⇒ String
readonly
The freight class.
-
#handling_unit_code ⇒ String
readonly
The handling unit code.
-
#handling_unit_description ⇒ String
readonly
The handling unit description.
-
#handling_unit_tag ⇒ String
readonly
The handling unit tag.
-
#hazardous ⇒ Boolean
readonly
Whether or not the item is hazardous.
-
#nmfc_primary_code ⇒ String
readonly
The NMFC primary code.
-
#nmfc_sub_code ⇒ String
readonly
The NMFC sub code.
-
#packaging_code ⇒ Symbol
readonly
The code for this item's packaging.
-
#packaging_description ⇒ String
readonly
The description for this item's packaging.
Attributes inherited from PackageOptions
Instance Method Summary collapse
-
#initialize(packaging: :carton, freight_class: nil, nmfc_primary_code: nil, nmfc_sub_code: nil, hazardous: false, handling_unit: :pallet, **kwargs) ⇒ PackageOptions
constructor
A new instance of PackageOptions.
Methods inherited from PackageOptions
Constructor Details
#initialize(packaging: :carton, freight_class: nil, nmfc_primary_code: nil, nmfc_sub_code: nil, hazardous: false, handling_unit: :pallet, **kwargs) ⇒ PackageOptions
Returns a new instance of PackageOptions.
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
# File 'lib/friendly_shipping/services/tforce_freight/package_options.rb', line 96 def initialize( packaging: :carton, freight_class: nil, nmfc_primary_code: nil, nmfc_sub_code: nil, hazardous: false, handling_unit: :pallet, **kwargs ) @packaging_code = PACKAGING_TYPES.fetch(packaging).fetch(:code) @packaging_description = PACKAGING_TYPES.fetch(packaging).fetch(:description) @freight_class = freight_class @nmfc_primary_code = nmfc_primary_code @nmfc_sub_code = nmfc_sub_code @hazardous = hazardous @handling_unit_code = HANDLING_UNIT_TYPES.fetch(handling_unit).fetch(:code) @handling_unit_description = HANDLING_UNIT_TYPES.fetch(handling_unit).fetch(:description) @handling_unit_tag = "handlingUnit#{HANDLING_UNIT_TYPES.fetch(handling_unit).fetch(:handling_unit_tag)}" super(**kwargs.reverse_merge(item_options_class: ItemOptions)) end |
Instance Attribute Details
#freight_class ⇒ String (readonly)
Returns the freight class.
66 67 68 |
# File 'lib/friendly_shipping/services/tforce_freight/package_options.rb', line 66 def freight_class @freight_class end |
#handling_unit_code ⇒ String (readonly)
Returns the handling unit code.
84 85 86 |
# File 'lib/friendly_shipping/services/tforce_freight/package_options.rb', line 84 def handling_unit_code @handling_unit_code end |
#handling_unit_description ⇒ String (readonly)
Returns the handling unit description.
78 79 80 |
# File 'lib/friendly_shipping/services/tforce_freight/package_options.rb', line 78 def handling_unit_description @handling_unit_description end |
#handling_unit_tag ⇒ String (readonly)
Returns the handling unit tag.
81 82 83 |
# File 'lib/friendly_shipping/services/tforce_freight/package_options.rb', line 81 def handling_unit_tag @handling_unit_tag end |
#hazardous ⇒ Boolean (readonly)
Returns whether or not the item is hazardous.
75 76 77 |
# File 'lib/friendly_shipping/services/tforce_freight/package_options.rb', line 75 def hazardous @hazardous end |
#nmfc_primary_code ⇒ String (readonly)
Returns the NMFC primary code.
69 70 71 |
# File 'lib/friendly_shipping/services/tforce_freight/package_options.rb', line 69 def nmfc_primary_code @nmfc_primary_code end |
#nmfc_sub_code ⇒ String (readonly)
Returns the NMFC sub code.
72 73 74 |
# File 'lib/friendly_shipping/services/tforce_freight/package_options.rb', line 72 def nmfc_sub_code @nmfc_sub_code end |
#packaging_code ⇒ Symbol (readonly)
Returns the code for this item's packaging.
60 61 62 |
# File 'lib/friendly_shipping/services/tforce_freight/package_options.rb', line 60 def packaging_code @packaging_code end |
#packaging_description ⇒ String (readonly)
Returns the description for this item's packaging.
63 64 65 |
# File 'lib/friendly_shipping/services/tforce_freight/package_options.rb', line 63 def packaging_description @packaging_description end |