res_company.py 372 B

12345678910111213
  1. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  2. from odoo import fields, models
  3. class ResCompany(models.Model):
  4. _inherit = "res.company"
  5. def _localization_use_documents(self):
  6. """ This method is to be inherited by localizations and return True if localization use documents """
  7. self.ensure_one()
  8. return False