Skip to content

Commit

Permalink
Fix to address failing test for journal_entry
Browse files Browse the repository at this point in the history
The :upsert_list action should be correctly formatted using snake case
since the action is defined as NetSuite::Actions::UpsertList.
  • Loading branch information
Daniel Beban committed Jan 22, 2024
1 parent e54a5ef commit 079154e
Showing 1 changed file with 1 addition and 1 deletion.
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, :upsertlist
actions :get, :get_list, :add, :delete, :search, :upsert, :upsert_list

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

0 comments on commit 079154e

Please sign in to comment.