Sha256: 4ccc69b72feb84c6bf5b8712793f69311d4c8bede5c2730d1d6b62047e615486
Contents?: true
Size: 1023 Bytes
Versions: 15
Compression:
Stored size: 1023 Bytes
Contents
module NetSuite module Records class InventoryAdjustment 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 :created_date, :estimated_total_value, :last_modified_date, :tran_date, :tran_id, :memo field :inventory_list, InventoryAdjustmentInventoryList field :custom_field_list, CustomFieldList record_refs :account, :adj_location, :customer, :posting_period, :location, :department, :subsidiary, :custom_form, :klass 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
15 entries across 15 versions & 1 rubygems