diff options
Diffstat (limited to 'addons/lunch/models/res_company.py')
| -rw-r--r-- | addons/lunch/models/res_company.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/addons/lunch/models/res_company.py b/addons/lunch/models/res_company.py new file mode 100644 index 00000000..95d91d09 --- /dev/null +++ b/addons/lunch/models/res_company.py @@ -0,0 +1,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() |
