[FIX]crm: crm lead/opp merge, when opp has stage with state cancel, then it is less...
[odoo/odoo.git] / addons / procurement / wizard / schedulers_all.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 import threading
23 from openerp import pooler
24
25 from openerp.osv import fields, osv
26
27 class procurement_compute_all(osv.osv_memory):
28     _name = 'procurement.order.compute.all'
29     _description = 'Compute all schedulers'
30
31     _columns = {
32         'automatic': fields.boolean('Automatic orderpoint',help='Triggers an automatic procurement for all products that have a virtual stock under 0. You should probably not use this option, we suggest using a MTO configuration on products.'),
33     }
34
35     _defaults = {
36          'automatic': lambda *a: False,
37     }
38
39     def _procure_calculation_all(self, cr, uid, ids, context=None):
40         """
41         @param self: The object pointer.
42         @param cr: A database cursor
43         @param uid: ID of the user currently logged in
44         @param ids: List of IDs selected
45         @param context: A standard dictionary
46         """
47         proc_obj = self.pool.get('procurement.order')
48         #As this function is in a new thread, i need to open a new cursor, because the old one may be closed
49         new_cr = pooler.get_db(cr.dbname).cursor()
50         for proc in self.browse(new_cr, uid, ids, context=context):
51             proc_obj.run_scheduler(new_cr, uid, automatic=proc.automatic, use_new_cursor=new_cr.dbname,\
52                     context=context)
53         #close the new cursor
54         new_cr.close()
55         return {}
56
57     def procure_calculation(self, cr, uid, ids, context=None):
58         """
59         @param self: The object pointer.
60         @param cr: A database cursor
61         @param uid: ID of the user currently logged in
62         @param ids: List of IDs selected
63         @param context: A standard dictionary
64         """
65         threaded_calculation = threading.Thread(target=self._procure_calculation_all, args=(cr, uid, ids, context))
66         threaded_calculation.start()
67         return {'type': 'ir.actions.act_window_close'}
68
69 procurement_compute_all()
70
71 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: