[MERGE]
[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(crm.crm_case, osv.osv):
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         'planned_revenue': fields.float('Planned Revenue'), 
52         'planned_cost': fields.float('Planned Costs'), 
53         'categ_id': fields.many2one('crm.case.categ', 'Category', \
54                             domain="[('section_id','=',section_id),\
55                             ('object_id.model', '=', 'crm.claim')]"), 
56         'priority': fields.selection(crm.AVAILABLE_PRIORITIES, 'Priority'), 
57         'type_action': fields.selection([('correction','Corrective Action'),('prevention','Preventive Action')], 'Action Type'),
58         'user_id': fields.many2one('res.users', 'Responsible'), 
59         'section_id': fields.many2one('crm.case.section', 'Sales Team', \
60                         select=True, help="Sales team to which Case belongs to."\
61                                 "Define Responsible user and Email account for"\
62                                 " mail gateway."), 
63         'company_id': fields.many2one('res.company', 'Company'), 
64         'partner_id': fields.many2one('res.partner', 'Partner'), 
65         'partner_address_id': fields.many2one('res.partner.address', 'Partner Contact', \
66                                 # domain="[('partner_id','=',partner_id)]"
67                                  ), 
68         '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"), 
69         'email_from': fields.char('Email', size=128, help="These people will receive email."), 
70         'partner_name': fields.char("Employee's Name", size=64), 
71         'partner_mobile': fields.char('Mobile', size=32), 
72         'partner_phone': fields.char('Phone', size=32), 
73         'stage_id': fields.many2one ('crm.case.stage', 'Stage', domain="('object_id.model', '=', 'crm.claim')]"), 
74         'probability': fields.float('Probability (%)'), 
75         'state': fields.selection(crm.AVAILABLE_STATES, 'State', size=16, readonly=True, 
76                                   help='The state is set to \'Draft\', when a case is created.\
77                                   \nIf the case is in progress the state is set to \'Open\'.\
78                                   \nWhen the case is over, the state is set to \'Done\'.\
79                                   \nIf the case needs to be reviewed then the state is set to \'Pending\'.'), 
80         'message_ids': fields.one2many('mailgate.message', 'res_id', 'Messages', domain=[('model','=',_name)]),
81     }
82
83     _defaults = {
84         'active': lambda *a: 1, 
85         'user_id': crm.crm_case._get_default_user, 
86         'partner_id': crm.crm_case._get_default_partner, 
87         'partner_address_id': crm.crm_case._get_default_partner_address, 
88         'email_from':crm.crm_case. _get_default_email, 
89         'state': lambda *a: 'draft', 
90         'section_id':crm.crm_case. _get_section, 
91         'date': lambda *a: time.strftime('%Y-%m-%d %H:%M:%S'),
92         'company_id': lambda s, cr, uid, c: s.pool.get('res.company')._company_default_get(cr, uid, 'crm.case', context=c), 
93         'priority': lambda *a: crm.AVAILABLE_PRIORITIES[2][0], 
94     }
95     
96     def onchange_partner_id(self, cr, uid, ids, part, email=False):
97         """This function returns value of partner address based on partner
98         @param self: The object pointer
99         @param cr: the current row, from the database cursor,
100         @param uid: the current user’s ID for security checks,
101         @param ids: List of case IDs
102         @param part: Partner's id
103         @email: Partner's email ID
104         """
105         if not part:
106             return {'value': {'partner_address_id': False,
107                             'email_from': False, 
108                             'partner_phone': False,
109                             'partner_mobile': False
110                             }}
111         addr = self.pool.get('res.partner').address_get(cr, uid, [part], ['contact'])
112         data = {'partner_address_id': addr['contact']}
113         data.update(self.onchange_partner_address_id(cr, uid, ids, addr['contact'])['value'])
114         return {'value': data}
115
116     def onchange_partner_address_id(self, cr, uid, ids, add, email=False):
117         """This function returns value of partner email based on Partner Address
118         @param self: The object pointer
119         @param cr: the current row, from the database cursor,
120         @param uid: the current user’s ID for security checks,
121         @param ids: List of case IDs
122         @param add: Id of Partner's address
123         @email: Partner's email ID
124         """
125         if not add:
126             return {'value': {'email_from': False}}
127         address = self.pool.get('res.partner.address').browse(cr, uid, add)
128         return {'value': {'email_from': address.email, 'partner_phone': address.phone, 'partner_mobile': address.mobile}}
129
130
131 crm_claim()
132
133 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: