You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
297 B
11 lines
297 B
# -*- coding: utf-8 -*-
|
|
|
|
from odoo import models, fields
|
|
|
|
|
|
class CabConfiguration(models.Model):
|
|
_name = 'cab.configuration'
|
|
_rec_name = 'cab_manager'
|
|
|
|
auto_approve = fields.Boolean(string="Auto Approve")
|
|
cab_manager = fields.Many2one('res.users', string='Manager', required=True)
|
|
|