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