Dump - ITSA views
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
CREATE OR REPLACE VIEW public.vw_utility_premium_composition AS
|
||||
SELECT pc.line AS "intContractLineId",
|
||||
'Purchase'::text AS "strContractType",
|
||||
pf.name AS "strPremiumType",
|
||||
pc.premium AS "dblPremiumAmount",
|
||||
pc.reference AS "strReference"
|
||||
FROM (premium_composition pc
|
||||
JOIN price_fixtype pf ON ((pc.type = pf.id)))
|
||||
WHERE (pc.line IS NOT NULL)
|
||||
UNION ALL
|
||||
SELECT pc.sale_line AS "intContractLineId",
|
||||
'Sale'::text AS "strContractType",
|
||||
pf.name AS "strPremiumType",
|
||||
pc.premium AS "dblPremiumAmount",
|
||||
pc.reference AS "strReference"
|
||||
FROM (premium_composition pc
|
||||
JOIN price_fixtype pf ON ((pc.type = pf.id)))
|
||||
WHERE (pc.sale_line IS NOT NULL);;
|
||||
Reference in New Issue
Block a user