mirror of
https://github.com/bringout/oca-ocb-vertical-industry.git
synced 2026-04-21 12:12:05 +02:00
10 lines
310 B
Python
10 lines
310 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = 'res.config.settings'
|
|
|
|
module_maintenance_worksheet = fields.Boolean(string="Custom Maintenance Worksheets")
|