minor fix

This commit is contained in:
wilson gomez 2021-10-07 17:29:56 -05:00
parent 46fa49ae5a
commit 538de974f0
1 changed files with 1 additions and 1 deletions

View File

@ -707,7 +707,7 @@ class Payroll(metaclass=PoolMeta):
not_concepts = ['transport']
wage_types = WageType.search([
('salary_constitute', '=', True),
('concept', 'not in', not_concepts),
('type_concept', 'not in', not_concepts),
])
wage_ids_concepts = list(set([wage.id for wage in wage_types]))
res = []