mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
rename some regexp to regex
This commit is contained in:
@@ -48,13 +48,13 @@ class AccountStatementCompletionRule(Model):
|
|||||||
|
|
||||||
_columns = {
|
_columns = {
|
||||||
'function_to_call': fields.selection(_get_functions, 'Method'),
|
'function_to_call': fields.selection(_get_functions, 'Method'),
|
||||||
'regexp': fields.char('Regular Expression', size=128),
|
'regex': fields.char('Regular Expression', size=128),
|
||||||
'account_id': fields.many2one('account.account', string="Account to set"),
|
'account_id': fields.many2one('account.account', string="Account to set"),
|
||||||
}
|
}
|
||||||
|
|
||||||
def set_account(self, cr, uid, id, st_line, context=None):
|
def set_account(self, cr, uid, id, st_line, context=None):
|
||||||
"""
|
"""
|
||||||
If line name match regexp, update account_id
|
If line name match regex, update account_id
|
||||||
Then, call the generic st_line method to complete other values.
|
Then, call the generic st_line method to complete other values.
|
||||||
:param dict st_line: read of the concerned account.bank.statement.line
|
:param dict st_line: read of the concerned account.bank.statement.line
|
||||||
:return:
|
:return:
|
||||||
@@ -68,7 +68,7 @@ class AccountStatementCompletionRule(Model):
|
|||||||
res = {}
|
res = {}
|
||||||
if name:
|
if name:
|
||||||
rule = self.browse(cr, uid, id, context=context)
|
rule = self.browse(cr, uid, id, context=context)
|
||||||
if re.match(rule.regexp, name):
|
if re.match(rule.regex, name):
|
||||||
res['account_id'] = rule.account_id.id
|
res['account_id'] = rule.account_id.id
|
||||||
return res
|
return res
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user