|
|
# -*- coding: utf-8 -*- # Copyright - 2004-2010 Tiny SPRL http://tiny.be # Copyright - 2010-2012 ChriCar Beteiligungs- und Beratungs- GmbH # http://www.camptocamp.at # Copyright - Antiun Ingenieria, SL (Madrid, Spain) # http://www.antiun.com # Antonio Espinosa <antonioea@antiun.com> # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). # pylint: disable=invalid-name,missing-docstring,too-many-arguments # pylint: disable=protectec-access,unused-argument from openerp.osv import orm, fields from openerp.exceptions import ValidationError from openerp.tools.translate import _
class ResPartner(orm.Model): """Base class to support identification fields.
The base class provides for the registration of categories of identification and a list of those id numbers related to a partner.
Inheriting modules can dd specific fields, to enable easy entry and search on those fields. An example of souch a field follows here:
Example: .. code-block:: python
_columns = { 'social_security': fields.function( _compute_identification, arg='SSN', fcnt_inv=_inverse_identification, fcnt_inv_arg='SSN', type='char', fcnt_search=_search_identification, method= True, store=True, ), }
The field attributes arg and fnct_inv_arg must be set to a valid category code, to be provided by the module data of the module adding the field. """
_inherit = 'res.partner'
_columns = { 'id_numbers': fields.one2many( 'res.partner.id_number', 'partner_id', "Identification Numbers" ), }
def _compute_identification( self, cr, uid, ids, field_name, category_code, context=None): """ Compute the field that indicate a certain ID type.
Use this on a field that represents a certain ID type. It will compute the desired field as that ID(s).
This ID can be worked with as if it were a Char field, but it will be relating back to a ``res.partner.id_number`` instead.
Args: field_name (str): Name of field to set. category_code (str): Category code of the Identification type. """
res = {} for record in self.browse(cr, uid, ids, context=context): res[record.id] = False if not record.id_numbers: continue id_numbers = record.id_numbers.filtered( lambda r: r.category_id.code == category_code ) if not id_numbers: continue value = id_numbers[0].name record[field_name] = value
def _inverse_identification(self, field_name, category_code): """ Inverse for an identification field.
This method will create a new record, or modify the existing one in order to allow for the associated field to work like a Char.
If a category does not exist of the correct code, it will be created using `category_code` as both the `name` and `code` values.
If the value of the target field is unset, the associated ID will be deactivated in order to preserve history.
Args: field_name (str): Name of field to set. category_code (str): Category code of the Identification type. """
for record in self: id_number = record.id_numbers.filtered( lambda r: r.category_id.code == category_code ) record_len = len(id_number) # Record for category is not existent. if record_len == 0: name = record[field_name] if not name: # No value to set continue category = self.env['res.partner.id_category'].search([ ('code', '=', category_code), ]) if not category: category = self.env['res.partner.id_category'].create({ 'code': category_code, 'name': category_code, }) self.env['res.partner.id_number'].create({ 'partner_id': record.id, 'category_id': category.id, 'name': name, }) # There was an identification record singleton found. elif record_len == 1: value = record[field_name] if value: id_number.name = value else: id_number.active = False # Guard against writing wrong records. else: raise ValidationError(_( 'This %s has multiple IDs of this type (%s), so a write ' 'via the %s field is not possible. In order to fix this, ' 'please use the IDs tab.', ) % ( record._name, category_code, field_name, ))
def _search_identification(self, category_code, operator, value): """ Search method for an identification field.
Args: category_code (str): Category code of the Identification type. operator (str): Operator of domain. value (str): Value to search for.
Returns: list: Domain to search with. """
id_numbers = self.env['res.partner.id_number'].search([ ('name', operator, value), ('category_id.code', '=', category_code), ]) return [ ('id_numbers.id', 'in', id_numbers.ids), ]
|