diff --git a/src/java/com/rjconsultores/ventaboletos/web/utilerias/render/RenderClienteDescuento.java b/src/java/com/rjconsultores/ventaboletos/web/utilerias/render/RenderClienteDescuento.java index b49368dd1..162c7643e 100644 --- a/src/java/com/rjconsultores/ventaboletos/web/utilerias/render/RenderClienteDescuento.java +++ b/src/java/com/rjconsultores/ventaboletos/web/utilerias/render/RenderClienteDescuento.java @@ -41,8 +41,8 @@ public class RenderClienteDescuento implements ListitemRenderer { Calendar calendar = Calendar.getInstance(); calendar.setTime(data); - retorno = retorno + String.format("%02d",calendar.get(Calendar.DAY_OF_MONTH))+"/"; - retorno = retorno + String.format("%02d",calendar.get(Calendar.MONTH))+"/"; + retorno = retorno + String.format("%02d",calendar.get(Calendar.DAY_OF_MONTH)+1)+"/"; + retorno = retorno + String.format("%02d",calendar.get(Calendar.MONTH)+1)+"/"; retorno = retorno + String.format("%02d",calendar.get(Calendar.YEAR)); return retorno;