Merged PR 5449: silly me
# Description Missed the change of sign for `due_amount_in_local_currency` # Checklist - [x] The edited models and dependants run properly with production data. - [ ] The edited models are sufficiently documented. - [ ] The edited models contain PK tests, and I've ran and passed them. - [ ] I have checked for DRY opportunities with other models and docs. - [ ] I've picked the right materialization for the affected models. # Other - [ ] Check if a full-refresh is required after this PR is merged. silly me Related work items: #30204
This commit is contained in:
commit
20ce96cd29
1 changed files with 1 additions and 1 deletions
|
|
@ -23,7 +23,7 @@ with
|
||||||
c.contact_name,
|
c.contact_name,
|
||||||
'credit_note' as document_class,
|
'credit_note' as document_class,
|
||||||
cn.credit_note_currency_iso_4217 as currency,
|
cn.credit_note_currency_iso_4217 as currency,
|
||||||
cn.remaining_credit_local_curr,
|
cn.remaining_credit_local_curr * -1,
|
||||||
cn.remaining_credit_in_gbp * -1
|
cn.remaining_credit_in_gbp * -1
|
||||||
from int_xero__credit_notes cn
|
from int_xero__credit_notes cn
|
||||||
inner join int_xero__contacts c on c.id_contact = cn.id_contact
|
inner join int_xero__contacts c on c.id_contact = cn.id_contact
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue