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.
12 lines
465 B
12 lines
465 B
# -*- encoding: utf-8 -*-
|
|
##############################################################################
|
|
# For copyright and license notices, see __openerp__.py file in root directory
|
|
##############################################################################
|
|
from openerp import models, fields
|
|
|
|
|
|
class CrmEmployeesRange(models.Model):
|
|
_name = 'crm.employees_range'
|
|
_description = "Employees range"
|
|
|
|
name = fields.Char(required=True, translate=True)
|