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.
21 lines
718 B
21 lines
718 B
##############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
|
|
# Maintainer: Cybrosys Technologies (<https://www.cybrosys.com>)
|
|
#
|
|
##############################################################################
|
|
|
|
from odoo import models, fields
|
|
|
|
|
|
class PhysicianSpeciality(models.Model):
|
|
_name = 'physician.speciality'
|
|
_description = 'Medical Specialty'
|
|
|
|
code = fields.Char(string='ID')
|
|
name = fields.Char(string='Specialty', help='Name of the specialty', required=True)
|
|
|
|
_sql_constraints = [
|
|
('name_uniq', 'UNIQUE(name)', 'Name must be unique!'),
|
|
]
|
|
|