Browse Source

[IMP] add value for the switzerland

pull/11/head
houssine 5 years ago
parent
commit
2fd6546653
  1. 3
      easy_my_coop_ch/models/__init__.py
  2. 17
      easy_my_coop_ch/models/partner.py

3
easy_my_coop_ch/models/__init__.py

@ -1 +1,2 @@
from . import coop
from . import coop
from . import partner

17
easy_my_coop_ch/models/partner.py

@ -0,0 +1,17 @@
# -*- coding: utf-8 -*-
from openerp import fields, models
class ResPartner(models.Model):
_inherit = 'res.partner'
legal_form = fields.Selection(selection_add=[
('ei', 'Individual company'),
('snc', 'Partnership'),
('sa', 'Limited company (SA)'),
('sarl', 'Limited liability company (Ltd)'),
('sc', 'Cooperative'),
('asso', 'Association'),
('fond', 'Foundation'),
('edp', 'Company under public law')
])
Loading…
Cancel
Save