[IMP] Updated website urls on modules and info page
[odoo/odoo.git] / addons / account_anglo_saxon / __openerp__.py
1 ##############################################################################
2 #
3 #    OpenERP, Open Source Management Solution
4 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
5 #
6 #    This program is free software: you can redistribute it and/or modify
7 #    it under the terms of the GNU Affero General Public License as
8 #    published by the Free Software Foundation, either version 3 of the
9 #    License, or (at your option) any later version.
10 #
11 #    This program is distributed in the hope that it will be useful,
12 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #    GNU Affero General Public License for more details.
15 #
16 #    You should have received a copy of the GNU Affero General Public License
17 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 #
19 ##############################################################################
20
21 {
22     'name': 'Anglo-Saxon Accounting',
23     'version': '1.2',
24     'author': 'OpenERP SA, Veritos',
25     'website': 'https://www.odoo.com',
26     'description': """
27 This module supports the Anglo-Saxon accounting methodology by changing the accounting logic with stock transactions.
28 =====================================================================================================================
29
30 The difference between the Anglo-Saxon accounting countries and the Rhine 
31 (or also called Continental accounting) countries is the moment of taking 
32 the Cost of Goods Sold versus Cost of Sales. Anglo-Saxons accounting does 
33 take the cost when sales invoice is created, Continental accounting will 
34 take the cost at the moment the goods are shipped.
35
36 This module will add this functionality by using a interim account, to 
37 store the value of shipped goods and will contra book this interim 
38 account when the invoice is created to transfer this amount to the 
39 debtor or creditor account. Secondly, price differences between actual 
40 purchase price and fixed product standard price are booked on a separate 
41 account.""",
42     'images': ['images/account_anglo_saxon.jpeg'],
43     'depends': ['product', 'purchase'],
44     'category': 'Accounting & Finance',
45     'demo': [],
46     'data': ['product_view.xml'],
47     'test': ['test/anglo_saxon.yml', 'test/anglo_saxon_avg_fifo.yml'],
48     'auto_install': False,
49     'installable': True,
50 }
51
52 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: