12 lines
319 B
Python
12 lines
319 B
Python
# -*- coding: utf-8 -*-
|
|
from odoo import models, fields
|
|
|
|
class Website(models.Model):
|
|
_inherit = 'website'
|
|
|
|
enable_delivery_option = fields.Boolean(
|
|
string='Enable Delivery Option',
|
|
default=True,
|
|
help='If disabled, customers will not see the Delivery option on the checkout page.'
|
|
)
|