blob: 95d91d09596742f712662efba8130a6cc132f91c (
plain)
1
2
3
4
5
6
7
8
9
10
|
# -*- 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()
|