Skip to content
This repository has been archived by the owner on Mar 1, 2021. It is now read-only.

Commit

Permalink
added new invoices_xf model
Browse files Browse the repository at this point in the history
  • Loading branch information
Tristan Handy committed Jul 2, 2017
1 parent 7f60e5b commit 9441787
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions models/transform/quickbooks_invoices_xf.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
with invoices as (

select * from {{ref('quickbooks_invoices')}}

),

payments as (

select
*,
total_amt - balance as amount_paid,
case
when balance < .05 * total_amt then 1
else 0
end as paid
from invoices

),

final as (

select
*,
case
when paid = 0 and due_date < current_date then 1
else 0
end as overdue
from payments

)

select * from final

0 comments on commit 9441787

Please sign in to comment.