You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
825 B
24 lines
825 B
# -*- coding: utf-8 -*-
|
|
from openerp import fields, models
|
|
|
|
|
|
class SubscriptionRequest(models.Model):
|
|
_inherit = 'subscription.request'
|
|
|
|
company_type = fields.Selection([
|
|
('asso', 'Association'),
|
|
('eurl', 'EURL / Entreprise individuelle'),
|
|
('sarl', 'SARL'),
|
|
('sa', 'SA / SAS')])
|
|
|
|
def get_required_field(self):
|
|
req_fields = super(SubscriptionRequest, self).get_required_field()
|
|
if 'iban' in req_fields:
|
|
req_fields.remove('iban')
|
|
|
|
return req_fields
|
|
|
|
# override function to disable the check
|
|
def check_belgian_identification_id(self, nat_register_num):
|
|
# deactivate number validation for french localization
|
|
return True
|