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.

147 lines
5.3 KiB

  1. # -*- coding: utf-8 -*-
  2. # Author: Nicolas Bessi. Copyright Camptocamp SA
  3. # Copyright (C)
  4. # 2014: Agile Business Group (<http://www.agilebg.com>)
  5. # 2015: Grupo ESOC <www.grupoesoc.es>
  6. #
  7. # This program is free software: you can redistribute it and/or modify
  8. # it under the terms of the GNU Affero General Public License as
  9. # published by the Free Software Foundation, either version 3 of the
  10. # License, or (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU Affero General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU Affero General Public License
  18. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. import logging
  20. from openerp import api, fields, models
  21. from . import exceptions
  22. _logger = logging.getLogger(__name__)
  23. class ResPartner(models.Model):
  24. """Adds last name and first name; name becomes a stored function field."""
  25. _inherit = 'res.partner'
  26. firstname = fields.Char("First name")
  27. lastname = fields.Char("Last name")
  28. name = fields.Char(
  29. compute="_compute_name",
  30. inverse="_inverse_name_after_cleaning_whitespace",
  31. required=False,
  32. store=True)
  33. @api.model
  34. def _get_computed_name(self, lastname, firstname):
  35. """Compute the 'name' field according to splitted data.
  36. You can override this method to change the order of lastname and
  37. firstname the computed name"""
  38. return u" ".join((p for p in (lastname, firstname) if p))
  39. @api.one
  40. @api.depends("firstname", "lastname")
  41. def _compute_name(self):
  42. """Write the 'name' field according to splitted data."""
  43. self.name = self._get_computed_name(self.lastname, self.firstname)
  44. @api.one
  45. def _inverse_name_after_cleaning_whitespace(self):
  46. """Clean whitespace in :attr:`~.name` and split it.
  47. Removes leading, trailing and duplicated whitespace.
  48. The splitting logic is stored separately in :meth:`~._inverse_name`, so
  49. submodules can extend that method and get whitespace cleaning for free.
  50. """
  51. # Remove unneeded whitespace
  52. clean = u" ".join(self.name.split(None)) if self.name else self.name
  53. # Clean name avoiding infinite recursion
  54. if self.name != clean:
  55. self.name = clean
  56. # Save name in the real fields
  57. else:
  58. self._inverse_name()
  59. @api.model
  60. def _get_inverse_name(self, name, is_company=False):
  61. """Try to revert the effect of :meth:`._compute_name`.
  62. - If the partner is a company, save it in the lastname.
  63. - Otherwise, make a guess.
  64. This method can be easily overriden by other submodules.
  65. You can also override this method to change the order of name's
  66. attributes
  67. When this method is called, :attr:`~.name` already has unified and
  68. trimmed whitespace.
  69. """
  70. # Company name goes to the lastname
  71. if is_company or not name:
  72. parts = [name or False, False]
  73. # Guess name splitting
  74. else:
  75. parts = name.split(" ", 1)
  76. while len(parts) < 2:
  77. parts.append(False)
  78. return parts
  79. @api.one
  80. def _inverse_name(self):
  81. parts = self._get_inverse_name(self.name, self.is_company)
  82. self.lastname, self.firstname = parts
  83. @api.one
  84. @api.constrains("firstname", "lastname")
  85. def _check_name(self):
  86. """Ensure at least one name is set."""
  87. if not (self.firstname or self.lastname):
  88. raise exceptions.EmptyNamesError(self)
  89. @api.one
  90. @api.onchange("firstname", "lastname")
  91. def _onchange_subnames(self):
  92. """Avoid recursion when the user changes one of these fields.
  93. This forces to skip the :attr:`~.name` inversion when the user is
  94. setting it in a not-inverted way.
  95. """
  96. # Modify self's context without creating a new Environment.
  97. # See https://github.com/odoo/odoo/issues/7472#issuecomment-119503916.
  98. self.env.context = self.with_context(skip_onchange=True).env.context
  99. @api.one
  100. @api.onchange("name")
  101. def _onchange_name(self):
  102. """Ensure :attr:`~.name` is inverted in the UI."""
  103. if self.env.context.get("skip_onchange"):
  104. # Do not skip next onchange
  105. self.env.context = (
  106. self.with_context(skip_onchange=False).env.context)
  107. else:
  108. self._inverse_name_after_cleaning_whitespace()
  109. @api.model
  110. def _install_partner_firstname(self):
  111. """Save names correctly in the database.
  112. Before installing the module, field ``name`` contains all full names.
  113. When installing it, this method parses those names and saves them
  114. correctly into the database. This can be called later too if needed.
  115. """
  116. # Find records with empty firstname and lastname
  117. records = self.search([("firstname", "=", False),
  118. ("lastname", "=", False)])
  119. # Force calculations there
  120. records._inverse_name()
  121. _logger.info("%d partners updated installing module.", len(records))