mirror of
https://gitlab.com/sonalarora/tra_backend.git
synced 2025-12-17 18:29:08 +02:00
17 lines
420 B
Python
17 lines
420 B
Python
# -*- 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',
|
|
) |