[VIEW][TRANS] +menu gender
[burette/bikecoop.git] / bikecoop.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 # Bikecoop module for OpenERP, Custom module for bike coop' Copyright (C)
5 # 2012-2015 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 it under
10 # the terms of the GNU General Public License as published by the Free
11 # Software Foundation, either version 3 of the License, or (at your option)
12 # 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 _order = 'domain,sequence,name'
33
34 _columns = {
35 'code': fields.char('Code', size=8, help='Code of the occupation'),
36 'name': fields.char('Name', size=128, help='Name of the job or studies', required=True, translate=True),
37 'domain': fields.selection([('gender', 'Gender'), ('occupation', 'Occupation'), ('volunteer', 'Volunteer')], 'Domain', required=True, size=24),
38 'active': fields.boolean('Active', help='If check, this object is always available'),
39 'sequence': fields.integer('Sequence', help='To order by sequence'), #Convert to char field
40 }
41
42 _defaults = {
43 'active': lambda *a: 1,
44 }
45
46 Theme()
47
48
49 class Partner(osv.osv):
50 _inherit = 'res.partner'
51
52 _columns = {
53 'nationality_id': fields.many2one('res.country', 'Nationality', help='Partner\'s nationality if he is a person'),
54 'year': fields.integer('Year of birth', help='This partner year of birth'),
55 'occupation_id': fields.many2one('bikecoop.partner.theme', 'Occupation', help='Main occupation of this partner'),
56 '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?'),
57 'gender_id': fields.many2one('bikecoop.partner.theme', 'Gender'),
58 }
59
60 def _check_year(self, cr, uid, ids, context=None):
61 obj = self.browse(cr, uid, ids[0], context=context)
62 if obj.year:
63 if obj.year < 1900 or obj.year > date.today().year:
64 return False
65 return True
66
67 _constraints = [
68 (_check_year, 'Error: this year is not valid.', ['year']),
69 ]
70 Partner()
71
72
73 class product_template(osv.osv):
74 _inherit = 'product.template'
75
76 _columns = {
77 '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"),
78 }
79
80 product_template()
81
82
83 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: