fixes bug#al-2723
parent
145606a21a
commit
1046bb46d7
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.12</version>
|
<version>1.7.0</version>
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
<id>rj-releases</id>
|
<id>rj-releases</id>
|
||||||
|
|
|
@ -137,4 +137,6 @@ public class Constantes {
|
||||||
|
|
||||||
public static final String TIPO_OCUPACAO_SEM_VALIDACAO = "TIPO_OCUPACAO_SEM_VALIDACAO";
|
public static final String TIPO_OCUPACAO_SEM_VALIDACAO = "TIPO_OCUPACAO_SEM_VALIDACAO";
|
||||||
|
|
||||||
|
public static final String CNPJ_OBRIGATORIO_ORDEN_SERVICO = "CNPJ_OBRIGATORIO_ORDEN_SERVICO";
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -84,6 +84,9 @@ public class Secretaria implements Serializable {
|
||||||
@JoinColumn(name = "FORMAPAGO_ID")
|
@JoinColumn(name = "FORMAPAGO_ID")
|
||||||
private FormaPago formaPago;
|
private FormaPago formaPago;
|
||||||
|
|
||||||
|
@Column(name = "CNPJ")
|
||||||
|
private String cnpj;
|
||||||
|
|
||||||
public Secretaria() {
|
public Secretaria() {
|
||||||
this.indVoucherRod = false;
|
this.indVoucherRod = false;
|
||||||
}
|
}
|
||||||
|
@ -285,4 +288,14 @@ public class Secretaria implements Serializable {
|
||||||
public void setFormaPago(FormaPago formaPago) {
|
public void setFormaPago(FormaPago formaPago) {
|
||||||
this.formaPago = formaPago;
|
this.formaPago = formaPago;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getCnpj() {
|
||||||
|
return cnpj;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCnpj(String cnpj) {
|
||||||
|
this.cnpj = cnpj;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue