mirror of
https://gitlab.com/sonalarora/tra_backend.git
synced 2025-12-17 18:29:08 +02:00
add gym module
This commit is contained in:
17
gym/models/project_document_name.py
Normal file
17
gym/models/project_document_name.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from odoo import api, fields, models, _
|
||||
|
||||
class ProjectDocumentName(models.Model):
|
||||
|
||||
_name = 'project.document.name'
|
||||
_description = "Documents Name"
|
||||
_rec_name = "name"
|
||||
|
||||
# --------------------------------------------------------------------
|
||||
# FIELDS
|
||||
# --------------------------------------------------------------------
|
||||
|
||||
name = fields.Char(
|
||||
string='Name',
|
||||
)
|
||||
Reference in New Issue
Block a user