Merge pull request 'fixes bug#AL-4049' (!184) from AL-4049 into master
Reviewed-on: adm/ModelWeb#184 Reviewed-by: Valdir Cordeiro <valdir.cordeiro@totvs.com.br>master
commit
06320bbdd5
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.55.0</version>
|
||||
<version>1.56.0</version>
|
||||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
|
|
|
@ -58,6 +58,10 @@ public class HistoricoPuntoVenta implements Serializable, Auditavel<HistoricoPun
|
|||
@Column(name = "USUARIO_ID")
|
||||
private Integer usuarioId;
|
||||
|
||||
|
||||
@Column(name = "MOTIVO_BLOQUEIO")
|
||||
private String motivoBloqueio;
|
||||
|
||||
@Transient
|
||||
@NaoAuditar
|
||||
private HistoricoPuntoVenta historicoPuntoVentaClone;
|
||||
|
@ -136,6 +140,17 @@ public class HistoricoPuntoVenta implements Serializable, Auditavel<HistoricoPun
|
|||
return String.format("ID [%s]", getHistoricoPuntoVentaId());
|
||||
}
|
||||
|
||||
public String getMotivoBloqueio() {
|
||||
return motivoBloqueio;
|
||||
}
|
||||
|
||||
public void setMotivoBloqueio(String motivoBloqueio) {
|
||||
this.motivoBloqueio = motivoBloqueio;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
|
|
@ -352,6 +352,9 @@ public class PuntoVenta implements Serializable, Auditavel<PuntoVenta> {
|
|||
@Column(name = "INDPONTOVENDANAOPRESENCIAL")
|
||||
private Boolean indPontoVendaNaoPresencial;
|
||||
|
||||
@Column(name = "MOTIVO_BLOQUEIO")
|
||||
private String motivoBloqueio;
|
||||
|
||||
public List<CobrancaAdcPuntoVenta> getCobrancaAdicionalList() {
|
||||
return cobrancaAdicionalList;
|
||||
}
|
||||
|
@ -1399,4 +1402,14 @@ public class PuntoVenta implements Serializable, Auditavel<PuntoVenta> {
|
|||
public void setIndPontoVendaNaoPresencial(Boolean indPontoVendaNaoPresencial) {
|
||||
this.indPontoVendaNaoPresencial = indPontoVendaNaoPresencial;
|
||||
}
|
||||
|
||||
public String getMotivoBloqueio() {
|
||||
return motivoBloqueio;
|
||||
}
|
||||
|
||||
public void setMotivoBloqueio(String motivoBloqueio) {
|
||||
this.motivoBloqueio = motivoBloqueio;
|
||||
}
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue