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.
71 lines
2.6 KiB
71 lines
2.6 KiB
# -*- coding: utf-8 -*-
|
|
##############################################################################
|
|
#
|
|
# This file is part of account_bank_statement_import,
|
|
# an Odoo module.
|
|
#
|
|
# Copyright (c) 2015 ACSONE SA/NV (<http://acsone.eu>)
|
|
#
|
|
# account_bank_statement_importis free software:
|
|
# you can redistribute it and/or modify it under the terms of the GNU
|
|
# Affero General Public License as published by the Free Software
|
|
# Foundation,either version 3 of the License, or (at your option) any
|
|
# later version.
|
|
#
|
|
# account_bank_statement_import is distributed
|
|
# in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
|
|
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
# PURPOSE. See the GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with account_bank_statement_import_coda.
|
|
# If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
##############################################################################
|
|
|
|
import re
|
|
from openerp import api, models, fields
|
|
|
|
|
|
class ResPartnerBank(models.Model):
|
|
_inherit = 'res.partner.bank'
|
|
|
|
sanitized_acc_number = fields.Char(
|
|
'Sanitized Account Number', size=64, readonly=True,
|
|
compute='_get_sanitized_account_number', store=True)
|
|
|
|
def _sanitize_account_number(self, acc_number):
|
|
if acc_number:
|
|
return re.sub(r'\W+', '', acc_number).upper()
|
|
return False
|
|
|
|
@api.one
|
|
@api.depends('acc_number')
|
|
def _get_sanitized_account_number(self):
|
|
self.sanitized_acc_number = self._sanitize_account_number(
|
|
self.acc_number)
|
|
|
|
@api.returns('self')
|
|
def search(self, cr, user, args, offset=0, limit=None, order=None,
|
|
context=None, count=False):
|
|
pos = 0
|
|
while pos < len(args):
|
|
if args[pos][0] == 'acc_number':
|
|
op = args[pos][1]
|
|
value = args[pos][2]
|
|
if hasattr(value, '__iter__'):
|
|
value = [self._sanitize_account_number(i) for i in value]
|
|
else:
|
|
value = self._sanitize_account_number(value)
|
|
if 'like' in op:
|
|
value = '%' + value + '%'
|
|
args[pos] = ('sanitized_acc_number', op, value)
|
|
pos += 1
|
|
return super(ResPartnerBank, self).search(
|
|
cr, user, args, offset=0, limit=None, order=None, context=None,
|
|
count=False)
|
|
|
|
_sql_constraints = [
|
|
('unique_number', 'unique(sanitized_acc_number)',
|
|
'Account Number must be unique'),
|
|
]
|