[MERGE]
[odoo/odoo.git] / addons / l10n_uk / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 #
23 # This module provides a minimal UK chart of accounts for building upon further
24 # OpenERP's default currency and accounts are remapped to this chart
25 #
26 # This module works for OpenERP 4.1.0 (and, assumed, onwards).
27 # This module does not work for OpenERP 4.0.2 and before.
28 #
29 # VAT is structured thus:
30 #  - the user company is assumed to be non-VAT exempt (easy to modify, however)
31 #  - categories OVATS (Standard), OVATR (Reduced), OVATZ (Zero) should be
32 #    assigned to the customer taxes section of products (depending on the product)
33 #  - categories IVATS (Standard), IVATR (Reduced), IVATZ (Zero) should be
34 #    assigned to the supplier taxes section of products (depending on the product)
35 #  - categories OVATX (eXempt), OVATO (Out of scope), or nothing at all should be
36 #    assigned to default tax field of customers (depending on the customer)
37 #  - customer categorization trumps product categorization (unchanged Tiny functionality)
38 #  - on purchases, upon invoicing
39 #    - the base amount (ex-VAT) appears in the appropriate input base category (S, R, Z)
40 #    - the VAT amount appears in the appropriate input VAT category (S, R)
41 #    - invoice lines can be traced in these VAT categories
42 #    - refunds of invoices are deducted from the input category
43 #  - on sales, upon invoicing
44 #    - the base amount (ex-VAT) appears in the appropriate output base category (S, R, Z, X, O)
45 #    - the VAT amount appears in the appropriate output VAT category (S, R)
46 #    - invoice lines can be traced in these VAT categories
47 #    - refunds of invoices are deducted from the output category
48 #
49 # This forms a basis for accrual tax accounting
50 # Cash tax accounting can be accommodated with further processing in OpenERP
51 #
52 # Status beta 0.92 - tested on OpenERP 4.1.0
53 # Status beta 0.93 - tested on OpenERP 4.1.0
54 # - trivial change to depend only on 'account'
55 #   (seemed to be important for importing with no demo data)
56 # Status 1.0 - tested on OpenERP 4.1.0, 4.0.3
57 # - COGS account type fixed
58 #
59
60 {
61     'name': 'United Kingdom - minimal',
62     'version': '1.1',
63     'category': 'Localisation/Account Charts',
64     'description': """This is the base module to manage the accounting chart for United Kingdom in OpenERP.""",
65     'author': 'Seath Solutions Ltd',
66     'website': 'http://www.seathsolutions.com',
67     'depends': ['base_iban', 'base_vat', 'account_chart'],
68     'init_xml': [],
69     'update_xml': [
70         'l10n_uk_types.xml',
71         'l10n_uk_chart.xml',
72         'l10n_uk_tax.xml',
73         'l10n_uk_wizard.xml'
74     ],
75     'demo_xml': [],
76     'installable': True,
77     'active': False,
78     'certificate': '008956603329629',
79 }
80 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: