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.

119 lines
4.1 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.one
  34. @api.depends("firstname", "lastname")
  35. def _compute_name(self):
  36. """Write the 'name' field according to splitted data."""
  37. self.name = u" ".join((p for p in (self.lastname,
  38. self.firstname) if p))
  39. @api.one
  40. def _inverse_name_after_cleaning_whitespace(self):
  41. """Clean whitespace in :attr:`~.name` and split it.
  42. Removes leading, trailing and duplicated whitespace.
  43. The splitting logic is stored separately in :meth:`~._inverse_name`, so
  44. submodules can extend that method and get whitespace cleaning for free.
  45. """
  46. # Remove unneeded whitespace
  47. clean = u" ".join(self.name.split(None)) if self.name else self.name
  48. # Clean name avoiding infinite recursion
  49. if self.name != clean:
  50. self.name = clean
  51. # Save name in the real fields
  52. else:
  53. self._inverse_name()
  54. @api.one
  55. def _inverse_name(self):
  56. """Try to revert the effect of :meth:`._compute_name`.
  57. - If the partner is a company, save it in the lastname.
  58. - Otherwise, make a guess.
  59. This method can be easily overriden by other submodules.
  60. When this method is called, :attr:`~.name` already has unified and
  61. trimmed whitespace.
  62. """
  63. # Company name goes to the lastname
  64. if self.is_company or self.name is False:
  65. parts = [self.name, False]
  66. # Guess name splitting
  67. else:
  68. parts = self.name.split(" ", 1)
  69. while len(parts) < 2:
  70. parts.append(False)
  71. self.lastname, self.firstname = parts
  72. @api.one
  73. @api.constrains("firstname", "lastname")
  74. def _check_name(self):
  75. """Ensure at least one name is set."""
  76. if not (self.firstname or self.lastname):
  77. raise exceptions.EmptyNamesError(self)
  78. @api.one
  79. @api.onchange("name")
  80. def _onchange_name(self):
  81. """Ensure :attr:`~.name` is inverted in the UI."""
  82. self._inverse_name_after_cleaning_whitespace()
  83. @api.model
  84. def _install_partner_firstname(self):
  85. """Save names correctly in the database.
  86. Before installing the module, field ``name`` contains all full names.
  87. When installing it, this method parses those names and saves them
  88. correctly into the database. This can be called later too if needed.
  89. """
  90. # Find records with empty firstname and lastname
  91. records = self.search([("firstname", "=", False),
  92. ("lastname", "=", False)])
  93. # Force calculations there
  94. records._inverse_name()
  95. _logger.info("%d partners updated installing module.", len(records))