You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ap...@apache.org on 2007/09/17 08:15:06 UTC

svn commit: r576264 - in /ofbiz/trunk/applications/accounting/widget: AccountingScreens.xml Menus.xml

Author: apatel
Date: Sun Sep 16 23:15:06 2007
New Revision: 576264

URL: http://svn.apache.org/viewvc?rev=576264&view=rev
Log:
Menu items for upcoming financial reports.

Modified:
    ofbiz/trunk/applications/accounting/widget/AccountingScreens.xml
    ofbiz/trunk/applications/accounting/widget/Menus.xml

Modified: ofbiz/trunk/applications/accounting/widget/AccountingScreens.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/widget/AccountingScreens.xml?rev=576264&r1=576263&r2=576264&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/widget/AccountingScreens.xml (original)
+++ ofbiz/trunk/applications/accounting/widget/AccountingScreens.xml Sun Sep 16 23:15:06 2007
@@ -115,6 +115,7 @@
                                         <include-screen name="JournalEntryShortcuts"/>
                                     </container>
                                     <container style="righthalf">
+                                        <include-screen name="AccountingReports"/>
                                     </container>
                                 </widgets>
                             </section>                        
@@ -464,6 +465,16 @@
             </actions>
             <widgets>
                 <include-menu name="JournalEntryShortcuts" location="component://accounting/widget/Menus.xml"/>
+            </widgets>
+        </section>
+    </screen>
+    <screen name="AccountingReports">
+        <section>
+            <actions>
+                <set field="shortCutsMenuStyle" value=""/>
+            </actions>
+            <widgets>
+                <include-menu name="AccountingReports" location="component://accounting/widget/Menus.xml"/>
             </widgets>
         </section>
     </screen>

Modified: ofbiz/trunk/applications/accounting/widget/Menus.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/widget/Menus.xml?rev=576264&r1=576263&r2=576264&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/widget/Menus.xml (original)
+++ ofbiz/trunk/applications/accounting/widget/Menus.xml Sun Sep 16 23:15:06 2007
@@ -419,6 +419,17 @@
             <link target="NewGlJournalEntry?organizationPartyId=${organizationPartyId}&amp;debitGlAccountClassId=CASH_EQUIVALENT&amp;creditGlAccountClassId=CURRENT_LIABILITY&amp;acctgTransTypeId=PAYMENT_ACCTG_TRANS"/>
         </menu-item>
     </menu>
+    <menu name="AccountingReports" menu-container-style="${shortCutsMenuStyle}" type="simple">  
+        <menu-item name="TrialBalance" title="${uiLabelMap.AccountingTrialBalance}">
+            <link target="TrialBalance?organizationPartyId=${organizationPartyId}"/>
+        </menu-item>
+        <menu-item name="IncomeStatement" title="${uiLabelMap.AccountingIncomeStatement}">
+            <link target="IncomeStatement?organizationPartyId=${organizationPartyId}"/>
+        </menu-item>
+        <menu-item name="BalanceSheet" title="${uiLabelMap.AccountingBalanceSheet}">
+            <link target="BalanceSheet?organizationPartyId=${organizationPartyId}"/>
+        </menu-item>
+    </menu>
     
 </menus>