Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Customer Deposit - Move klass from fields to record_refs #598

Merged
merged 1 commit into from
Nov 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/netsuite/records/customer_deposit.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class CustomerDeposit
actions :get, :get_list, :initialize, :add, :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,
:check_num, :currency_name, :is_recurring_payment, :tran_id, :auth_code,
:cc_approved, :cc_avs_street_match, :cc_avs_zip_match, :cc_expire_date, :cc_is_purchase_card_bin, :cc_name, :cc_number,
:cc_process_as_purchase_card, :cc_security_code, :cc_security_code_match, :cc_street, :cc_zip_code, :charge_it

Expand All @@ -23,7 +23,7 @@ class CustomerDeposit

record_refs :customer, :sales_order, :account, :department,
:payment_method, :payment_option, :custom_form, :currency,
:posting_period, :subsidiary, :location,
:posting_period, :subsidiary, :location, :klass
# only available in an advanced search result
:deposit_transaction

Expand Down
Loading