Skip to content

Commit

Permalink
Update readme/changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
fivetran-avinash committed Jul 26, 2023
1 parent 2cfcb30 commit 29373af
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@
[PR #35](https://github.com/fivetran/dbt_netsuite_source/pull/35) applies the following changes:

## 🎉 Feature Updates 🎉
- Introduces variable `netsuite2__using_exchange_rate` to allow users who don't utilize exchange rates in Netsuite2 the ability to disable that functionality within your `dbt_project.yml`, and return only the unconverted amount as the final converted amount.
- **Note**: If you are using the `dbt_netsuite` package, you will also want to set `netsuite2__using_exchange_rate` to false there as well to avoid compilation errors.
- Introduces variable `netsuite2__using_exchange_rate` to allow users who don't utilize exchange rates in Netsuite2 the ability to disable that functionality within your `dbt_project.yml`, since these models aren't being used.
- **Note**: If you are using the `dbt_netsuite` package, be sure to set it globally by inserting this code into your `dbt_project.yml`:
```yml
vars:
netsuite2__using_exchange_rate: false
```
## Under the Hood:
- Incorporated the new `fivetran_utils.drop_schemas_automation` macro into the end of each Buildkite integration test job.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ It's possible that your Netsuite connector does not sync every table that this p
```yml
vars:
netsuite2__multibook_accounting_enabled: false # True by default. Disable `accountingbooksubsidiary` and `accountingbook` if you are not using the Multi-Book Accounting feature
netsuite2__using_exchange_rate: false #True by default. Disable `exchange_rate` if you don't utilize exchange rates. Also set this variable to `false` in the `dbt_netsuite` package if you are utilizing it.
netsuite2__using_exchange_rate: false #True by default. Disable `exchange_rate` if you don't utilize exchange rates. If you set this variable to false and are using the `netsuite` transformation package, ensure it is scoped globally so that the `netsuite` package can access it as well.
netsuite2__using_vendor_categories: false # True by default. Disable `vendorcategory` if you don't categorize your vendors
netsuite2__using_jobs: false # True by default. Disable `job` if you don't use jobs

Expand Down

0 comments on commit 29373af

Please sign in to comment.