diff --git a/bemade_sports_clinic/__manifest__.py b/bemade_sports_clinic/__manifest__.py index 81b355f..5509180 100644 --- a/bemade_sports_clinic/__manifest__.py +++ b/bemade_sports_clinic/__manifest__.py @@ -18,7 +18,7 @@ # { 'name': 'Sports Clinic Management', - 'version': '16.0.1.5.2', + 'version': '16.0.1.5.3', 'summary': 'Manage the patients of a sports medicine clinic.', 'description': """ Adds the notion of sports teams, players (patients), coaches and treatment diff --git a/bemade_sports_clinic/models/patient.py b/bemade_sports_clinic/models/patient.py index 201bea2..b1b1e41 100644 --- a/bemade_sports_clinic/models/patient.py +++ b/bemade_sports_clinic/models/patient.py @@ -7,7 +7,7 @@ from odoo.addons.phone_validation.tools import phone_validation class Patient(models.Model): _name = 'sports.patient' - _description = "Patient at a sports medicine clinic." + _description = "Patient" _inherit = ['mail.thread', 'mail.activity.mixin'] _order = 'last_name, first_name' @@ -222,7 +222,7 @@ class PatientContact(models.Model): class PatientInjury(models.Model): _name = 'sports.patient.injury' - _description = "A patient's injury." + _description = "Patient Injury" _inherit = ['mail.thread', 'mail.activity.mixin'] _rec_name = 'diagnosis' diff --git a/bemade_sports_clinic/models/sports_team.py b/bemade_sports_clinic/models/sports_team.py index b2f23bf..6f7d589 100644 --- a/bemade_sports_clinic/models/sports_team.py +++ b/bemade_sports_clinic/models/sports_team.py @@ -51,7 +51,7 @@ class SportsTeam(models.Model): class TeamStaff(models.Model): _name = "sports.team.staff" - _description = "Relationship between staff members and their teams." + _description = "Sports Team Staff" sequence = fields.Integer() team_id = fields.Many2one(comodel_name='sports.team', string='Team', required=True)