[IMP] account_payment_order: black, isort

This commit is contained in:
Raf Ven
2020-03-12 19:46:51 +01:00
committed by Carlos Roca
parent b360637997
commit 001bd7e976
37 changed files with 2169 additions and 1719 deletions

View File

@@ -5,11 +5,11 @@ from odoo import fields, models
class AccountPaymentMethod(models.Model):
_inherit = 'account.payment.method'
_inherit = "account.payment.method"
payment_order_only = fields.Boolean(
string="Only for payment orders",
help="This option helps enforcing the use of payment orders for "
"some payment methods.",
"some payment methods.",
default=False,
)