oca-ocb-vertical-industry/odoo-bringout-oca-ocb-lunch/lunch/models/res_company.py
2025-08-29 15:20:52 +02:00

13 lines
365 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models, fields
class Company(models.Model):
_inherit = 'res.company'
lunch_minimum_threshold = fields.Float()
lunch_notify_message = fields.Html(
default="""Your lunch has been delivered.
Enjoy your meal!""", translate=True)