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.

38 lines
2.2 KiB

  1. # -*- coding: utf-8 -*-
  2. from openerp import fields, models
  3. class ResCompany(models.Model):
  4. _inherit = 'res.company'
  5. coop_email_contact = fields.Char(string="Contact email address for the"
  6. " cooperator")
  7. subscription_maximum_amount = fields.Float(string="Maximum authorised"
  8. " subscription amount")
  9. default_country_id = fields.Many2one('res.country',
  10. string="Default country",
  11. default=lambda self: self.country_id)
  12. default_lang_id = fields.Many2one('res.lang',
  13. string="Default lang")
  14. allow_id_card_upload = fields.Boolean(string="Allow ID Card upload")
  15. board_representative = fields.Char(string="Board representative name")
  16. signature_scan = fields.Binary(string="Board representative signature")
  17. property_cooperator_account = fields.Many2one('account.account',
  18. company_dependent=True,
  19. string="Cooperator Account",
  20. domain=[('internal_type', '=', 'receivable'),
  21. ('deprecated', '=', False)],
  22. help="This account will be"
  23. " the default one as the"
  24. " receivable account for the"
  25. " cooperators",
  26. required=True)
  27. unmix_share_type = fields.Boolean(string="Unmix share type",
  28. default=True,
  29. help="If checked, A cooperator will be"
  30. " authorised to have only one type"
  31. " of share")
  32. display_logo1 = fields.Boolean(string="Display logo 1")
  33. display_logo2 = fields.Boolean(string="Display logo 2")
  34. bottom_logo1 = fields.Binary(string="Bottom logo 1")
  35. bottom_logo2 = fields.Binary(string="Bottom logo 2")