Reactivated account types and Called Template wizard after l10n_be installation ...
authorJay Vora <jvo@tinyerp.com>
Fri, 5 Sep 2008 09:35:01 +0000 (15:05 +0530)
committerJay Vora <jvo@tinyerp.com>
Fri, 5 Sep 2008 09:35:01 +0000 (15:05 +0530)
bzr revid: jvo@tinyerp.com-20080905093501-60m8v87p05x711z5

addons/account/account.py
addons/l10n_be/__terp__.py
addons/l10n_be/l10n_be_wizard.xml

index 97e52e9..1548cb9 100644 (file)
@@ -237,8 +237,8 @@ class account_account(osv.osv):
             ('expense','Expense'),
             ('tax','Tax'),
             ('cash','Cash'),
-            #('asset','Asset'),
-            #('equity','Equity'),
+            ('asset','Asset'),
+            ('equity','Equity'),
             ('closed','Closed'),
             ], 'Internal Type', required=True,),
 
@@ -1667,8 +1667,8 @@ class account_account_template(osv.osv):
             ('expense','Expense'),
             ('tax','Tax'),
             ('cash','Cash'),
-            #('asset','Asset'),
-            #('equity','Equity'),
+            ('asset','Asset'),
+            ('equity','Equity'),
             ('closed','Closed'),
             ], 'Internal Type', required=True,),
         'user_type': fields.many2one('account.account.type', 'Account Type'),
index ba6798a..bf3ebe7 100644 (file)
     "depends" : ["account", "account_report", "base_vat", "base_iban",
         "account_chart"],
     "init_xml" : [],
+    "description": """
+    This is the base module to manage the accounting chart for Belgium in Tiny ERP.
+
+    After Installing this module,The Configuration wizard for accounting is launched.
+    * We have the account templates which can be helpful to generate Charts of Accounts.
+    * On that particular wizard,You will be asked to pass the name of the company,the chart template to follow,the no. of digits to generate the code for your account and Bank account,currency  to create Journals.
+        Thus,the pure copy of Chart Template is generated.
+    * This is the same wizard that runs from Financial Managament/Configuration/Financial Accounting/Financial Accounts/Generate Chart of Accounts from a Chart Template.
+
+    Wizards provided by this module:
+    * Enlist the partners with their related VAT  and invoiced amounts.Prepares an XML file format.Path to access : Financial Management/Reporting/Listing of VAT Customers.
+    * Prepares an XML file for Vat Declaration of the Main company of the User currently Logged in.Path to access : Financial Management/Reporting/Listing of VAT Customers.
+
+    """,
     "demo_xml" : [
 #        "account_demo.xml",
         "account.report.report.csv"
index 2860fbb..1558adc 100644 (file)
                        type="wizard"
                        id="account_wizard_vat_declaration"/>
 
+       <record id="config_call_account_template" model="ir.module.module.configuration.step">
+            <field name="name">Generate Chart of Accounts from a Chart Template</field>
+            <field name="note">Generate Chart of Accounts from a Chart Template.You will be asked to pass the name of the company,the chart template to follow,the no. of digits to generate the code for your account and Bank account,currency  to create Journals.Thus,the pure copy of chart Template is generated.This is the same wizard that runs from Financial Managament/Configuration/Financial Accounting/Financial Accounts/Generate Chart of Accounts from a Chart Template.</field>
+            <field name="action_id" ref="account.action_wizard_multi_chart"/>
+            <field name="state">open</field>
+    </record>
+
        </data>
 </terp>