9e7954e038eb162f6ac4680062724d0e0790fe68
[odoo/odoo.git] / addons / crm_claim / crm_claim.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 osv import fields, osv
23 from crm import crm
24 import time
25
26 class crm_claim(osv.osv, crm.crm_case):
27     """
28     Crm claim
29     """
30     _name = "crm.claim"
31     _description = "Claim"
32     _order = "id desc"
33     _inherit = ['mailgate.thread']
34     _columns = {
35         'id': fields.integer('ID', readonly=True), 
36         'name': fields.char('Name', size=128, required=True), 
37         'active': fields.boolean('Active', required=False), 
38         'date_action_last': fields.datetime('Last Action', readonly=1),
39         'date_action_next': fields.datetime('Next Action', readonly=1),
40         'description': fields.text('Description'), 
41         'create_date': fields.datetime('Creation Date' , readonly=True), 
42         'write_date': fields.datetime('Update Date' , readonly=True), 
43         'date_deadline': fields.date('Deadline'), 
44         'date_closed': fields.datetime('Closed', readonly=True), 
45         'date': fields.datetime('Date'), 
46         'ref' : fields.reference('Reference', selection=crm._links_get, size=128), 
47         'ref2' : fields.reference('Reference 2', selection=crm._links_get, size=128), 
48         'canal_id': fields.many2one('res.partner.canal', 'Channel', \
49                      help="The channels represent the different communication"\
50                       "modes available with the customer." \
51                      " With each commercial opportunity, you can indicate the"\
52                       "canall which is this opportunity source."), 
53         'planned_revenue': fields.float('Planned Revenue'), 
54         'planned_cost': fields.float('Planned Costs'), 
55         'categ_id': fields.many2one('crm.case.categ', 'Category', \
56                             domain="[('section_id','=',section_id),\
57                             ('object_id.model', '=', 'crm.claim')]"), 
58         'priority': fields.selection(crm.AVAILABLE_PRIORITIES, 'Priority'), 
59         'type_id': fields.many2one('crm.case.resource.type', 'Claim Type', \
60                          domain="[('section_id','=',section_id),\
61                          ('object_id.model', '=', 'crm.claim')]"), 
62         'user_id': fields.many2one('res.users', 'Responsible'), 
63         'section_id': fields.many2one('crm.case.section', 'Sales Team', \
64                         select=True, help="Sales team to which Case belongs to."\
65                                 "Define Responsible user and Email account for"\
66                                 " mail gateway."), 
67         'company_id': fields.many2one('res.company', 'Company'), 
68         'partner_id': fields.many2one('res.partner', 'Partner'), 
69         'partner_address_id': fields.many2one('res.partner.address', 'Partner Contact', \
70                                 # domain="[('partner_id','=',partner_id)]"
71                                  ), 
72         '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"), 
73         'email_from': fields.char('Email', size=128, help="These people will receive email."), 
74         'partner_name': fields.char("Employee's Name", size=64), 
75         'partner_mobile': fields.char('Mobile', size=32), 
76         'partner_phone': fields.char('Phone', size=32), 
77         'stage_id': fields.many2one ('crm.case.stage', 'Stage'), 
78         'probability': fields.float('Probability (%)'), 
79         'state': fields.selection(crm.AVAILABLE_STATES, 'State', size=16, readonly=True, 
80                                   help='The state is set to \'Draft\', when a case is created.\
81                                   \nIf the case is in progress the state is set to \'Open\'.\
82                                   \nWhen the case is over, the state is set to \'Done\'.\
83                                   \nIf the case needs to be reviewed then the state is set to \'Pending\'.'), 
84         'message_ids': fields.one2many('mailgate.message', 'res_id', 'Messages', domain=[('model','=',_name)]),
85     }
86
87     _defaults = {
88         'active': lambda *a: 1, 
89         'user_id': crm.crm_case._get_default_user, 
90         'partner_id': crm.crm_case._get_default_partner, 
91         'partner_address_id': crm.crm_case._get_default_partner_address, 
92         'email_from':crm.crm_case. _get_default_email, 
93         'state': lambda *a: 'draft', 
94         'section_id':crm.crm_case. _get_section, 
95         'date': lambda *a: time.strftime('%Y-%m-%d %H:%M:%S'),
96         'company_id': lambda s, cr, uid, c: s.pool.get('res.company')._company_default_get(cr, uid, 'crm.case', context=c), 
97         'priority': lambda *a: crm.AVAILABLE_PRIORITIES[2][0], 
98     }
99     
100     def onchange_partner_id(self, cr, uid, ids, part, email=False):
101         """This function returns value of partner address based on partner
102         @param self: The object pointer
103         @param cr: the current row, from the database cursor,
104         @param uid: the current user’s ID for security checks,
105         @param ids: List of case IDs
106         @param part: Partner's id
107         @email: Partner's email ID
108         """
109         if not part:
110             return {'value': {'partner_address_id': False,
111                             'email_from': False, 
112                             'partner_phone': False,
113                             'partner_mobile': False
114                             }}
115         addr = self.pool.get('res.partner').address_get(cr, uid, [part], ['contact'])
116         data = {'partner_address_id': addr['contact']}
117         data.update(self.onchange_partner_address_id(cr, uid, ids, addr['contact'])['value'])
118         return {'value': data}
119
120     def onchange_partner_address_id(self, cr, uid, ids, add, email=False):
121         """This function returns value of partner email based on Partner Address
122         @param self: The object pointer
123         @param cr: the current row, from the database cursor,
124         @param uid: the current user’s ID for security checks,
125         @param ids: List of case IDs
126         @param add: Id of Partner's address
127         @email: Partner's email ID
128         """
129         if not add:
130             return {'value': {'email_from': False}}
131         address = self.pool.get('res.partner.address').browse(cr, uid, add)
132         return {'value': {'email_from': address.email, 'partner_phone': address.phone, 'partner_mobile': address.mobile}}
133
134
135 crm_claim()
136
137 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: