[MERGE] OPW 381883: crm: for default body, default reply body use user signature...
[odoo/odoo.git] / addons / l10n_ch / partner.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    Author: Nicolas Bessi. Copyright Camptocamp SA
5 #    Donors: Hasa Sàrl, Open Net Sàrl and Prisme Solutions Informatique SA
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
24 class res_partner(osv.osv):
25     _inherit = 'res.partner'
26
27     _columns = {
28         'ref_companies': fields.one2many('res.company', 'partner_id',
29         'Companies that refers to partner'),
30     }
31
32 res_partner()
33
34 class res_partner_bank(osv.osv):
35     _inherit = "res.partner.bank"
36     _columns = {
37         'name': fields.char('Description', size=128, required=True),
38         'post_number': fields.char('Post number', size=64),
39         'bvr_adherent_num': fields.char('BVR adherent number', size=11),
40         'dta_code': fields.char('DTA code', size=5),
41     }
42
43     def name_get(self, cr, uid, ids, context=None):
44         if not len(ids):
45             return []
46         bank_type_obj = self.pool.get('res.partner.bank.type')
47
48         type_ids = bank_type_obj.search(cr, uid, [])
49         bank_type_names = {}
50         for bank_type in bank_type_obj.browse(cr, uid, type_ids,
51                 context=context):
52             bank_type_names[bank_type.code] = bank_type.name
53         res = []
54         for r in self.read(cr, uid, ids, ['name','state'], context):
55             res.append((r['id'], r['name']+' : '+bank_type_names[r['state']]))
56         return res
57
58     _sql_constraints = [
59         ('bvr_adherent_uniq', 'unique (bvr_adherent_num)', 'The BVR adherent number must be unique !')
60     ]
61
62 res_partner_bank()
63
64 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: