fixes bug#AL-4463
parent
485dc2618e
commit
14aae57b78
2
pom.xml
2
pom.xml
|
@ -3,7 +3,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>br.com.rjconsultores</groupId>
|
||||
<artifactId>ModelWeb</artifactId>
|
||||
<version>1.109.2</version>
|
||||
<version>1.110.0</version>
|
||||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
|
|
|
@ -52,6 +52,7 @@ public class OCDParam implements java.io.Serializable {
|
|||
private BigDecimal tiempoLimitePenalizacion;
|
||||
private List<OCDPtoVtaParam> listOCDPtoVtaParam;
|
||||
private Boolean indEstornoPix;
|
||||
private Boolean indReembolsoAdmin;
|
||||
|
||||
public OCDParam(Long ocdparamId, BigDecimal penalizacion, Integer diasPagar, PuntoVenta puntoventa, Empresa empresa,
|
||||
Estado estado, Boolean activo, Date fecmodif, Integer usuarioId) {
|
||||
|
@ -284,5 +285,13 @@ public class OCDParam implements java.io.Serializable {
|
|||
public void setIndEstornoPix(Boolean indEstornoPix) {
|
||||
this.indEstornoPix = indEstornoPix;
|
||||
}
|
||||
@Column(name = "INDREEMBOLSOADMIN")
|
||||
public Boolean getIndReembolsoAdmin() {
|
||||
return indReembolsoAdmin==null?false:indReembolsoAdmin;
|
||||
}
|
||||
|
||||
public void setIndReembolsoAdmin(Boolean indReembolsoAdmin) {
|
||||
this.indReembolsoAdmin = indReembolsoAdmin;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue