Sha256: 63e299efab57cd998bd73eced9ccc76d63d1bc852d38db3ae9f3cf7d0b2040ac
Contents?: true
Size: 1.15 KB
Versions: 13
Compression:
Stored size: 1.15 KB
Contents
module NetSuite module Records class AssemblyBuild include Support::Fields include Support::RecordRefs include Support::Actions include Support::Records include Support::Fields include Namespaces::TranInvt actions :get, :add, :initialize, :delete, :update, :upsert, :upsert_list, :search fields :bin_numbers, :buildable, :created_date, :expiration_date, :last_modified_date, :memo, :quantity, :serial_numbers, :tran_date, :tran_id read_only_fields :total record_refs :klass, :created_from, :item, :custom_form, :department, :job, :location, :posting_period, :revision, :subsidiary, :units field :component_list, AssemblyComponentList field :inventory_detail, InventoryDetail 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
13 entries across 13 versions & 1 rubygems