Skip to content
Snippets Groups Projects
Commit 9cc4c453 authored by Olivier Colson's avatar Olivier Colson Committed by qdp-odoo
Browse files

[FIX] account: creation of account.payment

Allow to give the value of the payment method by the key 'default_payment_method_id' of the context, as the regular usage wants.
parent 440a6fe2
Branches
Tags
No related merge requests found
......@@ -137,10 +137,18 @@ class account_abstract_payment(models.AbstractModel):
if self.journal_id:
# Set default payment method (we consider the first to be the default one)
payment_methods = self.payment_type == 'inbound' and self.journal_id.inbound_payment_method_ids or self.journal_id.outbound_payment_method_ids
self.payment_method_id = payment_methods and payment_methods[0] or False
payment_methods_list = payment_methods.ids
default_payment_method_id = self.env.context.get('default_payment_method_id')
if default_payment_method_id:
# Ensure the domain will accept the provided default value
payment_methods_list.append(default_payment_method_id)
else:
self.payment_method_id = payment_methods and payment_methods[0] or False
# Set payment method domain (restrict to methods enabled for the journal and to selected payment type)
payment_type = self.payment_type in ('outbound', 'transfer') and 'outbound' or 'inbound'
return {'domain': {'payment_method_id': [('payment_type', '=', payment_type), ('id', 'in', payment_methods.ids)]}}
return {'domain': {'payment_method_id': [('payment_type', '=', payment_type), ('id', 'in', payment_methods_list)]}}
return {}
def _compute_journal_domain_and_types(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment