bug#18396
dev: valdir qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@101159 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
5a4b5e92fe
commit
bfc2615a49
|
@ -321,6 +321,12 @@ public class Empresa implements Serializable {
|
||||||
@Column(name = "INDPRECOPORDEMANDA")
|
@Column(name = "INDPRECOPORDEMANDA")
|
||||||
private Boolean indPrecoPorDemanda;
|
private Boolean indPrecoPorDemanda;
|
||||||
|
|
||||||
|
@Column(name = "INDRATEIOCOMISSAOGRUPOLINHA")
|
||||||
|
private Boolean indRateioComissaoGrupoLinha;
|
||||||
|
|
||||||
|
@Column(name = "INDCOMISSAOGRUPOLINHAORIGINAL")
|
||||||
|
private Boolean indComissaoGrupoLinhaOriginal;
|
||||||
|
|
||||||
public Empresa() {
|
public Empresa() {
|
||||||
super();
|
super();
|
||||||
}
|
}
|
||||||
|
@ -1206,4 +1212,20 @@ public class Empresa implements Serializable {
|
||||||
public void setIndPrecoPorDemanda(Boolean indPrecoPorDemanda) {
|
public void setIndPrecoPorDemanda(Boolean indPrecoPorDemanda) {
|
||||||
this.indPrecoPorDemanda = indPrecoPorDemanda;
|
this.indPrecoPorDemanda = indPrecoPorDemanda;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Boolean getIndRateioComissaoGrupoLinha() {
|
||||||
|
return indRateioComissaoGrupoLinha == null ? false : indRateioComissaoGrupoLinha;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIndRateioComissaoGrupoLinha(Boolean indRateioComissaoGrupoLinha) {
|
||||||
|
this.indRateioComissaoGrupoLinha = indRateioComissaoGrupoLinha;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Boolean getIndComissaoGrupoLinhaOriginal() {
|
||||||
|
return indComissaoGrupoLinhaOriginal == null ? false : indComissaoGrupoLinhaOriginal;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIndComissaoGrupoLinhaOriginal(Boolean indComissaoGrupoLinhaOriginal) {
|
||||||
|
this.indComissaoGrupoLinhaOriginal = indComissaoGrupoLinhaOriginal;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue