[9.0][FIX] account_tax_balance: init hook refund confusion
parent
a8ff059353
commit
598774c7cb
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue