1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/helpdesk_sale_timesheet/models/product.py
2024-12-10 09:04:09 +07:00

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.")