Class: NetSuite::Records::CustomFieldList
Instance Method Summary
collapse
#record_namespace
Constructor Details
#initialize(attributes = {}) ⇒ CustomFieldList
Returns a new instance of CustomFieldList.
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# File 'lib/netsuite/records/custom_field_list.rb', line 6
def initialize(attributes = {})
case attributes[:custom_field]
when Hash
(attributes[:custom_field])
when Array
attributes[:custom_field].each { |custom_field| (custom_field) }
end
@custom_fields_assoc = Hash.new
custom_fields.each do |custom_field|
if reference_id = custom_field.send(reference_id_type)
@custom_fields_assoc[reference_id.to_sym] = custom_field
end
end
end
|
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(sym, *args, &block) ⇒ Object
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# File 'lib/netsuite/records/custom_field_list.rb', line 40
def method_missing(sym, *args, &block)
if @custom_fields_assoc.include?(sym)
return @custom_fields_assoc[sym]
end
if sym.to_s.end_with?('=')
field_name = sym.to_s[0..-2]
delete_custom_field(field_name.to_sym)
return create_custom_field(field_name, args.first)
end
super(sym, *args, &block)
end
|
Instance Method Details
#custom_fields ⇒ Object
23
24
25
|
# File 'lib/netsuite/records/custom_field_list.rb', line 23
def custom_fields
@custom_fields ||= []
end
|
#custom_fields_by_type(type) ⇒ Object
In case you want to get only MultiSelectCustomFieldRef for example:
list.custom_fields_by_type "MultiSelectCustomFieldRef"
36
37
38
|
# File 'lib/netsuite/records/custom_field_list.rb', line 36
def custom_fields_by_type(type)
custom_fields.select { |field| field.type == "platformCore:#{type}" }
end
|
#delete_custom_field(field) ⇒ Object
27
28
29
30
|
# File 'lib/netsuite/records/custom_field_list.rb', line 27
def delete_custom_field(field)
custom_fields.delete_if { |c| c.send(reference_id_type).to_sym == field }
@custom_fields_assoc.delete(field)
end
|
#respond_to?(sym, include_private = false) ⇒ Boolean
56
57
58
59
|
# File 'lib/netsuite/records/custom_field_list.rb', line 56
def respond_to?(sym, include_private = false)
return true if @custom_fields_assoc.include?(sym)
super
end
|
#to_record ⇒ Object
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
# File 'lib/netsuite/records/custom_field_list.rb', line 61
def to_record
{
"#{record_namespace}:customField" => custom_fields.map do |custom_field|
if custom_field.value.respond_to?(:to_record)
custom_field_value = custom_field.value.to_record
elsif custom_field.value.is_a?(Array)
custom_field_value = custom_field.value.map(&:to_record)
else
custom_field_value = custom_field.value.to_s
end
base = {
"platformCore:value" => custom_field_value,
'@xsi:type' => custom_field.type
}
if custom_field.internal_id
base['@internalId'] = custom_field.internal_id
end
if custom_field.script_id
base['@scriptId'] = custom_field.script_id
end
base
end
}
end
|