[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

SF.net SVN: ledger-smb:[3199] trunk/sql/modules/Company.sql



Revision: 3199
          http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=3199&view=rev
Author:   einhverfr
Date:     2011-06-03 21:05:29 +0000 (Fri, 03 Jun 2011)

Log Message:
-----------
Correcting bug where tax form is not displayed on UI

Modified Paths:
--------------
    trunk/sql/modules/Company.sql

Modified: trunk/sql/modules/Company.sql
===================================================================
--- trunk/sql/modules/Company.sql	2011-06-03 02:38:01 UTC (rev 3198)
+++ trunk/sql/modules/Company.sql	2011-06-03 21:05:29 UTC (rev 3199)
@@ -288,7 +288,8 @@
         threshold numeric,
 	control_code text,
 	credit_id int,
-	pay_to_name text
+	pay_to_name text,
+        taxform_id int
 );
 
 COMMENT ON TYPE entity_credit_search_return IS
@@ -322,7 +323,8 @@
 			ec.language_code, 
 			ec.pricegroup_id, ec.curr, ec.startdate, 
 			ec.enddate, ec.ar_ap_account_id, ec.cash_account_id, 
-			ec.threshold, e.control_code, ec.id, ec.pay_to_name
+			ec.threshold, e.control_code, ec.id, ec.pay_to_name,
+                        ec.taxform_id
 		FROM company c
 		JOIN entity e ON (c.entity_id = e.id)
 		JOIN entity_credit_account ec ON (c.entity_id = ec.entity_id)


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.