[IMP] crm: removed 'escalade' option in base_action_rule condition (button pushed)
[odoo/odoo.git] / addons / crm / crm_action_rule.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 import re
24 import os
25 import base64
26 import tools
27 import mx.DateTime
28
29 from tools.translate import _
30 from osv import fields
31 from osv import osv
32 from osv import orm
33 from osv.orm import except_orm
34
35 import crm
36
37 class base_action_rule(osv.osv):
38     """ Base Action Rule """
39     _inherit = 'base.action.rule'
40     _description = 'Action Rules'
41     
42     _columns = {
43         'trg_section_id': fields.many2one('crm.case.section', 'Sales Team'), 
44         'trg_max_history': fields.integer('Maximum Communication History'), 
45         'trg_categ_id':  fields.many2one('crm.case.categ', 'Category'), 
46         'regex_history' : fields.char('Regular Expression on Case History', size=128), 
47         'act_section_id': fields.many2one('crm.case.section', 'Set Team to'), 
48         'act_categ_id': fields.many2one('crm.case.categ', 'Set Category to'), 
49         'act_mail_to_partner': fields.boolean('Mail to Partner', help="Check \
50 this if you want the rule to send an email to the partner."), 
51     }
52     
53
54     def email_send(self, cr, uid, obj, emails, body, emailfrom=tools.config.get('email_from', False), context={}):
55         body = self.format_mail(obj, body)
56         if not emailfrom:
57             if hasattr(obj, 'user_id')  and obj.user_id and obj.user_id.address_id and obj.user_id.address_id.email:
58                 emailfrom = obj.user_id.address_id.email
59             
60         name = '[%d] %s' % (obj.id, tools.ustr(obj.name))
61         emailfrom = tools.ustr(emailfrom)
62         if hasattr(obj, 'section_id') and obj.section_id and obj.section_id.reply_to:
63             reply_to = obj.section_id.reply_to
64         else:
65             reply_to = emailfrom
66         if not emailfrom:
67             raise osv.except_osv(_('Error!'), 
68                     _("No E-Mail ID Found for your Company address!"))
69         return tools.email_send(emailfrom, emails, name, body, reply_to=reply_to, openobject_id=str(obj.id))
70     
71     def do_check(self, cr, uid, action, obj, context={}):
72         """ @param self: The object pointer
73         @param cr: the current row, from the database cursor,
74         @param uid: the current user’s ID for security checks,
75         @param context: A standard dictionary for contextual values"""
76         ok = super(base_action_rule, self).do_check(cr, uid, action, obj, context=context)
77
78         if hasattr(obj, 'section_id'):
79             ok = ok and (not action.trg_section_id or action.trg_section_id.id==obj.section_id.id)
80         if hasattr(obj, 'categ_id'):
81             ok = ok and (not action.trg_categ_id or action.trg_categ_id.id==obj.categ_id.id)
82
83         return ok
84
85     def do_action(self, cr, uid, action, model_obj, obj, context={}):
86         """ @param self: The object pointer
87         @param cr: the current row, from the database cursor,
88         @param uid: the current user’s ID for security checks,
89         @param context: A standard dictionary for contextual values """
90         res = super(base_action_rule, self).do_action(cr, uid, action, model_obj, obj, context=context)
91         write = {}
92         
93         if hasattr(action, 'act_section_id') and action.act_section_id:
94             obj.section_id = action.act_section_id
95             write['section_id'] = action.act_section_id.id
96
97         if hasattr(obj, 'email_cc') and action.act_email_cc:
98             if '@' in (obj.email_cc or ''):
99                 emails = obj.email_cc.split(",")
100                 if  obj.act_email_cc not in emails:# and '<'+str(action.act_email_cc)+">" not in emails:
101                     write['email_cc'] = obj.email_cc+','+obj.act_email_cc
102             else:
103                 write['email_cc'] = obj.act_email_cc
104         
105         model_obj.write(cr, uid, [obj.id], write, context)
106         emails = []
107
108         if hasattr(obj, 'email_from') and action.act_mail_to_partner:
109             emails.append(obj.email_from)
110         emails = filter(None, emails)
111         if len(emails) and action.act_mail_body:
112             emails = list(set(emails))
113             self.email_send(cr, uid, obj, emails, action.act_mail_body)
114         return True
115
116
117     def state_get(self, cr, uid, context={}):
118
119         """@param self: The object pointer
120         @param cr: the current row, from the database cursor,
121         @param uid: the current user’s ID for security checks,
122         @param context: A standard dictionary for contextual values """
123
124         res = super(base_action_rule, self).state_get(cr, uid, context=context)
125         return res  + crm.AVAILABLE_STATES
126
127     def priority_get(self, cr, uid, context={}):
128
129         """@param self: The object pointer
130         @param cr: the current row, from the database cursor,
131         @param uid: the current user’s ID for security checks,
132         @param context: A standard dictionary for contextual values """
133
134         res = super(base_action_rule, self).priority_get(cr, uid, context=context)
135         return res + crm.AVAILABLE_PRIORITIES
136
137
138 base_action_rule()
139
140 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: