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

SF.net SVN: ledger-smb:[5403] branches/1.3



Revision: 5403
          http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=5403&view=rev
Author:   einhverfr
Date:     2012-12-25 02:33:16 +0000 (Tue, 25 Dec 2012)
Log Message:
-----------
Fixed bad targets of AP aging and tax collected reports (fix not applicable to trunk)

Modified Paths:
--------------
    branches/1.3/Changelog
    branches/1.3/sql/Pg-database.sql
    branches/1.3/sql/modules/Fixes.sql

Modified: branches/1.3/Changelog
===================================================================
--- branches/1.3/Changelog	2012-12-24 13:57:27 UTC (rev 5402)
+++ branches/1.3/Changelog	2012-12-25 02:33:16 UTC (rev 5403)
@@ -13,6 +13,7 @@
 * Fixed configure_apache.sh, read input, change of file name from 
   ledgersmb-httpd.conf to ledgersmb-httpd.conf.template (Havard S)
 * Update INSTALL - section "Adding configuration to Apache 2.x" (Havard S)
+* Fixed bad targets of AP Aging and Tax Paid reports (Chris T, 3594694)
 
 Chris T is Chris Travers
 Havard S is Havard Sorli

Modified: branches/1.3/sql/Pg-database.sql
===================================================================
--- branches/1.3/sql/Pg-database.sql	2012-12-24 13:57:27 UTC (rev 5402)
+++ branches/1.3/sql/Pg-database.sql	2012-12-25 02:33:16 UTC (rev 5403)
@@ -2672,8 +2672,8 @@
 27	action	report	64
 28	module	rp.pl	66
 28	action	report	67
-28	report	tax_collected	68
-27	report	tax_paid	65
+28	report	tax_paid	68
+27	report	ap_aging	65
 29	module	rp.pl	69
 29	action	report	70
 29	report	nontaxable_purchases	71

Modified: branches/1.3/sql/modules/Fixes.sql
===================================================================
--- branches/1.3/sql/modules/Fixes.sql	2012-12-24 13:57:27 UTC (rev 5402)
+++ branches/1.3/sql/modules/Fixes.sql	2012-12-25 02:33:16 UTC (rev 5403)
@@ -481,3 +481,13 @@
 insert into batch_class (id,class) values (7,'receipt_reversal');
 
 COMMIT;
+
+BEGIN;
+
+-- FIXING AP MENU
+
+ update menu_attribute set value = 'tax_paid' where node_id = 28 and attribute = 'report';
+
+update menu_attribute set value = 'ap_aging' where node_id = 27 and attribute = 'report';
+
+COMMIT;

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