Merge PR #763 into 9.0

Signed-off-by pedrobaeza
9.0
OCA-git-bot 2021-03-30 14:38:13 +00:00
commit fc59ebc25e
1 changed files with 2 additions and 2 deletions

View File

@ -20,8 +20,8 @@ def pre_init_hook(cr):
('liquidity', 'liquidity', False),
('payable', 'payable', 'AND aml.balance < 0'),
('payable_refund', 'payable', 'AND aml.balance >= 0'),
('receivable', 'receivable', 'AND aml.balance < 0'),
('receivable_refund', 'receivable', 'AND aml.balance >= 0'),
('receivable', 'receivable', 'AND aml.balance > 0'),
('receivable_refund', 'receivable', 'AND aml.balance <= 0'),
('other', False, False),
]
for move_type, internal_type, extra_where in MAPPING: