From 0517323e96a9af25ceb8acc756a8146d160d0251 Mon Sep 17 00:00:00 2001 From: Ricardo Markiewicz Date: Sun, 4 Mar 2007 17:46:50 +0000 Subject: [PATCH] nota no debe ser null --- sercom/subcontrollers/correccion/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sercom/subcontrollers/correccion/__init__.py b/sercom/subcontrollers/correccion/__init__.py index 573241e..7908577 100644 --- a/sercom/subcontrollers/correccion/__init__.py +++ b/sercom/subcontrollers/correccion/__init__.py @@ -39,7 +39,7 @@ class CorreccionForm(W.TableForm): lentregador = W.Label(label=_(u'Entregador')) lentrega = W.Label(label=_(u'Entrega')) lcorrector = W.Label(label=_(u'Corrector')) - nota = W.TextField(label=_(u'Nota'), validator=V.Number(not_empty=False, strip=True)) + nota = W.TextField(label=_(u'Nota'), validator=V.Number(not_empty=True, strip=True)) observaciones = W.TextArea(label=_(u'Observaciones'), validator=V.UnicodeString(not_empty=False, strip=True)) fields = Fields() javascript = [W.JSSource("MochiKit.DOM.focusOnLoad('form_instancia');")] -- 2.43.0