forked from Mapan/odoo17e
10 lines
296 B
Python
10 lines
296 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import models, fields
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = 'res.config.settings'
|
|
|
|
wa_sale_template_id = fields.Many2one(related="website_id.wa_sale_template_id", readonly=False)
|