[trans] ~fr because of split with demo addon
[burette/bikecoop.git] / bikecoop.py
index 2271969..1db080d 100644 (file)
@@ -1,6 +1,7 @@
 # -*- coding: utf-8 -*-
 from osv import fields, osv
 
+
 class Theme(osv.osv):
     _name = 'bikecoop.partner.theme'
     _description = 'Themes that could be related to a partner'
@@ -23,7 +24,6 @@ class Partner(osv.osv):
     _inherit = 'res.partner'
 
     _columns = {
-        'associate_members': fields.one2many('res.partner', 'associate_member', 'Associate members', help='Members who are associated to this partner.'),
         'nationality_id': fields.many2one('res.country', 'Nationality', help='Partner\'s nationality if he is a person'),
         'occupation_id': fields.many2one('bikecoop.partner.theme', 'Occupation', help='Main occupation of this partner'),
         '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?'),