Browse Source
[ADD] also look at move_id.name and move_id.ref
pull/204/head
Holger Brunn
7 years ago
No known key found for this signature in database
GPG Key ID: 1C9760FECA3AE18
1 changed files with
3 additions and
1 deletions
-
account_bank_statement_import_auto_reconcile/models/account_bank_statement_import_auto_reconcile_exact_amount.py
|
|
@ -35,7 +35,9 @@ class AccountBankStatementImportAutoReconcileExactAmount(models.AbstractModel): |
|
|
|
sign = -1 |
|
|
|
|
|
|
|
domain = [ |
|
|
|
'|', '|', '|', |
|
|
|
'|', '|', '|', '|', '|', |
|
|
|
('move_id.ref', operator, statement_line.ref or ''), |
|
|
|
('move_id.name', operator, statement_line.name or ''), |
|
|
|
('ref', operator, statement_line.ref or ''), |
|
|
|
('name', operator, statement_line.name or ''), |
|
|
|
('ref', operator, statement_line.name or ''), |
|
|
|