[FIX] Schedule jobs even if their next time has passed.
[odoo/odoo.git] / addons / stock / __terp__.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution   
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6 #    $Id$
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU General Public License as published by
10 #    the Free Software Foundation, either version 3 of the License, or
11 #    (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU General Public License for more details.
17 #
18 #    You should have received a copy of the GNU General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23
24 {
25     "name" : "Stock Management",
26     "version" : "1.1",
27     "author" : "Tiny",
28     "description" : """OpenERP Stock Management module can manage multi-warehouses, multi and structured stock locations.
29 Thanks to the double entry management, the inventory controlling is powerful and flexible:
30 * Moves history and planning,
31 * Different inventory methods (FIFO, LIFO, ...)
32 * Stock valuation (standard or average price, ...)
33 * Robustness faced with Inventory differences
34 * Automatic reordering rules (stock level, JIT, ...)
35 * Bar code supported
36 * Rapid detection of mistakes through double entry system
37 * Traceability (upstream/downstream, production lots, serial number, ...)
38     """,
39     "website" : "http://www.openerp.com",
40     "depends" : ["product", "account"],
41     "category" : "Generic Modules/Inventory Control",
42     "init_xml" : [],
43     "demo_xml" : ["stock_demo.xml"],
44     "update_xml" : [
45         "stock_workflow.xml", 
46         "stock_data.xml", 
47         "stock_incoterms.xml",
48         "stock_wizard.xml", 
49         "stock_view.xml", 
50         "stock_report.xml", 
51         "stock_sequence.xml", 
52         "product_data.xml",
53         "product_view.xml",
54         "partner_view.xml",
55         "report_stock_view.xml",
56         "security/stock_security.xml",
57         "security/ir.model.access.csv",
58     ],
59     'demo_xml': ['stock_demo.xml'],
60     'installable': True,
61     'active': False,
62     'certificate': '0055421559965',
63 }
64 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: