Sha256: 62fc7a2d06be819a7320b5116dbf23424a1dd73ac39a094c0831d002f3af26b9

Contents?: true

Size: 1.28 KB

Versions: 1

Compression:

Stored size: 1.28 KB

Contents

module NetSuite
  module Records
    class ItemReceiptItem
      include Support::Fields
      include Support::RecordRefs
      include Support::Records
      include Namespaces::TranPurch

      fields :bin_numbers, :currency, :description, :expiration_date, :is_drop_shipment,
             :item_name, :item_receive, :job_name, :line, :on_hand, :order_line,
             :quantity, :quantity_remaining, :rate, :restock, :serial_numbers,
             :unit_cost_override, :units_display

      record_refs :bill_variance_status, :inventory_detail, :item, :landed_cost,
                  :location

      field :options, CustomFieldList
      field :custom_field_list, CustomFieldList

      def initialize(attributes_or_record = {})
        case attributes_or_record
        when Hash
          initialize_from_attributes_hash(attributes_or_record)
        when self.class
          initialize_from_record(attributes_or_record)
        end
      end

      def initialize_from_record(record)
        self.attributes = record.send(:attributes)
      end

      def to_record
        rec = super
        if rec["#{record_namespace}:customFieldList"]
          rec["#{record_namespace}:customFieldList!"] = rec.delete("#{record_namespace}:customFieldList")
        end
        rec
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
netsuite-0.8.9 lib/netsuite/records/item_receipt_item.rb