[merge]
[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 do_close(self, cr, uid, ids, *args):
33         res = super(project_task, self).do_close(cr, uid, ids, *args)
34         tasks = self.browse(cr, uid, ids)
35         for task in tasks:
36             if task.procurement_id:
37                 wf_service = netsvc.LocalService("workflow")
38                 wf_service.trg_validate(uid, 'procurement.order', task.procurement_id.id, 'subflow.done', cr)
39         return res
40
41     def do_cancel(self, cr, uid, ids, *args):
42         res = super(project_task, self).do_cancel(cr, uid, ids, *args)
43         tasks = self.browse(cr, uid, ids)
44         for task in tasks:
45             if task.procurement_id:
46                 wf_service = netsvc.LocalService("workflow")
47                 wf_service.trg_validate(uid, 'procurement.order', task.procurement_id.id, 'subflow.cancel', cr)
48         return True
49
50 project_task()
51 class product_product(osv.osv):
52     _inherit = "product.product"
53     _columns = {
54         'project_id': fields.many2one('project.project', 'Project', ondelete='set null',)
55     }
56 product_product()    
57
58
59 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: