Merged PR 4431: Silly fix

# Description

Fixed my silly mistake because of a copy/paste

# 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.
- [ ] 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 fix

Related work items: #27178
This commit is contained in:
Joaquin Ossa 2025-02-18 11:29:00 +00:00
commit 30e77c4877

View file

@ -255,7 +255,7 @@ select
19, 4 19, 4
) as superhog_fee_without_taxes_in_txn_currency, ) as superhog_fee_without_taxes_in_txn_currency,
wf.superhog_fee_in_gbp, wf.superhog_fee_in_gbp,
(wf.superhog_fee_in_txn_currency / (1 + vat.vat_rate))::decimal( (wf.superhog_fee_in_gbp / (1 + vat.vat_rate))::decimal(
19, 4 19, 4
) as superhog_fee_without_taxes_in_gbp, ) as superhog_fee_without_taxes_in_gbp,
vat.is_missing_user_country, vat.is_missing_user_country,