add gym module

This commit is contained in:
sonal
2020-08-04 16:50:06 +05:30
parent d32f648b75
commit 29f684db39
219 changed files with 5030 additions and 0 deletions

11
gym/models/gym_skills.py Normal file
View File

@@ -0,0 +1,11 @@
# See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class GymSkills(models.Model):
_name = 'gym.skills'
_description = "Gym Skills"
name = fields.Char('Skill', required=True)
code = fields.Char('Code')