[IMP] change as per review
[odoo/odoo.git] / addons / crm_fundraising / crm_fundraising.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 base_status.base_stage import base_stage
23 from crm import crm
24 from crm import wizard
25 from osv import fields, osv
26 from tools.translate import _
27
28 wizard.mail_compose_message.SUPPORTED_MODELS.append('crm.fundraising')
29
30 class crm_fundraising(base_stage, osv.osv):
31     """ Fund Raising Cases """
32
33     _name = "crm.fundraising"
34     _description = "Fund Raising"
35     _order = "id desc"
36     _inherit = ['mail.thread']
37     _columns = {
38             'id': fields.integer('ID', readonly=True),
39             'name': fields.char('Name', size=128, required=True),
40             'active': fields.boolean('Active', required=False),
41             'date_action_last': fields.datetime('Last Action', readonly=1),
42             'date_action_next': fields.datetime('Next Action', readonly=1),
43             'description': fields.text('Description'),
44             'create_date': fields.datetime('Creation Date' , readonly=True),
45             'write_date': fields.datetime('Update Date' , readonly=True),
46             'date_deadline': fields.date('Deadline'),
47             'user_id': fields.many2one('res.users', 'Responsible'),
48             'section_id': fields.many2one('crm.case.section', 'Sales Team', \
49                             select=True, help='Sales team to which Case belongs to. Define Responsible user and Email account for mail gateway.'),
50             'company_id': fields.many2one('res.company', 'Company'),
51             'partner_id': fields.many2one('res.partner', 'Partner'),
52             'email_cc': fields.text('Watchers Emails', size=252 , help="These email addresses will be added to the CC field of all inbound and outbound emails for this record before being sent. Separate multiple email addresses with a comma"),
53             'email_from': fields.char('Email', size=128, help="These people will receive email."),
54             'date_closed': fields.datetime('Closed', readonly=True),
55             'date': fields.datetime('Date'),
56             'priority': fields.selection(crm.AVAILABLE_PRIORITIES, 'Priority'),
57             'categ_id': fields.many2one('crm.case.categ', 'Category', \
58                                 domain="[('section_id','=',section_id),\
59                                 ('object_id.model', '=', 'crm.fundraising')]"),
60             'planned_revenue': fields.float('Planned Revenue'),
61             'planned_cost': fields.float('Planned Costs'),
62             'probability': fields.float('Probability (%)'),
63             'partner_name': fields.char("Employee's Name", size=64),
64             'partner_name2': fields.char('Employee Email', size=64),
65             'partner_phone': fields.char('Phone', size=32),
66             'partner_mobile': fields.char('Mobile', size=32),
67             'stage_id': fields.many2one ('crm.case.stage', 'Stage', domain="[('section_ids', '=', section_id)]"), 
68             'type_id': fields.many2one('crm.case.resource.type', 'Campaign', \
69                              domain="[('section_id','=',section_id)]"),
70             'duration': fields.float('Duration'),
71             'ref': fields.reference('Reference', selection=crm._links_get, size=128),
72             'ref2': fields.reference('Reference 2', selection=crm._links_get, size=128),
73             'state': fields.related('stage_id', 'state', type="selection", store=True,
74                     selection=crm.AVAILABLE_STATES, string="State", readonly=True,
75                     help='The state is set to \'Draft\', when a case is created.\
76                         If the case is in progress the state is set to \'Open\'.\
77                         When the case is over, the state is set to \'Done\'.\
78                         If the case needs to be reviewed then the state is \
79                         set to \'Pending\'.'),
80         }
81
82     _defaults = {
83             'active': 1,
84             'user_id':  lambda s, cr, uid, c: s._get_default_user(cr, uid, c),
85             'partner_id':  lambda s, cr, uid, c: s._get_default_partner(cr, uid, c),
86             'email_from': lambda s, cr, uid, c: s._get_default_email(cr, uid, c),
87             'section_id': lambda s, cr, uid, c: s._get_default_section_id(cr, uid, c),
88             'company_id': lambda s, cr, uid, c: s.pool.get('res.company')._company_default_get(cr, uid, 'crm.case', context=c),
89             'priority': crm.AVAILABLE_PRIORITIES[2][0],
90             'probability': 0.0,
91             'planned_cost': 0.0,
92             'planned_revenue': 0.0,
93     }
94
95     def stage_find(self, cr, uid, cases, section_id, domain=[], order='sequence', context=None):
96         """ Override of the base.stage method
97             Parameter of the stage search taken from the lead:
98             - section_id: if set, stages must belong to this section or
99               be a default case
100         """
101         if isinstance(cases, (int, long)):
102             cases = self.browse(cr, uid, cases, context=context)
103         # collect all section_ids
104         section_ids = []
105         if section_id:
106             section_ids.append(section_id)
107         for case in cases:
108             if case.section_id:
109                 section_ids.append(case.section_id.id)
110         # OR all section_ids and OR with case_default
111         search_domain = []
112         if section_ids:
113             search_domain += [('|')] * len(section_ids)
114             for section_id in section_ids:
115                 search_domain.append(('section_ids', '=', section_id))
116         search_domain.append(('case_default', '=', True))
117         # AND with the domain in parameter
118         search_domain += list(domain)
119         # perform search, return the first found
120         stage_ids = self.pool.get('crm.case.stage').search(cr, uid, search_domain, order=order, context=context)
121         if stage_ids:
122             return stage_ids[0]
123         return False
124
125     def create(self, cr, uid, vals, context=None):
126         obj_id = super(crm_fundraising, self).create(cr, uid, vals, context)
127         self.create_send_note(cr, uid, [obj_id], context=context)
128         return obj_id
129
130     # -------------------------------------------------------
131     # Mail gateway
132     # -------------------------------------------------------
133
134     def message_new(self, cr, uid, msg, custom_values=None, context=None):
135         """ Overrides mail_thread message_new that is called by the mailgateway
136             through message_process.
137             This override also updates the document according to the email.
138         """
139         if custom_values is None: custom_values = {}
140         custom_values.update({
141             'name': msg.get('subject') or _("No Subject"),
142             'description': msg.get('body_text'),
143             'email_from': msg.get('from'),
144             'email_cc': msg.get('cc'),
145         })
146         if msg.get('priority'):
147             custom_values['priority'] = priority
148         custom_values.update(self.message_partner_by_email(cr, uid, msg.get('from'), context=context))
149         return super(crm_fundraising,self).message_new(cr, uid, msg, custom_values=custom_values, context=context)
150
151     # ---------------------------------------------------
152     # OpenChatter methods and notifications
153     # ---------------------------------------------------
154
155     def case_get_note_msg_prefix(self, cr, uid, id, context=None):
156         """ Override of default prefix for notifications. """
157         return 'Fundraising'
158
159     def create_send_note(self, cr, uid, ids, context=None):
160         msg = _('Fundraising has been <b>created</b>.')
161         self.message_append_note(cr, uid, ids, body=msg, context=context)
162         return True
163
164     def stage_set_send_note(self, cr, uid, ids, stage_id, context=None):
165         """ Override of the (void) default notification method. """
166         stage_name = self.pool.get('crm.case.stage').name_get(cr, uid, [stage_id], context=context)[0][1]
167         return self.message_append_note(cr, uid, ids, body= _("Stage changed to <b>%s</b>.") % (stage_name), context=context)
168
169
170 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: