diff options
author | aurynn_cmd <aurynn_cmd@4979c152-3d1c-0410-bac9-87ea11338e46> | 2008-07-11 20:10:36 +0000 |
---|---|---|
committer | aurynn_cmd <aurynn_cmd@4979c152-3d1c-0410-bac9-87ea11338e46> | 2008-07-11 20:10:36 +0000 |
commit | ca5f7b9b2eb6e42d92ca08272aae315b578046ad (patch) | |
tree | 23bf1250ddb068cb9fdc8028544adca8e81ef8a4 /scripts | |
parent | 26a243484e218eac4b5ddef5ac190af72a411af5 (diff) |
Additions and fixes to the Reconciliation code.
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@2212 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/recon.pl (renamed from scripts/reconciliation.pl) | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/scripts/reconciliation.pl b/scripts/recon.pl index 9c823a09..705588ed 100644 --- a/scripts/reconciliation.pl +++ b/scripts/recon.pl @@ -1,3 +1,4 @@ +#!/usr/bin/perl =pod =head1 NAME @@ -17,10 +18,10 @@ interfacing with the Core Logic and database layers. # NOTE: This is a first draft modification to use the current parameter type. # It will certainly need some fine tuning on my part. Chris -package LedgerSMB::Scripts::Reconciliation; +package LedgerSMB::Scripts::recon; use LedgerSMB::Template; -use LedgerSMB::DBObject::Reconciliation; +use LedgerSMB::Reconciliation; =pod @@ -390,7 +391,7 @@ sub pending { if ($request->type() eq "POST") { return $template->render( { - pending=>$recon->get_pending($request->{year}."-".$request->{month}); + pending=>$recon->get_pending($request->{year}."-".$request->{month}) } ); } |