Novo layout relatorio forma pagamento feat bug #AL-3565' (!146) from AL-3565 into master
Reviewed-on: adm/ModelWeb#146 Reviewed-by: aristides <aristides@rjconsultores.com.br>master
commit
c438bda49c
2
pom.xml
2
pom.xml
|
@ -3,7 +3,7 @@
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>br.com.rjconsultores</groupId>
|
<groupId>br.com.rjconsultores</groupId>
|
||||||
<artifactId>ModelWeb</artifactId>
|
<artifactId>ModelWeb</artifactId>
|
||||||
<version>1.36.3</version>
|
<version>1.37.0</version>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
|
|
|
@ -628,6 +628,14 @@ public final class DateUtil {
|
||||||
public static Date fimFecha(Date fecha) {
|
public static Date fimFecha(Date fecha) {
|
||||||
return fimFecha(fecha, false);
|
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) {
|
public static Date somarDias(Date data, int quantidadeDias) {
|
||||||
Integer dias = UM_DIA * quantidadeDias;
|
Integer dias = UM_DIA * quantidadeDias;
|
||||||
|
|
Loading…
Reference in New Issue