forked from Mapan/odoo17e
16 lines
522 B
Python
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.",
|
|
)
|