odoo/addons/crm/crm_operators.py

67 lines
2.3 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
import time
def som(cr, uid, partner_id, args):
"""
@param cr: the current row, from the database cursor,
@param uid: the current users ID for security checks
"""
result = args['som_interval_default']
max = args['som_interval_max'] or 4
factor = args['som_interval_decrease']
date_start=time.time() - args['som_interval']*3600*24*max
for i in range(max):
next_date = date_start + args['som_interval']*3600*24
cr.execute(
'''
select s.factor from res_partner_event e
left join res_partner_som s
on (e.som=s.id) where partner_id=%s and date>=%s and date<%s''',
(partner_id,
time.strftime('%Y-%m-%d', time.gmtime(date_start)),
time.strftime('%Y-%m-%d', time.gmtime(next_date))))
soms = cr.fetchall()
if len(soms):
c = 0
nbr = 0.0
for som in soms:
if som[0]:
c+=1
nbr+=som[0]
if c:
avg = nbr/c
else:
avg = result
result = result*(1-factor) + (avg*factor)
else:
avg = args['som_interval_default']
date_start = next_date
return result
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: