Sha256: f0119a4aace13f913e0b304bb9822de560716dc06ae3699b403a38a52b3d1554

Contents?: true

Size: 1.61 KB

Versions: 4

Compression:

Stored size: 1.61 KB

Contents

module NetSuite
  module Records
    class Contact
      include Support::Fields
      include Support::RecordRefs
      include Support::Records
      include Support::Actions
      include Namespaces::ListRel

      actions :get, :get_deleted, :get_list, :add, :delete, :delete_list, :search, :update, :upsert, :upsert_list

      fields :salutation, :first_name, :middle_name, :last_name, :title, :phone, :fax, :email, :default_address,
             :entity_id, :phonetic_name, :alt_email, :office_phone, :home_phone, :mobile_phone, :supervisor_phone,
             :assistant_phone, :comments, :bill_pay, :is_private, :is_inactive

      field :addressbook_list,  ContactAddressbookList
      field :custom_field_list, CustomFieldList
      # field :subscriptions_list, SubscriptionsList
      # field :category_list, CategoryList

      read_only_fields :last_modified_date, :date_created

      record_refs :custom_form, :company, :subsidiary, :supervisor, :assistant, :image, :global_subscription_status

      attr_reader   :internal_id
      attr_accessor :external_id
      attr_accessor :search_joins

      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

      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

4 entries across 4 versions & 1 rubygems

Version Path
netsuite-0.8.10 lib/netsuite/records/contact.rb
netsuite-0.8.9 lib/netsuite/records/contact.rb
netsuite-0.8.8 lib/netsuite/records/contact.rb
netsuite-0.8.7 lib/netsuite/records/contact.rb