diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-09-15 01:56:39 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-09-15 01:56:39 +0000 |
commit | 0825af53ea040e53372aa3ea475a658eb6d3eb22 (patch) | |
tree | c6c39b862dff89dd9c621a36496471f46b16a419 /sql | |
parent | d2af7a60f383a1f59d1439cdd30dc28579a6dcac (diff) |
Form.pm now uses strit mode except in the constructor
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@1606 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'sql')
-rw-r--r-- | sql/modules/Payment.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/modules/Payment.sql b/sql/modules/Payment.sql index 9c29ed5d..8f7f052c 100644 --- a/sql/modules/Payment.sql +++ b/sql/modules/Payment.sql @@ -27,7 +27,7 @@ COMMENT ON FUNCTION payment_get_open_accounts(int) IS $$ This function takes a single argument (1 for vendor, 2 for customer as always) and returns all entities with open accounts of the appropriate type. $$; -CREATE OR REPLACE FUNCTION get_all_accounts(in_account_class int) +CREATE OR REPLACE FUNCTION payment_get_all_accounts(in_account_class int) RETURNS SETOF entity AS $$ DECLARE out_entity entity%ROWTYPE; |