Files
Implementation_ITSA/Database Backups/SQL Views/vw_utility_monthly_trade_ifrs_adjustments.sql
AzureAD\SylvainDUVERNAY 3986882771 Commit all views
2026-04-23 09:24:37 +02:00

9 lines
355 B
SQL

CREATE OR REPLACE VIEW public.vw_utility_monthly_trade_ifrs_adjustments AS
SELECT apti.id AS "intAdjustmentId",
apti.date AS "dtmAdjustmentDate",
apti.amount AS "dblAmount",
cur.name AS "strCurrency",
apti.comment AS "strComments"
FROM (account_physical_trade_ifrs apti
JOIN currency_currency cur ON ((cur.id = apti.currency)));;