simples alteração na exibição da data do render ClienteDescuento

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@48117 d1611594-4594-4d17-8e1d-87c2c4800839
master
daniel.zauli 2015-09-23 16:33:05 +00:00
parent ac563bbade
commit 6df375dec5
1 changed files with 2 additions and 2 deletions

View File

@ -41,8 +41,8 @@ public class RenderClienteDescuento implements ListitemRenderer {
Calendar calendar = Calendar.getInstance(); Calendar calendar = Calendar.getInstance();
calendar.setTime(data); calendar.setTime(data);
retorno = retorno + String.format("%02d",calendar.get(Calendar.DAY_OF_MONTH))+"/"; retorno = retorno + String.format("%02d",calendar.get(Calendar.DAY_OF_MONTH)+1)+"/";
retorno = retorno + String.format("%02d",calendar.get(Calendar.MONTH))+"/"; retorno = retorno + String.format("%02d",calendar.get(Calendar.MONTH)+1)+"/";
retorno = retorno + String.format("%02d",calendar.get(Calendar.YEAR)); retorno = retorno + String.format("%02d",calendar.get(Calendar.YEAR));
return retorno; return retorno;