Skip to content
Snippets Groups Projects
Commit 733ca62a authored by wan's avatar wan
Browse files

[FIX] account: match on sanitized bank number

FIX 2092459
The reconciliation tries to find partner based on the bank number, but
that bank number may not be encoded the same way depending where the
statement lines come from.
A solution is to sanitize the bank number at query time.
parent 0ccf2ab8
No related branches found
No related tags found
No related merge requests found
......@@ -139,7 +139,7 @@ class AccountReconciliation(models.AbstractModel):
COALESCE(p1.id,p2.id,p3.id) AS partner_id
FROM account_bank_statement_line st_line
'''
query += 'LEFT JOIN res_partner_bank bank ON bank.id = st_line.bank_account_id OR bank.acc_number = st_line.account_number %s\n' % (where_bank)
query += "LEFT JOIN res_partner_bank bank ON bank.id = st_line.bank_account_id OR bank.sanitized_acc_number ILIKE regexp_replace(st_line.account_number, '\W+', '', 'g') %s\n" % (where_bank)
query += 'LEFT JOIN res_partner p1 ON st_line.partner_id=p1.id \n'
query += 'LEFT JOIN res_partner p2 ON bank.partner_id=p2.id \n'
# By definition the commercial partner_id doesn't have a parent_id set
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment