blob: 641f191bb92e1661cecba0b43c8c78550d76e168 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<!--We complete the declaration of the chart of account here.
These data are to be created once the accounts have been created in database,
they finish "linking" the CoA to them.-->
<record id="account_chart_template_common" model="account.chart.template">
<field name="property_account_receivable_id" ref="account_common_4300"/>
<field name="property_account_payable_id" ref="account_common_4100"/>
<field name="property_account_expense_categ_id" ref="account_common_600"/>
<field name="property_account_income_categ_id" ref="account_common_7000"/>
<field name="income_currency_exchange_account_id" ref="account_common_768"/>
<field name="expense_currency_exchange_account_id" ref="account_common_668"/>
<field name="default_pos_receivable_account_id" ref="account_common_4301" />
</record>
</data>
</odoo>
|