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.
20 lines
829 B
20 lines
829 B
# -*- encoding: utf-8 -*-
|
|
##############################################################################
|
|
# For copyright and license notices, see __openerp__.py file in root directory
|
|
##############################################################################
|
|
from openerp import models, fields
|
|
|
|
|
|
class CrmJobPosition(models.Model):
|
|
_name = 'crm.job_position'
|
|
_order = "parent_left"
|
|
_parent_order = "name"
|
|
_parent_store = True
|
|
_description = "Job position"
|
|
|
|
name = fields.Char(required=True)
|
|
parent_id = fields.Many2one(comodel_name='crm.job_position')
|
|
children = fields.One2many(comodel_name='crm.job_position',
|
|
inverse_name='parent_id')
|
|
parent_left = fields.Integer('Parent Left', select=True)
|
|
parent_right = fields.Integer('Parent Right', select=True)
|