20 lines
756 B
Python
20 lines
756 B
Python
# Copyright (C) 2021-2024: Criptomart (https://criptomart.net)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo import tools, models, fields, api, _
|
|
|
|
class ProductTemplate(models.Model):
|
|
_inherit = "product.template"
|
|
|
|
subtitle = fields.Char('Subtitulo')
|
|
editorial = fields.Char('Editorial')
|
|
formato = fields.Char('Formato')
|
|
pais_edicion = fields.Char('Pais de edicion')
|
|
colacion = fields.Char('Colacion')
|
|
autor = fields.Char('Autor')
|
|
coleccion = fields.Char('Coleccion')
|
|
subcoleccion = fields.Char('Subcoleccion')
|
|
idioma = fields.Char('Idioma')
|
|
fecha_entrada = fields.Char('Fecha de entrada')
|
|
fecha_edicion = fields.Char('Fecha de edición')
|
|
genero = fields.Char('Genero')
|