First initial commit
This commit is contained in:
19
vw_utility_dropshipped_lots.sql
Normal file
19
vw_utility_dropshipped_lots.sql
Normal file
@@ -0,0 +1,19 @@
|
||||
-- View: public.vw_utility_dropshipped_lots
|
||||
|
||||
-- DROP VIEW public.vw_utility_dropshipped_lots;
|
||||
|
||||
CREATE OR REPLACE VIEW public.vw_utility_dropshipped_lots AS
|
||||
SELECT fm."intCompanyId",
|
||||
fm."intPurchaseLineId",
|
||||
fm."intShipmentId",
|
||||
fm."intLotId",
|
||||
fm."dblQuantity",
|
||||
fm."strUnit",
|
||||
fm."dblQuantityKg"
|
||||
FROM vw_utility_stock_movements fm
|
||||
JOIN vw_utility_shipment_in ds ON fm."intShipmentId" = ds."intShipmentId"
|
||||
JOIN vw_utility_location dl ON fm."intToLocationId" = dl."intLocationId"
|
||||
WHERE 1 = 1 AND fm."intLotId" > 0 AND ds."strToLocationType"::text <> 'storage'::text AND dl."strLocationType"::text <> 'storage'::text AND fm."strState"::text = 'done'::text;
|
||||
|
||||
ALTER TABLE public.vw_utility_dropshipped_lots
|
||||
OWNER TO postgres;
|
||||
Reference in New Issue
Block a user