[FIX] hr_payroll: skip missing structures in get_all_structures for hr.contracts...
[odoo/odoo.git] / addons / sale_crm / sale_crm.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 openerp.osv import osv, fields
23
24 class res_users(osv.Model):
25     _inherit = 'res.users'
26     _columns = {
27         'default_section_id': fields.many2one('crm.case.section', 'Default Sales Team'),
28     }
29
30     def __init__(self, pool, cr):
31         init_res = super(res_users, self).__init__(pool, cr)
32         # duplicate list to avoid modifying the original reference
33         self.SELF_WRITEABLE_FIELDS = list(self.SELF_WRITEABLE_FIELDS)
34         self.SELF_WRITEABLE_FIELDS.extend(['default_section_id'])
35         return init_res
36
37 class sale_order(osv.osv):
38     _inherit = 'sale.order'
39     _columns = {
40         'section_id': fields.many2one('crm.case.section', 'Sales Team'),
41         'categ_ids': fields.many2many('crm.case.categ', 'sale_order_category_rel', 'order_id', 'category_id', 'Categories', \
42             domain="['|',('section_id','=',section_id),('section_id','=',False), ('object_id.model', '=', 'crm.lead')]", context="{'object_name': 'crm.lead'}")
43     }
44
45     def _get_default_section_id(self, cr, uid, context=None):
46         """ Gives default section by checking if present in the context """
47         section_id = self.pool.get('crm.lead')._resolve_section_id_from_context(cr, uid, context=context) or False
48         if not section_id:
49             section_id = self.pool.get('res.users').browse(cr, uid, uid, context).default_section_id.id or False
50         return section_id
51
52     _defaults = {
53         'section_id': lambda s, cr, uid, c: s._get_default_section_id(cr, uid, c),
54     }
55
56     def _prepare_invoice(self, cr, uid, order, lines, context=None):
57         invoice_vals = super(sale_order, self)._prepare_invoice(cr, uid, order, lines, context=context)
58         if order.section_id and order.section_id.id:
59             invoice_vals['section_id'] = order.section_id.id
60         return invoice_vals
61
62
63 class sale_crm_lead(osv.Model):
64     _inherit = 'crm.lead'
65
66     def on_change_user(self, cr, uid, ids, user_id, context=None):
67         """ Override of on change user_id on lead/opportunity; when having sale
68             the new logic is :
69             - use user.default_section_id
70             - or fallback on previous behavior """
71         if user_id:
72             user = self.pool.get('res.users').browse(cr, uid, user_id, context=context)
73             if user.default_section_id and user.default_section_id.id:
74                 return {'value': {'section_id': user.default_section_id.id}}
75         return super(sale_crm_lead, self).on_change_user(cr, uid, ids, user_id, context=context)
76
77
78 class account_invoice(osv.osv):
79     _inherit = 'account.invoice'
80     _columns = {
81         'section_id': fields.many2one('crm.case.section', 'Sales Team'),
82     }
83     _defaults = {
84         'section_id': lambda self,cr,uid,c: self.pool.get('res.users').browse(cr, uid, uid, c).default_section_id.id or False,
85     }
86
87 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: