netsuite 0.6.0 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -110,7 +110,7 @@ module NetSuite
|
|
|
110
110
|
when field_value.is_a?(Array)
|
|
111
111
|
'MultiSelectCustomFieldRef'
|
|
112
112
|
when field_value.is_a?(Hash)
|
|
113
|
-
when field_value.is_a?(NetSuite::Records::
|
|
113
|
+
when field_value.is_a?(NetSuite::Records::CustomRecordRef)
|
|
114
114
|
'SelectCustomFieldRef'
|
|
115
115
|
when field_value.is_a?(DateTime),
|
|
116
116
|
field_value.is_a?(Time),
|
|
@@ -4,13 +4,14 @@ module NetSuite
|
|
|
4
4
|
include Support::Fields
|
|
5
5
|
include Support::RecordRefs
|
|
6
6
|
include Support::Actions
|
|
7
|
+
include Namespaces::ListAcct
|
|
7
8
|
|
|
8
|
-
actions :get, :get_list, :add, :delete, :upsert
|
|
9
|
+
actions :get, :get_list, :add, :delete, :upsert, :search
|
|
9
10
|
|
|
10
11
|
fields :due_next_month_if_within_days, :name, :date_driven, :days_until_expiry, :days_until_next_due,
|
|
11
12
|
:day_discount_expires, :day_of_month_net_due, :discount_percent, :discount_percent_date_driven, :is_inactive,
|
|
12
13
|
:preferred
|
|
13
|
-
|
|
14
|
+
|
|
14
15
|
attr_reader :internal_id
|
|
15
16
|
attr_accessor :external_id
|
|
16
17
|
|
data/lib/netsuite/version.rb
CHANGED