Skip to content

Commit

Permalink
Add subsidiaries pass through columns
Browse files Browse the repository at this point in the history
  • Loading branch information
jmongerlyra committed Jun 14, 2024
1 parent dc306db commit ef49750
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions dbt_project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ vars:
accounts_pass_through_columns: []
classes_pass_through_columns: []
departments_pass_through_columns: []
subsidiaries_pass_through_columns: []
transactions_pass_through_columns: []
transaction_lines_pass_through_columns: []
balance_sheet_transaction_detail_columns: []
Expand Down
6 changes: 5 additions & 1 deletion models/netsuite2/netsuite2__transaction_details.sql
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,11 @@ transaction_details as (
{{ fivetran_utils.persist_pass_through_columns('departments_pass_through_columns', identifier='departments') }},

subsidiaries.subsidiary_id,
subsidiaries.name as subsidiary_name,
subsidiaries.name as subsidiary_name

--The below script allows for subsidiaries table pass through columns.
{{ fivetran_utils.persist_pass_through_columns('subsidiaries_pass_through_columns', identifier='subsidiaries') }},

case
when lower(accounts.account_type_id) in ('income', 'othincome') then -transactions_with_converted_amounts.converted_amount_using_transaction_accounting_period
else transactions_with_converted_amounts.converted_amount_using_transaction_accounting_period
Expand Down

0 comments on commit ef49750

Please sign in to comment.