*** empty log message ***
[fa-stable.git] / applications / generalledger.php
1 <?php
2
3         class general_ledger_app extends application 
4         {
5                 function general_ledger_app() 
6                 {
7                         $this->application("GL",_("Banking and General Ledger"));
8
9                         $this->add_module(_("Transactions"));
10                         $this->add_lapp_function(0, _("Payments"),"gl/gl_payment.php?NewPayment=Yes");
11                         $this->add_lapp_function(0, _("Deposits"),"gl/gl_deposit.php?NewDeposit=Yes");
12                         $this->add_lapp_function(0, _("Bank Account Transfers"),"gl/bank_transfer.php?");
13                         $this->add_rapp_function(0, _("Journal Entry"),"gl/gl_journal.php?NewJournal=Yes");
14
15                         $this->add_module(_("Inquiries and Reports"));
16                         $this->add_lapp_function(1, _("Bank Account Inquiry"),"gl/inquiry/bank_inquiry.php?");
17                         $this->add_lapp_function(1, _("GL Account Inquiry"),"gl/inquiry/gl_account_inquiry.php?");
18                         $this->add_lapp_function(1, "","");
19                         $this->add_lapp_function(1, _("Trial Balance"),"gl/inquiry/gl_trial_balance.php?");
20
21                         $this->add_rapp_function(1, _("Banking Reports"),"reporting/reports_main.php?Class=5");
22                         $this->add_rapp_function(1, _("General Ledger Reports"),"reporting/reports_main.php?Class=6");
23
24                         $this->add_module(_("Maintenance"));
25                         $this->add_lapp_function(2, _("Bank Accounts"),"gl/manage/bank_accounts.php?");
26                         $this->add_lapp_function(2, _("Payment, Deposit and Transfer Types"),"gl/manage/bank_trans_types.php?");
27                         $this->add_lapp_function(2, "","");
28                         $this->add_lapp_function(2, _("Currencies"),"gl/manage/currencies.php?");
29                         $this->add_lapp_function(2, _("Exchange Rates"),"gl/manage/exchange_rates.php?");
30
31                         $this->add_rapp_function(2, _("GL Accounts"),"gl/manage/gl_accounts.php?");
32                         $this->add_rapp_function(2, _("GL Account Groups"),"gl/manage/gl_account_types.php?");
33                         $this->add_rapp_function(2, _("GL Account Classes"),"gl/manage/gl_account_classes.php?");
34                 }
35         }
36
37
38 ?>