Odoo18-Base/addons/website_sale_mass_mailing/models/website.py

10 lines
256 B
Python
Raw Permalink Normal View History

2025-01-06 10:57:38 +07:00
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class Website(models.Model):
_inherit = 'website'
newsletter_id = fields.Many2one(string="Newsletter List", comodel_name='mailing.list')