12 lines
348 B
Python
12 lines
348 B
Python
|
|
# -*- coding: utf-8 -*-
|
||
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
|
||
|
|
from ast import literal_eval
|
||
|
|
|
||
|
|
from odoo import api, fields, models, _
|
||
|
|
|
||
|
|
class CkSetting(models.TransientModel):
|
||
|
|
_inherit = 'res.config.settings'
|
||
|
|
|
||
|
|
intern = fields.Boolean(string="Enable Intern")
|
||
|
|
exam = fields.Boolean(string="Enable Exam")
|