Annotation: transactions.get_closing_stock

CREATE OR REPLACE FUNCTION transactions.get_closing_stock(_on_date date, _office_id integer)
RETURNS numeric

Information: transactions.get_closing_stock

Schema transactions
Function Name get_closing_stock
Arguments _on_date date, _office_id integer
Owner postgres
Result Type numeric
Description

Implementation: transactions.get_closing_stock

CREATE OR REPLACE FUNCTION transactions.get_closing_stock(_on_date date, _office_id integer)
 RETURNS numeric
 LANGUAGE plpgsql
AS $function$
BEGIN
    RETURN 0;--TODO
END
$function$