[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SF.net SVN: ledger-smb:[3557] trunk
- Subject: SF.net SVN: ledger-smb:[3557] trunk
- From: ..hidden..
- Date: Thu, 21 Jul 2011 20:35:44 +0000
Revision: 3557
http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=3557&view=rev
Author: einhverfr
Date: 2011-07-21 20:35:44 +0000 (Thu, 21 Jul 2011)
Log Message:
-----------
fix for UI screen for recurring transactions
Modified Paths:
--------------
trunk/bin/am.pl
trunk/scripts/asset.pl
Modified: trunk/bin/am.pl
===================================================================
--- trunk/bin/am.pl 2011-07-21 20:11:09 UTC (rev 3556)
+++ trunk/bin/am.pl 2011-07-21 20:35:44 UTC (rev 3557)
@@ -2302,22 +2302,20 @@
for ( 0 .. $#f ) {
push @temp_split, $f{$f[$_]};
}
-# $column_data{recurringemail} = {
-# text => join ':', @temp_split,
-# delimeter => ':',
-# };
- $column_data{recurringemail} = join ':', @temp_split;
+ $column_data{recurringemail} = {
+ text => (join ':', @temp_split),
+ delimiter => ':',
+ };
@temp_split = ();
@f = split /:/, $ref->{recurringprint};
for ( 0 .. $#f ) {
push @temp_split, $f{$f[$_]};
}
- $column_data{recurringprint} = join ':', @temp_split;
-# $column_data{recurringprint} = {
-# text => join ':', @temp_split,
-# delimeter => ':',
-# };
+ $column_data{recurringprint} = {
+ text => (join ':', @temp_split),
+ delimiter => ':',
+ };
$j++;
$j %= 2;
Modified: trunk/scripts/asset.pl
===================================================================
--- trunk/scripts/asset.pl 2011-07-21 20:11:09 UTC (rev 3556)
+++ trunk/scripts/asset.pl 2011-07-21 20:35:44 UTC (rev 3557)
@@ -592,7 +592,10 @@
=item search_reports
-Displays search report filter. No inputs required, Any inputs required by
+Displays search report filter. The only input expected is depreciation which if
+set and true makes this a depreciation report.
+
+Any other inputs required by
report_results can be used here to set defaults. See the required inputs for
LedgerSMB::DBObject::Asset_Report->search() for a list of such inputs.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.