[FIX] working urls
[odoo/odoo.git] / addons / project_mrp / __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 {
24     'name': 'Create Tasks on SO',
25     'version': '1.0',
26     "category": "Project Management",
27     'complexity': "easy",
28     'description': """
29 Automatically creates project tasks from procurement lines
30 ==========================================================
31
32 This module will automatically create a new task for each procurement
33 order line (e.g. for sale order lines), if the corresponding product
34 meets the following characteristics:
35
36   * Type = Service
37   * Procurement method (Order fulfillment) = MTO (make to order)
38   * Supply/Procurement method = Produce
39
40 If on top of that a projet is specified on the product form (in the Procurement
41 tab), then the new task will be created in that specific project.
42 Otherwise, the new task will not belong to any project, and may be added to a
43 project manually later.
44
45 When the project task is completed or cancelled, the workflow of the corresponding
46 procurement line is updated accordingly. For example if this procurement corresponds
47 to a sale order line, the sale order line will be considered delivered when the
48 task is completed.
49
50 """,
51     'author': 'OpenERP SA',
52     'website': 'http://www.openerp.com',
53     'images': ['images/product.jpeg', 'images/task_from_SO.jpeg'],
54     'depends': ['project', 'procurement', 'sale', 'mrp_jit'],
55     'init_xml': [],
56     'update_xml': ['project_mrp_workflow.xml', 'process/project_mrp_process.xml', 'project_mrp_view.xml'],
57     'demo_xml': [],
58     'test': ['test/project_task_procurement.yml'],
59     'installable': True,
60     'active': False,
61     'certificate': '0031976495453',
62 }
63 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: