class IngramMicro::InboundLineItem

Public Instance Methods

backorder_quantity() click to toggle source
# File lib/ingram_micro/inbound_elements/inbound_line_item.rb, line 82
def backorder_quantity
  hash['backorder_quantity']
end
base_price() click to toggle source
# File lib/ingram_micro/inbound_elements/inbound_line_item.rb, line 3
def base_price
  hash['base_price']
end
bill_of_lading() click to toggle source
# File lib/ingram_micro/inbound_elements/inbound_line_item.rb, line 7
def bill_of_lading
  hash['bill_of_lading']
end
brightpoint_line_no() click to toggle source
# File lib/ingram_micro/inbound_elements/inbound_line_item.rb, line 62
def brightpoint_line_no
  hash['brightpoint_line_no']
end
comments() click to toggle source
# File lib/ingram_micro/inbound_elements/inbound_line_item.rb, line 15
def comments
  hash['comments']
end
container_id() click to toggle source
# File lib/ingram_micro/inbound_elements/inbound_line_item.rb, line 11
def container_id
  hash['container_id']
end
customer_order_date() click to toggle source
# File lib/ingram_micro/inbound_elements/inbound_line_item.rb, line 19
def customer_order_date
  hash['customer_order_date']
end
item_code() click to toggle source
# File lib/ingram_micro/inbound_elements/inbound_line_item.rb, line 46
def item_code
  hash['item_code']
end
line_discount() click to toggle source
# File lib/ingram_micro/inbound_elements/inbound_line_item.rb, line 23
def line_discount
  hash['line_discount']
end
line_no() click to toggle source
# File lib/ingram_micro/inbound_elements/inbound_line_item.rb, line 50
def line_no
  hash['line_no']
end
line_reference() click to toggle source
# File lib/ingram_micro/inbound_elements/inbound_line_item.rb, line 54
def line_reference
  hash['line_reference']
end
line_status() click to toggle source
# File lib/ingram_micro/inbound_elements/inbound_line_item.rb, line 58
def line_status
  hash['line_status'] || ''
end
line_tax1() click to toggle source
# File lib/ingram_micro/inbound_elements/inbound_line_item.rb, line 27
def line_tax1
  hash['line_tax1']
end
line_tax2() click to toggle source
# File lib/ingram_micro/inbound_elements/inbound_line_item.rb, line 31
def line_tax2
  hash['line_tax2']
end
line_tax3() click to toggle source
# File lib/ingram_micro/inbound_elements/inbound_line_item.rb, line 35
def line_tax3
  hash['line_tax3']
end
market_id() click to toggle source
# File lib/ingram_micro/inbound_elements/inbound_line_item.rb, line 66
def market_id
  hash['market_id']
end
pallet_id() click to toggle source
# File lib/ingram_micro/inbound_elements/inbound_line_item.rb, line 70
def pallet_id
  hash['pallet_id']
end
product_name() click to toggle source
# File lib/ingram_micro/inbound_elements/inbound_line_item.rb, line 74
def product_name
  hash['product_name']
end
quantity() click to toggle source
# File lib/ingram_micro/inbound_elements/inbound_line_item.rb, line 78
def quantity
  hash['quantity']
end
rejection_date() click to toggle source
# File lib/ingram_micro/inbound_elements/inbound_line_item.rb, line 86
def rejection_date
  hash['rejection_date']
end
scac() click to toggle source
# File lib/ingram_micro/inbound_elements/inbound_line_item.rb, line 90
def scac
  hash['scac']
end
serial_numbers() click to toggle source
# File lib/ingram_micro/inbound_elements/inbound_line_item.rb, line 39
def serial_numbers
  if hash['serial_list']
    serial_numbers_hash = hash['serial_list']['serial_numbers']
    IngramMicro::SerialNumbers.new(serial_numbers_hash)
  end
end
ship_quantity() click to toggle source
# File lib/ingram_micro/inbound_elements/inbound_line_item.rb, line 94
def ship_quantity
  hash['ship_quantity']
end
special_message() click to toggle source
# File lib/ingram_micro/inbound_elements/inbound_line_item.rb, line 98
def special_message
  hash['special_message']
end
unit_of_measure() click to toggle source
# File lib/ingram_micro/inbound_elements/inbound_line_item.rb, line 102
def unit_of_measure
  hash['unit_of_measure']
end
universal_product_code() click to toggle source
# File lib/ingram_micro/inbound_elements/inbound_line_item.rb, line 106
def universal_product_code
  hash['universal_product_code']
end