Merge pull request 'Bolivariano - Troca de passagem não cobra e/ou devolve diferença feat' (!294) from AL-5085 into master

Reviewed-on: adm/ModelWeb#294
Reviewed-by: aristides <aristides@rjconsultores.com.br>
master
Valdir Cordeiro 2024-10-11 18:23:25 +00:00
commit ad814c95d6
2 changed files with 22 additions and 1 deletions

View File

@ -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.116.0</version> <version>1.117.0</version>
<distributionManagement> <distributionManagement>
<repository> <repository>

View File

@ -130,6 +130,11 @@ public class OrgaoCancelacion implements Serializable, Auditavel<OrgaoCancelaci
@Column(name = "TEMPOCANCELNAOPRESENCIALMIN") @Column(name = "TEMPOCANCELNAOPRESENCIALMIN")
private Integer tempoCancelNaoPresencialMin; private Integer tempoCancelNaoPresencialMin;
@Column(name = "INDDEVOLUCAOTROCA")
private Boolean indDevolucaoTroca;
@Column(name = "INDCOBRANCATROCA")
private Boolean indCobrancaTroca;
@Transient @Transient
@NaoAuditar @NaoAuditar
@ -443,4 +448,20 @@ public class OrgaoCancelacion implements Serializable, Auditavel<OrgaoCancelaci
this.tempoCancelNaoPresencialMin = tempoCancelNaoPresencialMin; this.tempoCancelNaoPresencialMin = tempoCancelNaoPresencialMin;
} }
public Boolean getIndDevolucaoTroca() {
return indDevolucaoTroca == null ? true : indDevolucaoTroca;
}
public void setIndDevolucaoTroca(Boolean indDevolucaoTroca) {
this.indDevolucaoTroca = indDevolucaoTroca;
}
public Boolean getIndCobrancaTroca() {
return indCobrancaTroca == null ? true : indCobrancaTroca;
}
public void setIndCobrancaTroca(Boolean indCobrancaTroca) {
this.indCobrancaTroca = indCobrancaTroca;
}
} }