removed account types

bzr revid: fp@tinyerp.com-20080905150647-bng5uld21xgu67uz
This commit is contained in:
Fabien Pinckaers 2008-09-05 17:06:47 +02:00
commit 80eb7ca036
3 changed files with 23 additions and 2 deletions

View File

@ -1661,8 +1661,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'),

View File

@ -34,6 +34,20 @@
"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"

View File

@ -24,5 +24,12 @@
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>