36 lines
1.1 KiB
Python
36 lines
1.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
|
|
|
# Copyright (C) 2011 Smartmode LTD (<http://www.smartmode.co.uk>).
|
|
|
|
{
|
|
'name': 'UK - Accounting',
|
|
'version': '1.0',
|
|
'category': 'Localization',
|
|
'description': """
|
|
This is the latest UK Odoo localisation necessary to run Odoo accounting for UK SME's with:
|
|
=================================================================================================
|
|
- a CT600-ready chart of accounts
|
|
- VAT100-ready tax structure
|
|
- InfoLogic UK counties listing
|
|
- a few other adaptations""",
|
|
'author': 'SmartMode LTD',
|
|
'website': 'http://www.smartmode.co.uk',
|
|
'depends': [
|
|
'account',
|
|
'base_iban',
|
|
'base_vat',
|
|
],
|
|
'data': [
|
|
'data/l10n_uk_chart_data.xml',
|
|
'data/account.account.template.csv',
|
|
'data/account.chart.template.csv',
|
|
'data/account.account.tag.csv',
|
|
'data/account.tax.group.csv',
|
|
'data/account.tax.template.csv',
|
|
'data/res.country.state.csv',
|
|
'data/account_chart_template_data.yml',
|
|
],
|
|
'demo' : ['demo/l10n_uk_demo.xml'],
|
|
}
|