X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=applications%2Fgeneralledger.php;h=3a7158241388c7cbfc621ebcccba6fe8a79d7356;hb=6918bb5a9e5505ebdeb1abd93127a68db5ece8b6;hp=58409c8cd688449c995f015ee30e697557b9cd88;hpb=da8311619dd73feae101d246a1957b972e00cbd2;p=fa-stable.git diff --git a/applications/generalledger.php b/applications/generalledger.php index 58409c8c..3a715824 100644 --- a/applications/generalledger.php +++ b/applications/generalledger.php @@ -1,9 +1,11 @@ application("GL",_("Banking and General Ledger")); $this->add_module(_("Transactions")); @@ -11,6 +13,7 @@ $this->add_lapp_function(0, _("Deposits"),"gl/gl_deposit.php?NewDeposit=Yes"); $this->add_lapp_function(0, _("Bank Account Transfers"),"gl/bank_transfer.php?"); $this->add_rapp_function(0, _("Journal Entry"),"gl/gl_journal.php?NewJournal=Yes"); + $this->add_rapp_function(0, _("Budget Entry"),"gl/gl_budget.php?"); $this->add_module(_("Inquiries and Reports")); $this->add_lapp_function(1, _("Bank Account Inquiry"),"gl/inquiry/bank_inquiry.php?"); @@ -31,6 +34,14 @@ $this->add_rapp_function(2, _("GL Accounts"),"gl/manage/gl_accounts.php?"); $this->add_rapp_function(2, _("GL Account Groups"),"gl/manage/gl_account_types.php?"); $this->add_rapp_function(2, _("GL Account Classes"),"gl/manage/gl_account_classes.php?"); + if (count($installed_modules) > 0) + { + foreach ($installed_modules as $mod) + { + if ($mod["tab"] == "GL") + $this->add_rapp_function(2, $mod["name"], "modules/".$mod["path"]."/".$mod["filename"]."?"); + } + } } }