Class: NetSuite::Records::CashSaleItem

Inherits:
Object
  • Object
show all
Includes:
Namespaces::TranSales, Support::Fields, Support::RecordRefs, Support::Records
Defined in:
lib/netsuite/records/cash_sale_item.rb

Instance Method Summary collapse

Methods included from Namespaces::TranSales

#record_namespace

Methods included from Support::Records

#record_type, #to_attributes!

Methods included from Namespaces::PlatformCore

#record_namespace

Methods included from Support::Attributes

#attributes, #attributes=, #initialize_from_attributes_hash

Methods included from Support::RecordRefs

included

Methods included from Support::Fields

included

Constructor Details

#initialize(attributes = {}) ⇒ CashSaleItem

Returns a new instance of CashSaleItem.



26
27
28
# File 'lib/netsuite/records/cash_sale_item.rb', line 26

def initialize(attributes = {})
  initialize_from_attributes_hash(attributes)
end

Instance Method Details

#to_recordObject



30
31
32
33
34
35
36
# File 'lib/netsuite/records/cash_sale_item.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