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

16 lines
522 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import api, fields, models
class ResCompany(models.Model):
_inherit = "res.company"
rental_sign_tmpl_id = fields.Many2one(
"sign.template",
string="Default Document Template for Rentals",
help="This document template will be selected by default when signing "
"documents from a rental order. You should select a template accessible "
"to all Sign users.",
)