mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
8 lines
185 B
Python
8 lines
185 B
Python
from odoo import fields, models
|
|
|
|
|
|
class AccountPaymentTerm(models.Model):
|
|
_inherit = 'account.payment.term'
|
|
|
|
allow_in_website_sale = fields.Boolean('Allow in website checkout')
|