diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2008-08-16 22:54:24 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2008-08-16 22:54:24 +0000 |
commit | eb55de10645296a7a1c82ebc3ee41adda42845e7 (patch) | |
tree | 93fc97b80431c08bddeca13774f1248bf4846cef | |
parent | a6b7cae648ee491d1b42f007f631b6e6e6d66538 (diff) |
Correcting bug 2006030
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@2273 4979c152-3d1c-0410-bac9-87ea11338e46
-rw-r--r-- | sql/modules/Payment.sql | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/modules/Payment.sql b/sql/modules/Payment.sql index bee243f8..19e8530d 100644 --- a/sql/modules/Payment.sql +++ b/sql/modules/Payment.sql @@ -282,9 +282,9 @@ END; $$ LANGUAGE plpgsql; COMMENT ON FUNCTION payment_get_all_contact_invoices -(in_account_class int, in_business_type int, in_currency char(3), - in_date_from date, in_date_to date, in_batch_id int, - in_ar_ap_accno text) IS +(in_account_class int, in_business_id int, in_currency char(3), + in_date_from date, in_date_to date, in_batch_id int, + in_ar_ap_accno text, in_meta_number text) IS $$ This function takes the following arguments (all prefaced with in_ in the db): account_class: 1 for vendor, 2 for customer |