-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ADD] mx generic chart of accounts test
- Loading branch information
Showing
3 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# -*- coding: utf-8 -*- | ||
# Part of Odoo. See LICENSE file for full copyright and licensing details. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# -*- coding: utf-8 -*- | ||
# Part of Odoo. See LICENSE file for full copyright and licensing details. | ||
|
||
{ | ||
'name': 'Mexico Generic - Accounting', | ||
'version': '1.1', | ||
'category': 'Localization', | ||
'description': """ | ||
This is the base module to manage the generic accounting chart in Odoo. | ||
============================================================================== | ||
Install some generic chart of accounts. | ||
""", | ||
'depends': [ | ||
'account', | ||
], | ||
'data': [ | ||
'data/configurable_account_chart.xml', | ||
], | ||
'installable': True, | ||
'website': 'https://www.odoo.com/page/accounting', | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<openerp> | ||
<data noupdate="1"> | ||
|
||
<record id="transfer_account_id" model="account.account.template"> | ||
<field name="code">1017</field> | ||
<field name="name">Transferencias internas</field> | ||
<field name="reconcile" eval='True'/> | ||
<field name="user_type_id" ref="account.data_account_type_current_assets"/> | ||
</record> | ||
<record id="configurable_chart_template" model="account.chart.template"> | ||
<field name="name">Mexico Basic Account Chart Template</field> | ||
<field name="transfer_account_id" ref="transfer_account_id"/> | ||
<field name="currency_id" ref="base.MXN"/> | ||
</record> | ||
<record id="transfer_account_id" model="account.account.template"> | ||
<field name="chart_template_id" ref="configurable_chart_template"/> | ||
</record> | ||
</data> | ||
</openerp> |