Launchpad automatic translations update.
[odoo/odoo.git] / addons / crm / crm_operators.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 time
23
24 def som(cr, uid, partner_id, args):
25     """
26     @param cr: the current row, from the database cursor,
27     @param uid: the current user’s ID for security checks
28     """
29
30     result = args['som_interval_default']
31     max = args['som_interval_max'] or 4
32     factor = args['som_interval_decrease']
33     date_start=time.time() - args['som_interval']*3600*24*max
34     for i in range(max):
35         next_date = date_start + args['som_interval']*3600*24
36         cr.execute(
37              '''
38              select s.factor from res_partner_event e
39              left join res_partner_som s
40              on (e.som=s.id) where partner_id=%s and date>=%s and date<%s''',
41              (partner_id,
42               time.strftime('%Y-%m-%d', time.gmtime(date_start)),
43               time.strftime('%Y-%m-%d', time.gmtime(next_date))))
44
45         soms = cr.fetchall()
46         if len(soms):
47             c = 0
48             nbr = 0.0
49             for som in soms:
50                 if som[0]:
51                     c+=1
52                     nbr+=som[0]
53             if c:
54                 avg = nbr/c
55             else:
56                 avg = result
57             result = result*(1-factor) + (avg*factor)
58         else:
59             avg = args['som_interval_default']
60         date_start = next_date
61     return result
62
63
64
65 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
66