no message

This commit is contained in:
AzureAD\SylvainDUVERNAY
2026-02-02 15:52:52 +01:00
parent 7f99b78c8a
commit 0fa522ece6
6 changed files with 134 additions and 5 deletions

View File

@@ -9,11 +9,11 @@ CREATE OR REPLACE VIEW public.vw_utility_sale_physical_contract AS
sl.quantity AS "dblQuantity",
pu1.name AS "strSaleUom",
0 AS "dblDeliveredQuantity",
sl.linked_price AS "dblPrice",
COALESCE(sl.linked_price, 0) AS "dblPrice",
pu2.name AS "strPriceUnit",
'n/a'::text AS "strPriceCurrency",
sl.unit_price AS "dblUnitPrice",
sl.quantity_theorical AS "dblTheoreticalQuantity",
COALESCE(sl.quantity_theorical,0) AS "dblTheoreticalQuantity",
round((sl.quantity * sl.unit_price::double precision)::numeric, get_rounding_position(2::numeric)) AS "dblLineAmount",
'n/a'::text AS "strCurrency",
0::numeric AS "dblLineBaseAmount",