diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2008-10-08 16:07:04 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2008-10-08 16:07:04 +0000 |
commit | ef0adaca475df108bb89e651c531599c23bb84e7 (patch) | |
tree | bc203abe172299825071db8c1801d8a2074fa53d /sql | |
parent | b9a48112b0cdf744e954956f89f6d9d9f583aad7 (diff) |
Correcting function change-related error in Company.sql
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@2359 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'sql')
-rw-r--r-- | sql/modules/Company.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/modules/Company.sql b/sql/modules/Company.sql index a102fa1c..500a7188 100644 --- a/sql/modules/Company.sql +++ b/sql/modules/Company.sql @@ -664,7 +664,7 @@ create or replace function eca__location_save( AND location_class = in_location_class AND location_id = in_location_id; - SELECT location_save(in_line_one, in_line_two, in_line_three, in_city, + SELECT location_save(in_location_id, in_line_one, in_line_two, in_line_three, in_city, in_state, in_mail_code, in_country_code) INTO l_id; |