[IMP] : Update Description for modules
[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": "http://tinyerp.com - http://veritos.nl",
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 or also called 
31 Continental accounting countries is the moment of taking the Cost of Goods Sold versus 
32 Cost of Sales. Anglo-Saxons accounting does take the cost when sales invoice is created, 
33 Continental accounting will take the cost at the moment the goods are shipped.
34
35 This module will add this functionality by using a interim account, to store the value of 
36 shipped goods and will contra book this interim account when the invoice is created to 
37 transfer this amount to the debtor or creditor account. Secondly, price differences between 
38 actual purchase price and fixed product standard price are booked on a separate account.""",
39     "images": ["images/account_anglo_saxon.jpeg"],
40     "depends": ["product", "purchase"],
41     "category": "Hidden/Dependency",
42     "init_xml": [],
43     "demo_xml": [],
44     "update_xml": ["product_view.xml",],
45     "auto_install": False,
46     "installable": True,
47     "certificate":"00557423080410733581",
48 }
49
50 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: