Merge remote-tracking branch 'origin/master' into AL-2696
commit
64e0dc5886
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.6.5</version>
|
<version>1.6.7</version>
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
<id>rj-releases</id>
|
<id>rj-releases</id>
|
||||||
|
|
|
@ -36,7 +36,10 @@ import org.hibernate.annotations.Where;
|
||||||
@Entity
|
@Entity
|
||||||
@SequenceGenerator(name = "CLIENTE_SEQ", sequenceName = "CLIENTE_SEQ", allocationSize = 1)
|
@SequenceGenerator(name = "CLIENTE_SEQ", sequenceName = "CLIENTE_SEQ", allocationSize = 1)
|
||||||
@Table(name = "CLIENTE")
|
@Table(name = "CLIENTE")
|
||||||
|
|
||||||
public class Cliente implements Serializable {
|
public class Cliente implements Serializable {
|
||||||
|
@Column(name="ROWID", updatable=false, insertable=false)
|
||||||
|
private String rowId;
|
||||||
|
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@Id
|
@Id
|
||||||
|
@ -553,4 +556,14 @@ public class Cliente implements Serializable {
|
||||||
this.fecbloqueiopcd = fecbloqueiopcd;
|
this.fecbloqueiopcd = fecbloqueiopcd;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getRowId() {
|
||||||
|
return rowId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRowId(String rowId) {
|
||||||
|
this.rowId = rowId;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -80,6 +80,9 @@ public class PtovtaEmpresa implements Serializable, Auditavel<PtovtaEmpresa>{
|
||||||
@Column(name = "NUMSITEF")
|
@Column(name = "NUMSITEF")
|
||||||
private String numeroSitef;
|
private String numeroSitef;
|
||||||
|
|
||||||
|
@Column(name = "MERCHANTSTOREADYEN")
|
||||||
|
private String merchantStoreAdyen;
|
||||||
|
|
||||||
@NaoAuditar
|
@NaoAuditar
|
||||||
@OneToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY)
|
@OneToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY)
|
||||||
@JoinColumn(name = "PTOVTAEMPRESA_ID", referencedColumnName = "PTOVTAEMPRESA_ID")
|
@JoinColumn(name = "PTOVTAEMPRESA_ID", referencedColumnName = "PTOVTAEMPRESA_ID")
|
||||||
|
@ -233,6 +236,14 @@ public class PtovtaEmpresa implements Serializable, Auditavel<PtovtaEmpresa>{
|
||||||
this.contasBancaria = contasBancaria;
|
this.contasBancaria = contasBancaria;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getMerchantStoreAdyen() {
|
||||||
|
return merchantStoreAdyen;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMerchantStoreAdyen(String merchantStoreAdyen) {
|
||||||
|
this.merchantStoreAdyen = merchantStoreAdyen;
|
||||||
|
}
|
||||||
|
|
||||||
public String getContasBancariaInfo() {
|
public String getContasBancariaInfo() {
|
||||||
if (!getContasBancaria().isEmpty()) {
|
if (!getContasBancaria().isEmpty()) {
|
||||||
StringBuilder sb = new StringBuilder();
|
StringBuilder sb = new StringBuilder();
|
||||||
|
|
|
@ -346,9 +346,6 @@ public class PuntoVenta implements Serializable, Auditavel<PuntoVenta> {
|
||||||
@Column(name = "INDBLOQUEARDESCONTOWEB")
|
@Column(name = "INDBLOQUEARDESCONTOWEB")
|
||||||
private Boolean indBloquearDescontoWEB;
|
private Boolean indBloquearDescontoWEB;
|
||||||
|
|
||||||
@Column(name = "MERCHANTSTOREADYEN")
|
|
||||||
private String merchantStoreAdyen;
|
|
||||||
|
|
||||||
public List<CobrancaAdcPuntoVenta> getCobrancaAdicionalList() {
|
public List<CobrancaAdcPuntoVenta> getCobrancaAdicionalList() {
|
||||||
return cobrancaAdicionalList;
|
return cobrancaAdicionalList;
|
||||||
}
|
}
|
||||||
|
@ -1373,14 +1370,6 @@ public class PuntoVenta implements Serializable, Auditavel<PuntoVenta> {
|
||||||
this.indBloquearDescontoWEB = indBloquearDescontoWEB;
|
this.indBloquearDescontoWEB = indBloquearDescontoWEB;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getMerchantStoreAdyen() {
|
|
||||||
return merchantStoreAdyen;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMerchantStoreAdyen(String merchantStoreAdyen) {
|
|
||||||
this.merchantStoreAdyen = merchantStoreAdyen;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getTempoMaxServicoEmVenda() {
|
public Integer getTempoMaxServicoEmVenda() {
|
||||||
return tempoMaxServicoEmVenda;
|
return tempoMaxServicoEmVenda;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue