Merge pull request 'bug#al-3852' (!164) from AL3852 into master
Reviewed-on: adm/ModelWeb#164 Reviewed-by: Gleison da Cruz <gleison.cruz@totvs.com.br>master
commit
259ac0239e
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.41.3</version>
|
<version>1.42.0</version>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
|
|
|
@ -124,6 +124,12 @@ public class OrgaoCancelacion implements Serializable, Auditavel<OrgaoCancelaci
|
||||||
@Column(name = "INDIMPRIMECOMPROVANTETRANS")
|
@Column(name = "INDIMPRIMECOMPROVANTETRANS")
|
||||||
private Boolean indImprimeComprovanteTransferencia;
|
private Boolean indImprimeComprovanteTransferencia;
|
||||||
|
|
||||||
|
@Column(name = "TEMPOCANCELNAOPRESENCIALHORA")
|
||||||
|
private Integer tempoCancelNaoPresencialHora;
|
||||||
|
|
||||||
|
@Column(name = "TEMPOCANCELNAOPRESENCIALMIN")
|
||||||
|
private Integer tempoCancelNaoPresencialMin;
|
||||||
|
|
||||||
|
|
||||||
@Transient
|
@Transient
|
||||||
@NaoAuditar
|
@NaoAuditar
|
||||||
|
@ -419,6 +425,22 @@ public class OrgaoCancelacion implements Serializable, Auditavel<OrgaoCancelaci
|
||||||
@Override
|
@Override
|
||||||
public String getTextoInclusaoExclusao() {
|
public String getTextoInclusaoExclusao() {
|
||||||
return String.format("ID [%s]", getOrgaoCancelacionId());
|
return String.format("ID [%s]", getOrgaoCancelacionId());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Integer getTempoCancelNaoPresencialHora() {
|
||||||
|
return tempoCancelNaoPresencialHora == null ? 0 : tempoCancelNaoPresencialHora;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTempoCancelNaoPresencialHora(Integer tempoCancelNaoPresencialHora) {
|
||||||
|
this.tempoCancelNaoPresencialHora = tempoCancelNaoPresencialHora;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getTempoCancelNaoPresencialMin() {
|
||||||
|
return tempoCancelNaoPresencialMin == null ? 0 : tempoCancelNaoPresencialMin;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTempoCancelNaoPresencialMin(Integer tempoCancelNaoPresencialMin) {
|
||||||
|
this.tempoCancelNaoPresencialMin = tempoCancelNaoPresencialMin;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -349,6 +349,9 @@ public class PuntoVenta implements Serializable, Auditavel<PuntoVenta> {
|
||||||
@Column(name = "INDTAXACONVORGAOCONCEDENTE")
|
@Column(name = "INDTAXACONVORGAOCONCEDENTE")
|
||||||
private Boolean indTaxaConvenienciaOrgaoConcedente;
|
private Boolean indTaxaConvenienciaOrgaoConcedente;
|
||||||
|
|
||||||
|
@Column(name = "INDPONTOVENDANAOPRESENCIAL")
|
||||||
|
private Boolean indPontoVendaNaoPresencial;
|
||||||
|
|
||||||
public List<CobrancaAdcPuntoVenta> getCobrancaAdicionalList() {
|
public List<CobrancaAdcPuntoVenta> getCobrancaAdicionalList() {
|
||||||
return cobrancaAdicionalList;
|
return cobrancaAdicionalList;
|
||||||
}
|
}
|
||||||
|
@ -1389,5 +1392,11 @@ public class PuntoVenta implements Serializable, Auditavel<PuntoVenta> {
|
||||||
this.indTaxaConvenienciaOrgaoConcedente = indTaxaConvenienciaOrgaoConcedente;
|
this.indTaxaConvenienciaOrgaoConcedente = indTaxaConvenienciaOrgaoConcedente;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Boolean getIndPontoVendaNaoPresencial() {
|
||||||
|
return indPontoVendaNaoPresencial == null ? false : indPontoVendaNaoPresencial;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIndPontoVendaNaoPresencial(Boolean indPontoVendaNaoPresencial) {
|
||||||
|
this.indPontoVendaNaoPresencial = indPontoVendaNaoPresencial;
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue