Skip to content

Commit

Permalink
Add :add_list action to all records with :add action
Browse files Browse the repository at this point in the history
  • Loading branch information
aom committed Oct 7, 2019
1 parent a03b3ea commit d532112
Show file tree
Hide file tree
Showing 81 changed files with 81 additions and 81 deletions.
2 changes: 1 addition & 1 deletion lib/netsuite/records/account.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class Account
include Support::Actions
include Namespaces::ListAcct

actions :get, :get_list, :add, :update, :delete, :search, :upsert
actions :get, :get_list, :add, :add_list, :update, :delete, :search, :upsert

fields :acct_name, :acct_number, :acct_type, :cash_flow_rate, :cur_doc_num, :description, :eliminate, :exchange_rate,
:general_rate, :include_children, :inventory, :is_inactive, :opening_balance, :revalue, :tran_date, :balance
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/accounting_period.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class AccountingPeriod
include Support::Actions
include Namespaces::ListAcct

actions :get, :get_list, :add, :delete, :upsert, :search
actions :get, :get_list, :add, :add_list, :delete, :upsert, :search

fields :allow_non_gl_changes, :end_date, :is_adjust, :is_quarter, :is_year, :period_name, :start_date

Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/assembly_build.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class AssemblyBuild
include Support::Fields
include Namespaces::TranInvt

actions :get, :add, :initialize, :delete, :update, :upsert, :upsert_list,
actions :get, :add, :add_list, :initialize, :delete, :update, :upsert, :upsert_list,
:search

fields :bin_numbers, :buildable, :created_date, :expiration_date,
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/assembly_item.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class AssemblyItem
include Support::Actions
include Namespaces::ListAcct

actions :get, :get_list, :get_select_value, :add, :delete, :update, :upsert, :upsert_list, :search
actions :get, :get_list, :get_select_value, :add, :add_list, :delete, :update, :upsert, :upsert_list, :search

fields :auto_lead_time, :auto_preferred_stock_level, :auto_reorder_point, :available_to_partners, :average_cost, :build_entire_assembly,
:copy_description, :cost, :cost_estimate, :cost_estimate_type, :cost_estimate_units, :cost_units, :costing_method,
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/assembly_unbuild.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class AssemblyUnbuild
include Support::Fields
include Namespaces::TranInvt

actions :get, :add, :initialize, :delete, :update, :upsert, :upsert_list,
actions :get, :add, :add_list, :initialize, :delete, :update, :upsert, :upsert_list,
:search

fields :bin_numbers, :built, :created_date, :expiration_date,
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/billing_schedule.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class BillingSchedule
include Support::Actions
include Namespaces::ListAcct

actions :get, :add, :delete, :upsert, :search
actions :get, :add, :add_list, :delete, :upsert, :search

fields :bill_for_actuals, :day_period, :frequency, :in_arrears, :initial_amount, :is_inactive,
:is_public, :month_dom, :month_dow, :month_dowim, :month_mode, :name,
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/bin.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class Bin
attr_reader :internal_id
attr_accessor :external_id

actions :get, :add, :delete, :search, :update, :upsert
actions :get, :add, :add_list, :delete, :search, :update, :upsert

fields :bin_number, :is_inactive, :location, :memo

Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/bin_transfer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class BinTransfer
include Support::Actions
include Namespaces::TranInvt

actions :get, :get_list, :add, :initialize, :delete, :update, :upsert, :search
actions :get, :get_list, :add, :add_list, :initialize, :delete, :update, :upsert, :search

fields :created_date, :last_modified_date, :memo, :subsidiary, :tran_date, :tran_id

Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/cash_refund.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class CashRefund
include Support::Actions
include Namespaces::TranCust

actions :get, :add, :initialize, :delete, :update, :upsert, :search
actions :get, :add, :add_list, :initialize, :delete, :update, :upsert, :search

fields :alt_handling_cost,
:alt_shipping_cost,
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/cash_sale.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class CashSale
include Support::Actions
include Namespaces::TranSales

actions :get, :add, :initialize, :delete, :update, :upsert, :search
actions :get, :add, :add_list, :initialize, :delete, :update, :upsert, :search

fields :alt_handling_cost, :alt_shipping_cost, :auth_code, :bill_address, :cc_approved, :cc_expire_date, :cc_is_purchase_card_bin,
:cc_name, :cc_number, :cc_process_as_purchas_card, :cc_security_code, :cc_street, :cc_zip_code, :charge_it, :contrib_pct, :created_date,
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/contact.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class Contact
include Support::Actions
include Namespaces::ListRel

actions :get, :get_list, :add, :delete, :delete_list, :search, :update, :upsert
actions :get, :get_list, :add, :add_list, :delete, :delete_list, :search, :update, :upsert

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,
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/credit_memo.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class CreditMemo
include Support::Actions
include Namespaces::TranCust

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

fields :alt_handling_cost, :alt_shipping_cost, :amount_paid, :amount_remaining, :auto_apply, :balance,
:bill_address, :contrib_pct, :created_date, :currency_name, :deferred_revenue, :discount_rate, :email,
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/currency.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Currency

# https://system.netsuite.com/help/helpcenter/en_US/srbrowser/Browser2014_1/schema/record/currency.html

actions :get, :get_list, :get_all, :add, :update, :upsert, :upsert_list, :delete
actions :get, :get_list, :get_all, :add, :add_list, :update, :upsert, :upsert_list, :delete

fields :name, :symbol, :is_base_currency, :is_inactive, :override_currency_format, :display_symbol, :symbol_placement,
:locale, :formatSample, :exchangeRate, :fx_rate_update_timezone, :incl_in_fx_rate_updates, :currency_precision
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/custom_list.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class CustomList
include Support::Actions
include Namespaces::SetupCustom

actions :get, :update, :get_list, :add, :delete, :search, :upsert
actions :get, :update, :get_list, :add, :add_list, :delete, :search, :upsert

# https://system.netsuite.com/help/helpcenter/en_US/srbrowser/Browser2014_1/schema/record/customlist.html
fields :description, :name, :is_ordered, :script_id, :convert_to_custom_record,
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/custom_record.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class CustomRecord
include Support::Actions
include Namespaces::SetupCustom

actions :get, :update, :get_list, :add, :delete, :search, :upsert
actions :get, :update, :get_list, :add, :add_list, :delete, :search, :upsert

fields :allow_attachments, :allow_inline_editing, :allow_numbering_override, :allow_quick_search, :alt_name, :auto_name,
:created, :custom_record_id, :description, :disclaimer, :enabl_email_merge, :enable_numbering, :include_name,
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/custom_record_type.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class CustomRecordType
include Support::RecordRefs
include Support::Actions

actions :get, :get_list, :add, :delete, :upsert
actions :get, :get_list, :add, :add_list, :delete, :upsert

fields :allow_attachments, :allow_inline_editing, :allow_numbering_override, :allow_quick_search, :description,
:disclaimer, :enable_mail_merge, :enable_numbering, :include_name, :is_available_offline, :is_inactive,
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/customer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class Customer
include Support::Actions
include Namespaces::ListRel

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

# https://system.netsuite.com/help/helpcenter/en_US/srbrowser/Browser2014_1/schema/record/customer.html

Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/customer_category.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class CustomerCategory
include Support::Actions
include Namespaces::ListAcct

actions :get, :get_list, :get_all, :add, :update, :delete, :search
actions :get, :get_list, :get_all, :add, :add_list, :update, :delete, :search

fields :name, :is_inactive

Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/customer_deposit.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class CustomerDeposit
include Support::Records
include Namespaces::TranCust

actions :get, :get_list, :initialize, :add, :delete, :update, :upsert, :search
actions :get, :get_list, :initialize, :add, :add_list, :delete, :update, :upsert, :search

fields :created_date, :last_modified_date, :status, :payment, :tran_date, :exchange_rate, :undep_funds, :memo,
:check_num, :klass, :currency_name, :is_recurring_payment, :tran_id, :auth_code,
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/customer_payment.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class CustomerPayment
include Support::Actions
include Namespaces::TranCust

actions :get, :get_list, :initialize, :add, :delete, :update, :upsert, :search
actions :get, :get_list, :initialize, :add, :add_list, :delete, :update, :upsert, :search

fields :auth_code, :auto_apply, :cc_approved, :cc_avs_street_match, :cc_avs_zip_match,
:cc_expire_date, :cc_name, :cc_number, :cc_security_code, :cc_security_code_match, :cc_street, :cc_zip_code,
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/customer_refund.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class CustomerRefund
include Support::Actions
include Namespaces::TranCust

actions :get, :get_list, :initialize, :add, :delete, :update, :upsert, :search
actions :get, :get_list, :initialize, :add, :add_list, :delete, :update, :upsert, :search

fields :address, :cc_approved, :cc_expire_date, :cc_name, :cc_number, :cc_street, :cc_zip_code, :charge_it,
:created_date, :currency_name, :debit_card_issue_no, :exchange_rate, :last_modified_date, :memo, :pn_ref_num, :status,
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/customer_status.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class CustomerStatus
include Support::Actions
include Namespaces::ListRel

actions :get, :add, :delete, :search, :update, :upsert
actions :get, :add, :add_list, :delete, :search, :update, :upsert

fields :description, :include_in_lead_reports, :is_inactive, :name,
:probability, :stage
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/department.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class Department
include Support::Actions
include Namespaces::ListAcct

actions :get, :get_list, :get_select_value, :add, :delete, :upsert,
actions :get, :get_list, :get_select_value, :add, :add_list, :delete, :upsert,
:search, :update

fields :name, :is_inactive
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/deposit.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class Deposit
include Support::Actions
include Namespaces::TranBank

actions :get, :get_list, :add, :delete, :upsert, :update, :search
actions :get, :get_list, :add, :add_list, :delete, :upsert, :update, :search

fields :created_date, :last_modified_date, :currency_name, :exchange_rate, :tran_id, :total, :tran_date, :memo, :to_be_printed

Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/deposit_application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class DepositApplication
include Support::Actions
include Namespaces::TranCust

actions :get, :get_list, :initialize, :add, :delete, :update, :upsert, :search
actions :get, :get_list, :initialize, :add, :add_list, :delete, :update, :upsert, :search

fields :applied,
:created_date,
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/description_item.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class SubtotalItem
include Support::Actions
include Namespaces::ListAcct

actions :get, :get_list, :add, :delete, :search, :update, :upsert
actions :get, :get_list, :add, :add_list, :delete, :search, :update, :upsert

fields :available_to_partners, :created_date, :description, :display_name, :include_children, :is_inactive, :item_id, :last_modified_date

Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/discount_item.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class DiscountItem
include Support::Actions
include Namespaces::ListAcct

actions :get, :get_list, :add, :update, :delete, :search, :upsert
actions :get, :get_list, :add, :add_list, :update, :delete, :search, :upsert

fields :available_to_partners, :created_date, :description, :display_name, :include_children, :is_inactive, :is_pre_tax,
:item_id, :last_modified_date, :non_posting, :rate, :upc_code, :vendor_name
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/employee.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class Employee

# https://system.netsuite.com/help/helpcenter/en_US/srbrowser/Browser2014_1/script/record/employee.html

actions :get, :get_list, :add, :update, :upsert, :upsert_list, :delete, :search
actions :get, :get_list, :add, :add_list, :update, :upsert, :upsert_list, :delete, :search

fields :alt_name, :phone, :first_name, :last_name, :is_inactive, :email, :give_access, :send_email, :is_support_rep,
:birth_date, :hire_date, :last_review_date, :next_review_date, :title, :home_phone, :office_phone,
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/file.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class File

# https://system.netsuite.com/help/helpcenter/en_US/srbrowser/Browser2014_1/schema/record/file.html

actions :get, :add, :delete, :search, :get_list
actions :get, :add, :add_list, :delete, :search, :get_list

fields :content, :description, :name, :media_type_name, :file_type, :text_file_encoding, :created_date, :last_modified_date

Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/gift_cert_redemption.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class GiftCertRedemption
include Support::Actions
include Namespaces::TranSales

actions :get, :get_list, :add, :initialize, :delete, :update, :upsert, :search
actions :get, :get_list, :add, :add_list, :initialize, :delete, :update, :upsert, :search

fields :auth_code_amt_remaining, :auth_code_applied, :gift_cert_available

Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/gift_certificate.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class GiftCertificate
include Support::Actions
include Namespaces::ListAcct

actions :get, :get_list, :add, :initialize, :delete, :update, :upsert, :search
actions :get, :get_list, :add, :add_list, :initialize, :delete, :update, :upsert, :search

fields :amount_remaining, :created_date, :email, :expiration_date, :gift_cert_code,
:last_modified_date, :message, :name, :original_amount, :sender
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/gift_certificate_item.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class GiftCertificateItem
include Support::Actions
include Namespaces::ListAcct

actions :get, :get_list, :add, :delete, :search, :upsert
actions :get, :get_list, :add, :add_list, :delete, :search, :upsert

fields :auth_codes_list,
:available_to_partners,
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/inbound_shipment.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class InboundShipment
include Support::Actions
include Namespaces::TranPurch

actions :get, :get_list, :add, :initialize, :delete, :update, :upsert, :upsert_list, :search, :update_list
actions :get, :get_list, :add, :add_list, :initialize, :delete, :update, :upsert, :upsert_list, :search, :update_list

fields :shipment_number, :external_document_number, :shipment_status, :expected_shipping_date,
:actual_shipping_date, :expected_delivery_date, :actual_delivery_date, :shipment_memo,
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/inter_company_journal_entry.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class InterCompanyJournalEntry
include Support::Actions
include Namespaces::TranGeneral

actions :get, :get_list, :add, :delete, :search, :upsert
actions :get, :get_list, :add, :add_list, :delete, :search, :upsert

fields :approved, :created_date, :exchange_rate, :is_book_specific, :last_modified_date, :memo, :reversal_date, :reversal_defer,
:reversal_entry, :tran_date, :tran_id
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/inventory_adjustment.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class InventoryAdjustment
include Support::Actions
include Namespaces::TranInvt

actions :get, :add, :delete, :search, :update, :upsert, :upsert_list
actions :get, :add, :add_list, :delete, :search, :update, :upsert, :upsert_list

fields :created_date, :estimated_total_value, :last_modified_date, :tran_date, :tran_id, :memo

Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/inventory_item.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class InventoryItem
# }
# ]
#
actions :get, :get_list, :add, :delete, :search, :update, :upsert, :update_list
actions :get, :get_list, :add, :add_list, :delete, :search, :update, :upsert, :update_list

fields :auto_lead_time, :auto_preferred_stock_level, :auto_reorder_point, :available_to_partners, :average_cost,
:copy_description, :cost, :cost_estimate, :cost_estimate_type, :cost_estimate_units, :cost_units, :costing_method,
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/inventory_transfer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class InventoryTransfer
include Support::Actions
include Namespaces::TranInvt

actions :get, :add, :delete, :search, :update, :upsert, :upsert_list
actions :get, :add, :add_list, :delete, :search, :update, :upsert, :upsert_list

fields :klass, :created_date, :last_modified_date, :tran_date, :tran_id, :memo

Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/invoice.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class Invoice

# https://system.netsuite.com/help/helpcenter/en_US/srbrowser/Browser2014_1/schema/record/invoice.html?mode=package

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

fields :balance, :bill_address,
:billing_schedule, :contrib_pct, :created_date, :currency_name, :custom_field_list,
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/item_fulfillment.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class ItemFulfillment
include Support::Actions
include Namespaces::TranSales

actions :get, :get_list, :add, :initialize, :update, :delete, :search, :upsert, :upsert_list
actions :get, :get_list, :add, :add_list, :initialize, :update, :delete, :search, :upsert, :upsert_list

fields :tran_date, :tran_id, :shipping_cost, :memo, :ship_company, :ship_attention, :ship_addr1,
:ship_addr2, :ship_city, :ship_state, :ship_zip, :ship_phone, :ship_is_residential,
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/item_group.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class ItemGroup
include Support::Actions
include Namespaces::ListAcct

actions :get, :get_list, :add, :delete, :search, :update, :upsert
actions :get, :get_list, :add, :add_list, :delete, :search, :update, :upsert

fields :available_to_partners, :created_date, :description, :display_name, :include_children, :include_start_end_lines,
:is_inactive, :is_vsoe_bundle, :item_id, :last_modified_date, :print_items, :upc_code, :vendor_name
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/item_receipt.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class ItemReceipt
include Support::Actions
include Namespaces::TranPurch

actions :get, :get_deleted, :get_list, :add, :initialize, :delete, :update, :upsert, :search
actions :get, :get_deleted, :get_list, :add, :add_list, :initialize, :delete, :update, :upsert, :search

fields :created_date, :currency_name, :exchange_rate, :landed_cost_per_line,
:last_modified_date, :memo, :tran_date, :tran_id
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/job.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class Job
include Support::Actions
include Namespaces::ListRel

actions :get, :get_list, :add, :delete, :search, :update, :upsert
actions :get, :get_list, :add, :add_list, :delete, :search, :update, :upsert

fields :account_number, :allocate_payroll_expenses, :allow_all_resources_for_tasks, :allow_expenses, :allow_time,
:alt_name, :alt_phone, :bill_pay, :calculated_end_date, :calculated_end_date_baseline, :comments, :company_name,
Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/job_status.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class JobStatus
include Support::Actions
include Namespaces::ListRel

actions :get, :get_list, :add, :delete, :search, :update, :upsert
actions :get, :get_list, :add, :add_list, :delete, :search, :update, :upsert

fields :description, :is_inactive, :name

Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite/records/journal_entry.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class JournalEntry
include Support::Actions
include Namespaces::TranGeneral

actions :get, :get_list, :add, :delete, :search, :upsert
actions :get, :get_list, :add, :add_list, :delete, :search, :upsert

fields :approved, :created_date, :exchange_rate, :last_modified_date, :memo, :reversal_date, :reversal_defer, :reversal_entry,
:tran_date, :tran_id
Expand Down
Loading

0 comments on commit d532112

Please sign in to comment.