Sha256: 06b7af6e6614ba147dcd8b9c575cf8a6c6b86a6753c551b560abfa8622e51ac5
Contents?: true
Size: 911 Bytes
Versions: 10
Compression:
Stored size: 911 Bytes
Contents
module NetSuite module Records class InventoryTransfer include Support::Fields include Support::RecordRefs include Support::Records include Support::Actions include Namespaces::TranInvt actions :get, :add, :delete, :search, :update, :upsert, :upsert_list fields :klass, :created_date, :last_modified_date, :tran_date, :tran_id, :memo field :inventory_list, InventoryTransferInventoryList record_refs :posting_period, :location, :transfer_location, :department, :subsidiary attr_reader :internal_id attr_accessor :external_id def initialize(attributes = {}) @internal_id = attributes.delete(:internal_id) || attributes.delete(:@internal_id) @external_id = attributes.delete(:external_id) || attributes.delete(:@external_id) initialize_from_attributes_hash(attributes) end end end end
Version data entries
10 entries across 10 versions & 1 rubygems