flectra/addons/l10n_ca/__manifest__.py
2018-01-16 02:34:37 -08:00

53 lines
1.9 KiB
Python

# -*- coding: utf-8 -*-
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
{
'name': 'Canada - Accounting',
'author': 'Savoir-faire Linux',
'website': 'https://www.savoirfairelinux.com',
'category': 'Localization',
'description': """
This is the module to manage the Canadian accounting chart in Odoo, Flectra.
===========================================================================================
Canadian accounting charts and localizations.
Fiscal positions
----------------
When considering taxes to be applied, it is the province where the delivery occurs that matters.
Therefore we decided to implement the most common case in the fiscal positions: delivery is the
responsibility of the vendor and done at the customer location.
Some examples:
1) You have a customer from another province and you deliver to his location.
On the customer, set the fiscal position to his province.
2) You have a customer from another province. However this customer comes to your location
with their truck to pick up products. On the customer, do not set any fiscal position.
3) An international vendor doesn't charge you any tax. Taxes are charged at customs
by the customs broker. On the vendor, set the fiscal position to International.
4) An international vendor charge you your provincial tax. They are registered with your
position.
""",
'depends': [
'account',
'base_iban',
'l10n_multilang',
],
'data': [
'data/account_chart_template_data.xml',
'data/l10n_ca_chart_data.xml',
'data/account_chart_template_after_data.xml',
'data/account_data.xml',
'data/account_tax_data.xml',
'data/fiscal_templates_data.xml',
'data/account_chart_template_data.yml',
'data/res_company_data.xml',
],
'post_init_hook': 'load_translations',
}