FIX typo.

Pyflakes.

Task #158407
This commit is contained in:
Juanjo Garcia 2023-06-15 13:33:35 +02:00
parent 1f7fa31b17
commit 875237e58d
1 changed files with 2 additions and 2 deletions

View File

@ -214,7 +214,7 @@ class InvoiceLine(metaclass=PoolMeta):
If(Bool(Eval('_parent_invoice')),
If(Eval('_parent_invoice', {}).get('type') == 'out',
('type.expense', '=', True),
('type.reveue', '=', True)),
('type.revenue', '=', True)),
If(Eval('invoice_type') == 'out',
('type.expense', '=', True),
('type.revenue', '=', True)))
@ -227,7 +227,7 @@ class InvoiceLine(metaclass=PoolMeta):
Bool(Eval('_parent_invoice', {}).get('target_company')),
Eval('intercompany_invoice', False)),
},
depends=['intercompany_invoice', 'invoice_type', 'invoice'])
depends=['invoice'])
@classmethod
def __setup__(cls):