taller/recepcion.py

22 lines
833 B
Python
Raw Normal View History

2023-07-25 19:24:18 -05:00
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
from trytond.model import (ModelView, ModelSQL, fields)
from datetime import datetime
class Recepcion(ModelView,ModelSQL):
"recepcion"
__name__="taller.recepcion"
tercero =fields.Many2One("party.party","Tercero" )
contacto=fields.Many2One("party.contact_mechanism", "Contacto")
referencia=fields.Char("Referencia")
fecha_entrada=fields.DateTime("Fecha y hora de entrada")
2023-07-26 07:15:07 -05:00
descripcion=fields.Text("Descripcion")
estado= fields.Selection([("borrador","Borrador"),("registrado","Registrado")],"Estado")
2023-07-25 19:24:18 -05:00
@classmethod
def default_fecha_entrada(cls):
return datetime.now()
2023-07-26 07:15:07 -05:00
@classmethod
def default_estado(cls):
return "borrador"