Novo layout relatorio forma pagamento feat bug #AL-3565

master
Fabio 2024-02-09 11:03:22 -03:00
parent 0a1ee2b60d
commit 0cab8ebcb3
2 changed files with 9 additions and 1 deletions

View File

@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>br.com.rjconsultores</groupId>
<artifactId>ModelWeb</artifactId>
<version>1.36.3</version>
<version>1.37.0</version>
<distributionManagement>
<repository>

View File

@ -629,6 +629,14 @@ public final class DateUtil {
return fimFecha(fecha, false);
}
public static java.sql.Date inicioFechaSql(Date fecha) {
return new java.sql.Date(inicioFecha(fecha, false).getTime());
}
public static java.sql.Date fimFechaSql(Date fecha) {
return new java.sql.Date(fimFecha(fecha, false).getTime());
}
public static Date somarDias(Date data, int quantidadeDias) {
Integer dias = UM_DIA * quantidadeDias;
Calendar c = Calendar.getInstance();