no message
This commit is contained in:
@@ -8,7 +8,13 @@ CREATE OR REPLACE VIEW public.vw_bi_dim_purchase_physical_contract AS
|
||||
"strCounterparty" AS "Supplier",
|
||||
"strReference" AS "Contract Ref",
|
||||
"dtmContractDate" AS "Contract Date",
|
||||
"strContractStatus" AS "Contract Status",
|
||||
CASE
|
||||
WHEN "strContractStatus"::text = 'Draft'::text THEN ("strContractStatus"::text || ' 🧾'::text)::character varying
|
||||
WHEN "strContractStatus"::text = 'Confirmed'::text THEN ("strContractStatus"::text || ' ✅'::text)::character varying
|
||||
WHEN "strContractStatus"::text = 'Validated'::text THEN ("strContractStatus"::text || ' ✔️'::text)::character varying
|
||||
WHEN "strContractStatus"::text = 'Processing'::text THEN ("strContractStatus"::text || ' ⏳'::text)::character varying
|
||||
ELSE "strContractStatus"
|
||||
END AS "Contract Status",
|
||||
"strPaymentTerm" AS "Payment Terms",
|
||||
"strCurrency" AS "Currency",
|
||||
"strWeightBasis" AS "Weight Basis",
|
||||
|
||||
Reference in New Issue
Block a user