forked from Mapan/odoo17e
14 lines
439 B
Python
14 lines
439 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ProductTemplate(models.Model):
|
|
_inherit = "product.template"
|
|
|
|
sla_id = fields.Many2one(
|
|
"helpdesk.sla", string="SLA Policy",
|
|
company_dependent=True,
|
|
help="SLA Policy that will automatically apply to the tickets linked to a sales order item containing this service.")
|