Feature request: [ 1614574 ] Port sqlj functions to pl/pgsql

Function from org.compiere.sql.Account

Warning: Untested and badly documented.
This commit is contained in:
kontro 2006-12-23 22:56:29 +00:00
parent 8457f75c4f
commit 743ebfd0c5
1 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,46 @@
/*
*This file is part of Adempiere ERP Bazaar
*http://www.adempiere.org
*
*Copyright (C) 2006 Timo Kontro
*Copyright (C) 1999-2006 ComPiere, inc
*
*This program is free software; you can redistribute it and/or
*modify it under the terms of the GNU General Public License
*as published by the Free Software Foundation; either version 2
*of the License, or (at your option) any later version.
*
*This program is distributed in the hope that it will be useful,
*but WITHOUT ANY WARRANTY; without even the implied warranty of
*MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
*GNU General Public License for more details.
*
*You should have received a copy of the GNU General Public License
*along with this program; if not, write to the Free Software
*Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.of
*/
SET search_path = adempiere, pg_catalog;
CREATE OR REPLACE FUNCTION acctBalance(
IN INTEGER, -- $1 account id
IN NUMERIC, -- $2 amount debit
IN NUMERIC -- $3 amount credit
) RETURNS NUMERIC AS
$$
DECLARE
accType CHAR(1);
accSign CHAR(1);
BEGIN
IF COALESCE($1, 0) != 0 THEN
SELECT t.AccountType, t.AccountSign
INTO accType, accSign
FROM C_ElementValue AS t WHERE t.C_ElementValue_ID = $1;
IF accSign = "N" AND accType NOT IN ("A", "E") THEN
RETURN (COALESCE($3, 0) - COALESCE($2, 0));
END IF;
END IF;
RETURN (COALESCE($2, 0) - COALESCE($3, 0));
END;
$$ LANGUAGE plpgsql;