|
@@ -9,7 +9,8 @@ class PaymentJournal(models.Model):
|
|
|
def get_paymentsJournals(self):
|
|
|
domain =[
|
|
|
('active', '=', True),
|
|
|
- ('type', 'in',['bank', 'cash'])
|
|
|
+ ('type', 'in',['bank', 'cash']),
|
|
|
+ ('default_credit_account_id.currency_id', '=', False)
|
|
|
]
|
|
|
paymentsJournals = []
|
|
|
|