Browse Source

[ADD] also look at move_id.name and move_id.ref

pull/204/head
Holger Brunn 7 years ago
parent
commit
a41fbd13f0
No known key found for this signature in database GPG Key ID: 1C9760FECA3AE18
  1. 4
      account_bank_statement_import_auto_reconcile/models/account_bank_statement_import_auto_reconcile_exact_amount.py

4
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 ''),

Loading…
Cancel
Save