class NetSuite::Records::InterCompanyJournalEntry

Attributes

external_id[RW]
internal_id[R]

Public Class Methods

new(attributes = {}) click to toggle source
# File lib/netsuite/records/inter_company_journal_entry.rb, line 24
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
search_class_name() click to toggle source
# File lib/netsuite/records/inter_company_journal_entry.rb, line 38
def self.search_class_name
  "Transaction"
end
search_class_namespace() click to toggle source
# File lib/netsuite/records/inter_company_journal_entry.rb, line 42
def self.search_class_namespace
  "tranSales"
end

Public Instance Methods

to_record() click to toggle source
Calls superclass method NetSuite::Support::Records#to_record
# File lib/netsuite/records/inter_company_journal_entry.rb, line 30
def to_record
  rec = super
  if rec["#{record_namespace}:customFieldList"]
    rec["#{record_namespace}:customFieldList!"] = rec.delete("#{record_namespace}:customFieldList")
  end
  rec
end