Added a Profit and Loss Drilldown page and changed menu links
authorJoe Hunt <joe.hunt.consulting@gmail.com>
Wed, 3 Feb 2010 01:10:30 +0000 (01:10 +0000)
committerJoe Hunt <joe.hunt.consulting@gmail.com>
Wed, 3 Feb 2010 01:10:30 +0000 (01:10 +0000)
CHANGELOG.txt
applications/generalledger.php
gl/inquiry/balance_sheet.php
gl/inquiry/journal_inquiry.php

index 1859d61bf94ce84b2f5ffed41aa79c5822722d32..ff39f740815c3e455a78846602ad81a126a49f46 100644 (file)
@@ -19,6 +19,14 @@ Legend:
 ! -> Note
 $ -> Affected files
 
+03-Feb-2010 Chaitanya/Joe
++ Added a Profit and Loss Drilldown page and changed menu link
+$ /applications/generalledger.php
+  /gl/inquiry/profit_loss.php (New file)
+  /gl/inquiry/balance_sheet.php
+! Better layout
+$ /gl/inquiry/journal_inquiry.php
+
 02-Feb-2010 Chaitanya
 + Added memo search on journal inquires.
 $ /gl/inquiry/journal_inquiry.php
index c227dffae1433c91112c99a205b4dfbfadfc3c57..8aca3627a92e77b7bb5327c7088941630dbe63e4 100644 (file)
@@ -42,8 +42,10 @@ class general_ledger_app extends application
 
                $this->add_rapp_function(1, _("Trial &Balance"),
                        "gl/inquiry/gl_trial_balance.php?", 'SA_GLANALYTIC');
-               $this->add_rapp_function(1, _("Balance &Sheet"),
+               $this->add_rapp_function(1, _("Balance &Sheet Drilldown"),
                        "gl/inquiry/balance_sheet.php?", 'SA_GLANALYTIC');
+               $this->add_rapp_function(1, _("&Profit and Loss Drilldown"),
+                       "gl/inquiry/profit_loss.php?", 'SA_GLANALYTIC');                
                $this->add_rapp_function(1, _("Banking &Reports"),
                        "reporting/reports_main.php?Class=5", 'SA_BANKREP');
                $this->add_rapp_function(1, _("General Ledger &Reports"),
index 370dfda6e1b3d1183b537b061c9d224800c1ddd5..a550ebc8e67c8c77f3799d4f342b5706d8eb07bb 100644 (file)
@@ -24,7 +24,7 @@ $js = "";
 if ($use_date_picker)
        $js = get_js_date_picker();
 
-page(_($help_context = "Balance Sheet"), false, false, "", $js);
+page(_($help_context = "Balance Sheet Drilldown"), false, false, "", $js);
 
 //----------------------------------------------------------------------------------------------------
 // Ajax updates
index 308abd782ac9c9aad25e38518dff0bc3622c0ce0..3ceb3241e36902e2cec9d49986f0f3b440055147 100644 (file)
@@ -43,7 +43,6 @@ start_table("class='tablestyle_noborder'");
 start_row();
 
 ref_cells(_("Reference:"), 'Ref', '',null, _('Enter reference fragment or leave empty'));
-ref_cells(_("Memo:"), 'Memo', '',null, _('Enter memo fragment or leave empty'));
 
 journal_types_list_cells(_("Type:"), "filterType");
 date_cells(_("From:"), 'FromDate', '', null, 0, -1, 0);
@@ -52,7 +51,9 @@ date_cells(_("To:"), 'ToDate');
 check_cells( _("Show closed:"), 'AlsoClosed', null);
 
 submit_cells('Search', _("Search"), '', '', 'default');
-
+end_row();
+start_row();
+ref_cells(_("Memo:"), 'Memo', '',null, _('Enter memo fragment or leave empty'));
 end_row();
 end_table();