Dump - ITSA views

This commit is contained in:
AzureAD\SylvainDUVERNAY
2026-06-14 11:05:54 +02:00
parent 3a3e715336
commit af63a53372
27 changed files with 708 additions and 140 deletions

View File

@@ -0,0 +1,23 @@
CREATE OR REPLACE VIEW public.vw_bi_fct_fee_allocation AS
SELECT "intShipmentId",
"intLotId",
"intFeeId",
"strFeeSource" AS "Fee Source",
"strFeeType" AS "Fee Type",
"intPurchaseLineId",
"intSaleLineId",
"intProductId",
"strFee" AS "Fee",
"intSupplierId",
"strSupplier" AS "Supplier",
"strPackaging" AS "Packaging",
"strPayOrRec" AS "Pay or Receive",
"strState" AS "State",
"dblQuantity" AS "Quantity",
"dblPrice" AS "Price",
"strCurrency" AS "Currency",
"strUnit" AS "Unit",
"dblAmount" AS "Amount",
"strCostGroup" AS "Cost Group",
"intSignMultiplier" AS "Sign Multiplier"
FROM vw_utility_shipment_fee_allocation fee;;