bug#18049
qua:Wallysson dev:Thiago git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@100250 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
a3027cb3bd
commit
fa5f2bc719
|
@ -126,6 +126,8 @@ public class EditarOrgaoConcedenteController extends MyGenericForwardComposer {
|
|||
|
||||
private MyTextboxDecimal txtCoeficiente;
|
||||
|
||||
private MyTextboxDecimal txtComissaoVenda;
|
||||
|
||||
public OrgaoConcedente getOrgaoConcedente() {
|
||||
return orgaoConcedente;
|
||||
}
|
||||
|
@ -254,6 +256,7 @@ public class EditarOrgaoConcedenteController extends MyGenericForwardComposer {
|
|||
oc.setOrgao(orgaoConcedente);
|
||||
oc.setPorccambio(txtPorcCambio.getValueDecimal());
|
||||
oc.setPorcmulta(txtPorcMulta.getValueDecimal());
|
||||
oc.setPorcComissaoVenda(txtComissaoVenda.getValueDecimal());
|
||||
oc.setUsuarioId(UsuarioLogado.getUsuarioLogado().getUsuarioId());
|
||||
oc.setFecmodif(Calendar.getInstance().getTime());
|
||||
oc.setTiempolimite(new Integer(txtTiempoLimite.getValue()));
|
||||
|
|
|
@ -72,6 +72,10 @@ public class RenderOrgaoCancelacion implements ListitemRenderer {
|
|||
lc.setParent(lstm);
|
||||
lc.setStyle("text-align:center");
|
||||
|
||||
lc = new Listcell(orgaoCancelacion.getPorcComissaoVenda() != null ? df.format(orgaoCancelacion.getPorcComissaoVenda()) : null);
|
||||
lc.setParent(lstm);
|
||||
lc.setStyle("text-align:right");
|
||||
|
||||
lstm.setAttribute("data", orgaoCancelacion);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -326,6 +326,15 @@
|
|||
<checkbox
|
||||
id="chkIndOrgaoconcedentetransf" />
|
||||
</row>
|
||||
|
||||
<row>
|
||||
<label
|
||||
value="${c:l('editarOrgaoConcedenteController.porComissaoVenta.label')}" />
|
||||
<textbox id="txtComissaoVenda"
|
||||
constraint="no empty" width="60%" maxlength="60"
|
||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextboxDecimal" />
|
||||
</row>
|
||||
|
||||
</rows>
|
||||
</grid>
|
||||
|
||||
|
@ -376,8 +385,10 @@
|
|||
label="${c:l('editarOrgaoConcedenteController.indsolicitadatostarjeta.label')}" width="170px" />
|
||||
<listheader image="/gui/img/create_doc.gif"
|
||||
label="${c:l('editarOrgaoConcedenteController.indOrgaoconcedentetransf.label')}" width="170px" />
|
||||
<listheader image="/gui/img/create_doc.gif"
|
||||
<listheader image="/gui/img/create_doc.gif"
|
||||
label="${c:l('editarOrgaoConcedenteController.indMultaDevolucaoAberto.label')}" width="170px" />
|
||||
<listheader image="/gui/img/create_doc.gif"
|
||||
label="${c:l('editarOrgaoConcedenteController.porComissaoVenta.label')}" width="170px" />
|
||||
</listhead>
|
||||
</listbox>
|
||||
</tabpanel>
|
||||
|
|
Loading…
Reference in New Issue