Skip to content

Commit af1caeb

Browse files
authored
Merge pull request #10 from swishbi/dev
Dev
2 parents ce11781 + 5271a27 commit af1caeb

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# dbt_netsuite_source v0.2.3
2+
3+
## 🚨 Breaking Changes 🚨:
4+
[PR #10](https://github.com/swishbi/dbt_netsuite_source/pull/10) includes the following breaking changes:
5+
- Removes `quantity` and `rate` columns from `stg_netsuite__transaction_lines` model. This allows these columns to be added as pass through.
6+
7+
## Contributors
8+
- [phillem15](https://github.com/phillem15) ([#10](https://github.com/swishbi/dbt_netsuite_source/pull/10))
9+
110
# dbt_netsuite_source v0.2.2
211

312
## 🚨 Breaking Changes 🚨:

dbt_project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
config-version: 2
22
require-dbt-version: [">=1.3.0", "<2.0.0"]
33
name: 'netsuite_source'
4-
version: '0.2.2'
4+
version: '0.2.3'
55

66
models:
77
netsuite_source:

models/stg_netsuite__transaction_lines.sql

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,14 @@ renamed as (
55
select
66
id as transaction_line_id,
77
transaction as transaction_id,
8+
linesequencenumber as transaction_line_number,
9+
memo,
810
class as class_id,
911
department as department_id,
1012
entity as entity_id,
1113
location as location_id,
1214
item as item_id,
1315
subsidiary as subsidiary_id,
14-
linelastmodifieddate as line_last_modified_date,
15-
linesequencenumber as line_sequence_number,
16-
memo,
17-
quantity,
18-
rate,
1916
cleared = 'T' as is_cleared,
2017
commitmentfirm = 'T' as is_commitment_firm,
2118
isbillable = 'T' as is_billable,

0 commit comments

Comments
 (0)