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

SF.net SVN: ledger-smb:[5344] trunk/LedgerSMB/Report



Revision: 5344
          http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=5344&view=rev
Author:   einhverfr
Date:     2012-12-14 05:54:48 +0000 (Fri, 14 Dec 2012)
Log Message:
-----------
Moving the Outstanding and Transaction Search reports to the LedgerSMB::Reports::Invoices namespace

Modified Paths:
--------------
    trunk/LedgerSMB/Report/Invoices/Outstanding.pm
    trunk/LedgerSMB/Report/Invoices/Transactions.pm

Added Paths:
-----------
    trunk/LedgerSMB/Report/Invoices/

Removed Paths:
-------------
    trunk/LedgerSMB/Report/CashFlow/

Modified: trunk/LedgerSMB/Report/Invoices/Outstanding.pm
===================================================================
--- trunk/LedgerSMB/Report/CashFlow/Outstanding.pm	2012-12-13 15:16:25 UTC (rev 5343)
+++ trunk/LedgerSMB/Report/Invoices/Outstanding.pm	2012-12-14 05:54:48 UTC (rev 5344)
@@ -1,16 +1,16 @@
 =head1 NAME
 
-LedgerSMB::Report::CashFlow::Outstanding - Outstanding Invoice Reports for 
+LedgerSMB::Report::Invoices::Outstanding - Outstanding Invoice Reports for 
 LedgerSMB
 
 =head1 SYNOPSIS
 
- my $report = LedgerSMB::Report::CashFlow::Outstanding->new(%$request);
+ my $report = LedgerSMB::Report::Invoices::Outstanding->new(%$request);
  $report->render($request);
 
 =cut
 
-package LedgerSMB::Report::CashFlow::Outstanding;
+package LedgerSMB::Report::Invoices::Outstanding;
 use Moose;
 extends 'LedgerSMB::Report';
 with 'LedgerSMB::Report::Dates';

Modified: trunk/LedgerSMB/Report/Invoices/Transactions.pm
===================================================================
--- trunk/LedgerSMB/Report/CashFlow/Transactions.pm	2012-12-13 15:16:25 UTC (rev 5343)
+++ trunk/LedgerSMB/Report/Invoices/Transactions.pm	2012-12-14 05:54:48 UTC (rev 5344)
@@ -1,16 +1,16 @@
 =head1 NAME
 
-LedgerSMB::Report::CashFlow::Transactions - AR/AP Transactions Reports for 
+LedgerSMB::Report::Invoices::Transactions - AR/AP Transactions Reports for 
 LedgerSMB
 
 =head1 SYNOPSIS
 
-  my $report = LedgerSMB::Report::CashFlow::Transactions(%$request);
+  my $report = LedgerSMB::Report::Invoices::Transactions(%$request);
   $report->render($request);
 
 =cut
 
-package LedgerSMB::Report::CashFlow::Transactions;
+package LedgerSMB::Report::Invoices::Transactions;
 use Moose;
 extends 'LedgerSMB::Report';
 with 'LedgerSMB::Report::Dates';

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