[VIEW] +partner_id field in res_users form view
[burette/bikecoop.git] / bikecoop.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 # Bikecoop module for OpenERP, Custom module for bike coop'
5 # Copyright (C) 2012-2013 L'Heureux Cyclage (<http://www.heureux-cyclage.org>)
6 #
7 # This file is a part of Bikecoop
8 #
9 # Bikecoop is free software: you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation, either version 3 of the License, or
12 # (at your option) any later version.
13 #
14 # Bikecoop is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #
22 ##############################################################################
23
24 from openerp.osv import fields, osv
25 import openerp.addons.decimal_precision as dp
26 from datetime import date
27
28
29 class Theme(osv.osv):
30 _name = 'bikecoop.partner.theme'
31 _description = 'Themes that could be related to a partner'
32
33 _columns = {
34 'code': fields.char('Code', size=8, help='Code of the occupation'),
35 'name': fields.char('Name', size=128, help='Name of the job or studies', required=True, translate=True),
36 'domain': fields.selection([('gender', 'Gender'), ('occupation', 'Occupation'), ('volunteer', 'Volunteer')], 'Domain', required=True, size=24),
37 'active': fields.boolean('Active', help='If check, this object is always available'),
38 }
39
40 _defaults = {
41 'active': lambda *a: 1,
42 }
43
44 Theme()
45
46
47 class Partner(osv.osv):
48 _inherit = 'res.partner'
49
50 _columns = {
51 'nationality_id': fields.many2one('res.country', 'Nationality', help='Partner\'s nationality if he is a person'),
52 'year': fields.integer('Year of birth', help='This partner year of birth'),
53 'occupation_id': fields.many2one('bikecoop.partner.theme', 'Occupation', help='Main occupation of this partner'),
54 'volunteer_ids': fields.many2many('bikecoop.partner.theme', 'res_partner_bikecoop_theme_rel', 'partner_id', 'theme_id', 'Want to be volunteer?', help='What kind of volunteer activities you want to do with us?'),
55 'gender_id': fields.many2one('bikecoop.partner.theme', 'Gender'),
56 }
57
58 def _check_year(self, cr, uid, ids, context=None):
59 obj = self.browse(cr, uid, ids[0], context=context)
60 if obj.year:
61 if obj.year < 1900 or obj.year > date.today().year:
62 return False
63 return True
64
65 _constraints = [
66 (_check_year, 'Error: this year is not valid.', ['year']),
67 ]
68 Partner()
69
70
71 class product_template(osv.osv):
72 _inherit = 'product.template'
73
74 _columns = {
75 'standard_price': fields.float('Cost', digits_compute=dp.get_precision('Product Price'), help="Cost price of the product used for standard stock valuation in accounting and used as a base price on purchase orders.", groups="base.group_user,point_of_sale.group_pos_user"),
76 }
77
78 product_template()
79
80
81 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: