-
Notifications
You must be signed in to change notification settings - Fork 20
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
Feature: Add home_total_amount
to the stg_quickbooks__deposit
model
#53
Changes from all commits
6241644
1c105ba
262684b
6997a18
d5f8611
f9fb585
5fb0918
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: 'auto release' | ||
on: | ||
pull_request: | ||
types: | ||
- closed | ||
branches: | ||
- main | ||
|
||
jobs: | ||
call-workflow-passing-data: | ||
if: github.event.pull_request.merged | ||
uses: fivetran/dbt_package_automations/.github/workflows/auto-release.yml@main | ||
secrets: inherit |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,6 @@ dbt_modules/ | |
logs/ | ||
.DS_Store | ||
integration_tests/.DS_Store | ||
dbt_packages/ | ||
dbt_packages/ | ||
env/ | ||
package-lock.yml |
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name: 'quickbooks_source_integration_tests' | ||
version: '0.10.0' | ||
version: '0.10.1' | ||
|
||
|
||
profile: 'integration_tests' | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
id,_fivetran_deleted,_fivetran_synced,account_id,cash_back_account_id,cash_back_amount,cash_back_memo,created_at,currency_id,department_id,global_tax_calculation,home_total_amount,private_note,sync_token,total_amount,transaction_date,transaction_source,transaction_status,updated_at | ||
66,TRUE,2020-11-03 17:02:05,,,,,2020-07-15 20:03:21,USD,,,,,,,,,,2020-07-15 20:03:21 | ||
65,TRUE,2020-11-03 17:02:05,,,,,2020-07-15 20:03:20,USD,,,,,,,,,,2020-07-15 20:03:20 | ||
3,FALSE,2020-06-23 3:58:58,28,,,,2020-05-08 14:33:48,USD,,,,d55463e9a1eebb27bbf123906cd732d3,0,26867,2020-03-27,,,2020-05-08 14:33:48 | ||
2,FALSE,2020-06-23 3:58:58,28,,,,2020-05-08 14:33:20,USD,,,,7705f28cac4ed281fca93f2d6047ac67,0,96766,2020-03-27,,,2020-05-08 14:33:20 | ||
31,FALSE,2020-06-23 3:58:58,28,,,,2020-05-28 13:09:23,USD,,,,906b6741066b841342224242068cf2dc,0,23039,2020-04-20,,,2020-05-28 13:09:23 | ||
79,FALSE,2020-08-06 18:31:59,28,,,,2020-08-06 18:28:45,USD,,,,3ef789b0719133953ab39ea39c75ee7e,0,62931,2020-07-23,,,2020-08-06 18:28:45 | ||
137,FALSE,2020-11-10 21:02:04,28,,,,2020-11-03 16:57:25,USD,,,,714c8fcbb71513414ad57c0895031129,1,24943,2020-10-28,,,2020-11-10 20:52:40 | ||
3,FALSE,2020-06-23 3:58:58,28,,,,2020-05-08 14:33:48,USD,,,26867,d55463e9a1eebb27bbf123906cd732d3,0,26867,2020-03-27,,,2020-05-08 14:33:48 | ||
2,FALSE,2020-06-23 3:58:58,28,,,,2020-05-08 14:33:20,USD,,,96766,7705f28cac4ed281fca93f2d6047ac67,0,96766,2020-03-27,,,2020-05-08 14:33:20 | ||
31,FALSE,2020-06-23 3:58:58,28,,,,2020-05-28 13:09:23,USD,,,23039,906b6741066b841342224242068cf2dc,0,23039,2020-04-20,,,2020-05-28 13:09:23 | ||
79,FALSE,2020-08-06 18:31:59,28,,,,2020-08-06 18:28:45,USD,,,62931,3ef789b0719133953ab39ea39c75ee7e,0,62931,2020-07-23,,,2020-08-06 18:28:45 | ||
137,FALSE,2020-11-10 21:02:04,28,,,,2020-11-03 16:57:25,USD,,,24943,714c8fcbb71513414ad57c0895031129,1,24943,2020-10-28,,,2020-11-10 20:52:40 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,6 +45,7 @@ final as ( | |
customer_id, | ||
cast(department_id as {{ dbt.type_string() }}) as department_id, | ||
cast( {{ dbt.date_trunc('day', 'due_date') }} as date) as due_date, | ||
exchange_rate, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
total_amount, | ||
cast( {{ dbt.date_trunc('day', 'transaction_date') }} as date) as transaction_date, | ||
transaction_status, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please be sure to add this to the src and stg.yml files and regen the docs.