[IMP] Changed all module categories, limited number of categories
[odoo/odoo.git] / addons / project_mrp / project_mrp.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 from osv import fields, osv
23 import netsvc
24
25 class project_task(osv.osv):
26     _name = "project.task"
27     _inherit = "project.task"
28     _columns = {
29         'procurement_id': fields.many2one('procurement.order', 'Procurement', ondelete='set null')
30     }
31
32     def _validate_subflows(self, cr, uid, ids):
33         for task in self.browse(cr, uid, ids):
34             if task.procurement_id:
35                 wf_service = netsvc.LocalService("workflow")
36                 wf_service.trg_validate(uid, 'procurement.order', task.procurement_id.id, 'subflow.done', cr)
37
38     def do_close(self, cr, uid, ids, *args, **kwargs):
39         res = super(project_task, self).do_close(cr, uid, ids, *args, **kwargs)
40         self._validate_subflows(cr, uid, ids)
41         return res
42
43     def do_cancel(self, cr, uid, ids, *args, **kwargs):
44         res = super(project_task, self).do_cancel(cr, uid, ids, *args, **kwargs)
45         self._validate_subflows(cr, uid, ids)
46         return res
47
48 project_task()
49
50 class product_product(osv.osv):
51     _inherit = "product.product"
52     _columns = {
53         'project_id': fields.many2one('project.project', 'Project', ondelete='set null',)
54     }
55 product_product()
56
57
58 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: