# Description Propagate account code and account name for Xero reporting models, specifically: * xero__credit_note_line_items * xero__invoice_line_items * xero__sales_denom_mart These are already available in intermediate models. This is independent from KPIs, but I feel like we should propagate this to reporting since are useful fields for accounting purposes. Happy to discuss if this needs to be reflected in PBI. # Checklist - [X] The edited models and dependants run properly with production data. - [X] The edited models are sufficiently documented. - [X] The edited models contain PK tests, and I've ran and passed them. - [NA] I have checked for DRY opportunities with other models and docs. - [NA] I've picked the right materialization for the affected models. # Other - [ ] Check if a full-refresh is required after this PR is merged. Related work items: #26531
44 lines
2 KiB
SQL
44 lines
2 KiB
SQL
with
|
|
int_xero__sales_denom_mart as (
|
|
select * from {{ ref("int_xero__sales_denom_mart") }}
|
|
)
|
|
select
|
|
sdm.id_line_item as id_line_item,
|
|
sdm.id_item as id_item,
|
|
sdm.document_class as document_class,
|
|
sdm.item_code as item_code,
|
|
sdm.account_code as account_code,
|
|
sdm.account_name as account_name,
|
|
sdm.quantity as quantity,
|
|
sdm.unit_amount as unit_amount,
|
|
sdm.line_amount_local_curr as line_amount_local_curr,
|
|
sdm.line_amount_in_gbp as line_amount_in_gbp,
|
|
sdm.line_amount_wo_taxes_local_curr as line_amount_wo_taxes_local_curr,
|
|
sdm.line_amount_wo_taxes_in_gbp as line_amount_wo_taxes_in_gbp,
|
|
sdm.tax_amount_local_curr as tax_amount_local_curr,
|
|
sdm.tax_amount_in_gbp as tax_amount_in_gbp,
|
|
sdm.tax_type as tax_type,
|
|
sdm.line_description as line_description,
|
|
sdm.id_document as id_document,
|
|
sdm.reference as reference,
|
|
sdm.document_number as document_number,
|
|
sdm.document_issued_at_utc as document_issued_at_utc,
|
|
sdm.document_issued_date_utc as document_issued_date_utc,
|
|
sdm.document_type as document_type,
|
|
sdm.document_currency_iso_4217 as document_currency_iso_4217,
|
|
sdm.exchange_rate_to_gbp as exchange_rate_to_gbp,
|
|
sdm.document_status as document_status,
|
|
sdm.line_amount_tax_inclusiveness as line_amount_tax_inclusiveness,
|
|
sdm.header_total_amount_local_curr as header_total_amount_local_curr,
|
|
sdm.header_total_amount_in_gbp as header_total_amount_in_gbp,
|
|
sdm.header_total_amount_wo_tax_local_curr as header_total_amount_wo_tax_local_curr,
|
|
sdm.header_total_amount_wo_tax_in_gbp as header_total_amount_wo_tax_in_gbp,
|
|
sdm.header_total_tax_local_curr as header_total_tax_local_curr,
|
|
sdm.header_total_tax_in_gbp as header_total_tax_in_gbp,
|
|
sdm.header_total_due_local_curr as header_total_due_local_curr,
|
|
sdm.header_total_due_in_gbp as header_total_due_in_gbp,
|
|
sdm.id_contact as id_contact,
|
|
sdm.id_deal as id_deal,
|
|
sdm.contact_name as contact_name
|
|
|
|
from int_xero__sales_denom_mart sdm
|