[MERGE] Merged module screenshots and improvements to module descriptions.
[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"      : "Stock Accounting for Anglo-Saxon Countries",
23     "version"   : "1.2",
24     "author"    : "OpenERP SA, Veritos",
25     "website"   : "http://tinyerp.com - http://veritos.nl",
26     "description" : """Implement the Anglo-Saxon Stock Accounting Method
27     This module will support the Anglo-Saxon accounting methodology by
28     changing the accounting logic with stock transactions. The difference between the Anglo-Saxon accounting countries
29     and the Rhine - or also called Continental accounting countries - is the moment of taking the Cost of Goods Sold versus Cost of Sales.
30     Anglo-Saxons accounting does take the cost when sales invoice is created, Continental accounting will take the cost at the moment the goods are shipped.
31     This module will add this functionality by using an interim account, to store the value of shipped goods and will reverse this
32     interim account
33     when the invoice is created to transfer this amount to the debtor or creditor account.
34     Secondly, price differences between actual purchase price and fixed product standard price are booked on a separate account""",
35     "images"   : ["images/account_anglo_saxon.jpeg"],
36     "depends"   : ["product", "purchase"],
37     "category"  : "Warehouse",
38     "init_xml"  : [],
39     "demo_xml"  : [],
40     "update_xml" : ["product_view.xml",],
41     "active"    : False,
42     "installable": True,
43     "certificate":"00557423080410733581",
44 }
45
46 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: