From f9ce5cf61c2aa00196c0b0afba843dcb90e4cf89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ses=C3=B3stris=20Vieira?= Date: Tue, 11 Dec 2012 20:24:51 -0200 Subject: [PATCH] =?UTF-8?q?Aumentar=20campo=20descri=C3=A7=C3=A3o=20do=20d?= =?UTF-8?q?esembolso=20para=20100=20posi=C3=A7=C3=B5es?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sigi/apps/financeiro/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sigi/apps/financeiro/models.py b/sigi/apps/financeiro/models.py index 6089a60..35f291b 100644 --- a/sigi/apps/financeiro/models.py +++ b/sigi/apps/financeiro/models.py @@ -4,7 +4,7 @@ from sigi.apps.convenios.models import Projeto class Desembolso(models.Model): projeto = models.ForeignKey(Projeto, verbose_name=u'Projeto') - descricao = models.CharField(u'Descrição da despesa', max_length=60) + descricao = models.CharField(u'Descrição da despesa', max_length=100) data = models.DateField(u'Data do desembolso') valor_reais = models.DecimalField(u'Valor em R$', max_digits=18, decimal_places=2) valor_dolar = models.DecimalField(u'Valor em US$', max_digits=18, decimal_places=2)