Commit all views
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
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)));;
|
||||
Reference in New Issue
Block a user