AL-1808
parent
942dad3a6a
commit
bd0446cc81
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.0.13</version>
|
<version>1.0.14</version>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
|
|
|
@ -102,6 +102,9 @@ public class FormaPago implements Serializable, Auditavel<FormaPago> {
|
||||||
@NaoAuditar
|
@NaoAuditar
|
||||||
private FormaPago formaPagoClone;
|
private FormaPago formaPagoClone;
|
||||||
|
|
||||||
|
@Column(name = "INDETICKET")
|
||||||
|
private Boolean indETicket;
|
||||||
|
|
||||||
public FormaPago() {
|
public FormaPago() {
|
||||||
super();
|
super();
|
||||||
}
|
}
|
||||||
|
@ -325,6 +328,16 @@ public class FormaPago implements Serializable, Auditavel<FormaPago> {
|
||||||
this.tipoEventoExtraId = tipoEventoExtraId;
|
this.tipoEventoExtraId = tipoEventoExtraId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public Boolean getIndETicket() {
|
||||||
|
return indETicket == null ? false : indETicket;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIndETicket(Boolean indETicket) {
|
||||||
|
this.indETicket = indETicket;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public FormaPago getCloneObject() throws CloneNotSupportedException {
|
public FormaPago getCloneObject() throws CloneNotSupportedException {
|
||||||
return formaPagoClone;
|
return formaPagoClone;
|
||||||
|
|
Loading…
Reference in New Issue