48 lines
1.4 KiB
Python
48 lines
1.4 KiB
Python
# 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 (ModelSQL, ModelView, fields, Workflow)
|
|
from datetime import datetime
|
|
|
|
class Recepcion(ModelView, ModelSQL, Workflow):
|
|
"Recepcion"
|
|
__name__= "taller.recepcion"
|
|
|
|
tercero = fields.Many2One("party.party", "Tercero")
|
|
metodo_contacto=fields.Many2One('party.contact_mechanism', "Contacto")
|
|
hora_entrada = fields.DateTime('Hora Entrada')
|
|
referencia = fields.Char("Referencia")
|
|
descripcion = fields.Text("Descripcion")
|
|
state = fields.Selection([("borrador","Borrador"),("registrado", "Registrado")],"Estado")
|
|
|
|
|
|
@classmethod
|
|
def default_hora_entrada(cls):
|
|
return datetime.now()
|
|
|
|
@classmethod
|
|
def default_state(cls):
|
|
return "borrador"
|
|
|
|
@classmethod #constructor clase
|
|
def __setup__(cls):
|
|
super(Recepcion, cls).__setup__()
|
|
cls._transitions=({("borrador","registrado"),("registrado","borrador") })
|
|
cls._buttons.update({"registrado":{}, "borrador":{}})
|
|
|
|
|
|
@classmethod
|
|
@ModelView.button
|
|
@Workflow.transition("registrado")
|
|
def registrado(cls, records):
|
|
pass
|
|
|
|
|
|
@classmethod
|
|
@ModelView.button
|
|
@Workflow.transition("borrador")
|
|
def borrador(cls, records):
|
|
pass
|
|
|
|
|
|
|