Merge pull request 'Se crea pantalla de funcionalidad de Informe Viajes Ocasionales AL-4555' (!669) from AL-4555 into master
Reviewed-on: adm/VentaBoletosAdm#669 Reviewed-by: Lucas Taiã <lucas@rjconsultores.com.br>master 1.128.2
commit
747e1a9d79
2
pom.xml
2
pom.xml
|
@ -4,7 +4,7 @@
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>br.com.rjconsultores</groupId>
|
<groupId>br.com.rjconsultores</groupId>
|
||||||
<artifactId>ventaboletosadm</artifactId>
|
<artifactId>ventaboletosadm</artifactId>
|
||||||
<version>1.128.1</version>
|
<version>1.128.2</version>
|
||||||
<packaging>war</packaging>
|
<packaging>war</packaging>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
|
|
|
@ -108,12 +108,12 @@ public class CargaContratoExpressosController extends MyGenericForwardComposer{
|
||||||
|
|
||||||
Date fechaInicio = txtFechaInicio.getValue();
|
Date fechaInicio = txtFechaInicio.getValue();
|
||||||
if(fechaInicio != null) {
|
if(fechaInicio != null) {
|
||||||
buscarExpresos.addFilterGreaterOrEqual("FECSOLICITUD", fechaInicio);
|
buscarExpresos.addFilterGreaterOrEqual("fechaSolicitud", fechaInicio);
|
||||||
}
|
}
|
||||||
|
|
||||||
Date fechaFin = txtFechaFin.getValue();
|
Date fechaFin = txtFechaFin.getValue();
|
||||||
if(fechaFin != null) {
|
if(fechaFin != null) {
|
||||||
buscarExpresos.addFilterLessOrEqual("FECSOLICITUD", fechaFin);
|
buscarExpresos.addFilterLessOrEqual("fechaSolicitud", fechaFin);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(ckServiciosInactivos.isChecked()) {
|
if(ckServiciosInactivos.isChecked()) {
|
||||||
|
|
|
@ -104,12 +104,12 @@ public class CumplimientoServicioExpresosController extends MyGenericForwardComp
|
||||||
|
|
||||||
Date fechaInicio = txtFechaInicio.getValue();
|
Date fechaInicio = txtFechaInicio.getValue();
|
||||||
if(fechaInicio != null) {
|
if(fechaInicio != null) {
|
||||||
buscarExpresos.addFilterGreaterOrEqual("FECSOLICITUD", fechaInicio);
|
buscarExpresos.addFilterGreaterOrEqual("fechaSolicitud", fechaInicio);
|
||||||
}
|
}
|
||||||
|
|
||||||
Date fechaFin = txtFechaFin.getValue();
|
Date fechaFin = txtFechaFin.getValue();
|
||||||
if(fechaFin != null) {
|
if(fechaFin != null) {
|
||||||
buscarExpresos.addFilterLessOrEqual("FECSOLICITUD", fechaFin);
|
buscarExpresos.addFilterLessOrEqual("fechaSolicitud", fechaFin);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(ckServiciosInactivos.isChecked()) {
|
if(ckServiciosInactivos.isChecked()) {
|
||||||
|
|
|
@ -62,12 +62,12 @@ public class DocumentosExpresosController extends MyGenericForwardComposer{
|
||||||
|
|
||||||
Date fechaInicio = txtFechaInicio.getValue();
|
Date fechaInicio = txtFechaInicio.getValue();
|
||||||
if(fechaInicio != null) {
|
if(fechaInicio != null) {
|
||||||
buscarExpresos.addFilterGreaterOrEqual("FECSOLICITUD", fechaInicio);
|
buscarExpresos.addFilterGreaterOrEqual("fechaSolicitud", fechaInicio);
|
||||||
}
|
}
|
||||||
|
|
||||||
Date fechaFin = txtFechaFin.getValue();
|
Date fechaFin = txtFechaFin.getValue();
|
||||||
if(fechaFin != null) {
|
if(fechaFin != null) {
|
||||||
buscarExpresos.addFilterLessOrEqual("FECSOLICITUD", fechaFin);
|
buscarExpresos.addFilterLessOrEqual("fechaSolicitud", fechaFin);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(ckServiciosInactivos.isChecked()) {
|
if(ckServiciosInactivos.isChecked()) {
|
||||||
|
|
|
@ -87,12 +87,12 @@ public class ExpressosPorCotizarController extends MyGenericForwardComposer{
|
||||||
|
|
||||||
Date fechaInicio = txtFechaInicio.getValue();
|
Date fechaInicio = txtFechaInicio.getValue();
|
||||||
if(fechaInicio != null) {
|
if(fechaInicio != null) {
|
||||||
buscarExpresos.addFilterGreaterOrEqual("FECSOLICITUD", fechaInicio);
|
buscarExpresos.addFilterGreaterOrEqual("fechaSolicitud", fechaInicio);
|
||||||
}
|
}
|
||||||
|
|
||||||
Date fechaFin = txtFechaFin.getValue();
|
Date fechaFin = txtFechaFin.getValue();
|
||||||
if(fechaFin != null) {
|
if(fechaFin != null) {
|
||||||
buscarExpresos.addFilterLessOrEqual("FECSOLICITUD", fechaFin);
|
buscarExpresos.addFilterLessOrEqual("fechaSolicitud", fechaFin);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(ckServiciosInactivos.isChecked()) {
|
if(ckServiciosInactivos.isChecked()) {
|
||||||
|
|
|
@ -0,0 +1,94 @@
|
||||||
|
package com.rjconsultores.ventaboletos.web.gui.controladores.expressos;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Date;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.context.annotation.Scope;
|
||||||
|
import org.springframework.stereotype.Controller;
|
||||||
|
import org.zkoss.util.resource.Labels;
|
||||||
|
import org.zkoss.zk.ui.Component;
|
||||||
|
import org.zkoss.zk.ui.event.Event;
|
||||||
|
import org.zkoss.zul.Messagebox;
|
||||||
|
import org.zkoss.zul.Paging;
|
||||||
|
|
||||||
|
import com.rjconsultores.ventaboletos.entidad.SolicitudExpreso;
|
||||||
|
import com.rjconsultores.ventaboletos.entidad.TrayectosExpresos;
|
||||||
|
import com.rjconsultores.ventaboletos.service.SolicitudExpresosService;
|
||||||
|
import com.rjconsultores.ventaboletos.utilerias.DateUtil;
|
||||||
|
import com.rjconsultores.ventaboletos.web.utilerias.MyDatebox;
|
||||||
|
import com.rjconsultores.ventaboletos.web.utilerias.MyGenericForwardComposer;
|
||||||
|
import com.rjconsultores.ventaboletos.web.utilerias.MyListbox;
|
||||||
|
import com.rjconsultores.ventaboletos.web.utilerias.paginacion.HibernateSearchObject;
|
||||||
|
import com.rjconsultores.ventaboletos.web.utilerias.paginacion.PagedListWrapper;
|
||||||
|
import com.rjconsultores.ventaboletos.web.utilerias.render.RenderExpresosPorCotizar;
|
||||||
|
import com.rjconsultores.ventaboletos.web.utilerias.render.RenderInformeViajesOcasionales;
|
||||||
|
|
||||||
|
@Controller("informeViajesOcasionalesExpresosController")
|
||||||
|
@Scope("prototype")
|
||||||
|
public class InformeViajesOcasionalesExpresosController extends MyGenericForwardComposer{
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private transient PagedListWrapper<TrayectosExpresos> plwTrayectosExpresos;
|
||||||
|
|
||||||
|
private MyDatebox dtInicio;
|
||||||
|
private MyDatebox dtFim;
|
||||||
|
private MyListbox expresosList;
|
||||||
|
private Paging pagingExpresos;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void doAfterCompose(Component comp) throws Exception {
|
||||||
|
super.doAfterCompose(comp);
|
||||||
|
|
||||||
|
expresosList.setItemRenderer(new RenderInformeViajesOcasionales());
|
||||||
|
|
||||||
|
refreshLista();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void refreshLista() throws InterruptedException {
|
||||||
|
HibernateSearchObject<TrayectosExpresos> buscarExpresos =
|
||||||
|
new HibernateSearchObject<TrayectosExpresos>(TrayectosExpresos.class, pagingExpresos.getPageSize());
|
||||||
|
|
||||||
|
Date fechaInicio = dtInicio.getValue();
|
||||||
|
if(fechaInicio != null) {
|
||||||
|
buscarExpresos.addFilterGreaterOrEqual("solicitudExpresoId.fechaSolicitud", DateUtil.inicioFecha(fechaInicio));
|
||||||
|
}else {
|
||||||
|
Messagebox.show(
|
||||||
|
Labels.getLabel("MSG.Error.dataObrigatoria"),
|
||||||
|
Labels.getLabel("winInformeViajesOcasionalesExpresos.title"),
|
||||||
|
Messagebox.OK, Messagebox.ERROR);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Date fechaFin = dtFim.getValue();
|
||||||
|
if(fechaFin != null) {
|
||||||
|
buscarExpresos.addFilterLessOrEqual("solicitudExpresoId.fechaSolicitud", DateUtil.fimFecha(fechaFin));
|
||||||
|
}else {
|
||||||
|
Messagebox.show(
|
||||||
|
Labels.getLabel("MSG.Error.dataObrigatoria"),
|
||||||
|
Labels.getLabel("winInformeViajesOcasionalesExpresos.title"),
|
||||||
|
Messagebox.OK, Messagebox.ERROR);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
plwTrayectosExpresos.init(buscarExpresos, expresosList, pagingExpresos);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void onClick$btnPesquisa(Event ev) throws InterruptedException {
|
||||||
|
refreshLista();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void onClick$btnImprimir(Event ev) throws InterruptedException {}
|
||||||
|
|
||||||
|
public MyListbox getExpresosList() {
|
||||||
|
return expresosList;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setExpresosList(MyListbox expresosList) {
|
||||||
|
this.expresosList = expresosList;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -57,12 +57,12 @@ private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
Date fechaInicio = txtFechaInicio.getValue();
|
Date fechaInicio = txtFechaInicio.getValue();
|
||||||
if(fechaInicio != null) {
|
if(fechaInicio != null) {
|
||||||
buscarExpresos.addFilterGreaterOrEqual("FECSOLICITUD", fechaInicio);
|
buscarExpresos.addFilterGreaterOrEqual("fechaSolicitud", fechaInicio);
|
||||||
}
|
}
|
||||||
|
|
||||||
Date fechaFin = txtFechaFin.getValue();
|
Date fechaFin = txtFechaFin.getValue();
|
||||||
if(fechaFin != null) {
|
if(fechaFin != null) {
|
||||||
buscarExpresos.addFilterLessOrEqual("FECSOLICITUD", fechaFin);
|
buscarExpresos.addFilterLessOrEqual("fechaSolicitud", fechaFin);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(ckServiciosInactivos.isChecked()) {
|
if(ckServiciosInactivos.isChecked()) {
|
||||||
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
package com.rjconsultores.ventaboletos.web.utilerias.menu.item.expressos;
|
||||||
|
|
||||||
|
import org.zkoss.util.resource.Labels;
|
||||||
|
|
||||||
|
import com.rjconsultores.ventaboletos.web.utilerias.PantallaUtileria;
|
||||||
|
import com.rjconsultores.ventaboletos.web.utilerias.menu.DefaultItemMenuSistema;
|
||||||
|
|
||||||
|
public class ItemMenuInformeViajesOcasionales extends DefaultItemMenuSistema {
|
||||||
|
public ItemMenuInformeViajesOcasionales() {
|
||||||
|
super("indexController.mniExpressosInformeViajesOcasionales.label");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getClaveMenu() {
|
||||||
|
return "COM.RJCONSULTORES.ADMINISTRACION.GUI.EXPRESSOS.INFORMEVIAJESOCASIONALES";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void ejecutar() {
|
||||||
|
PantallaUtileria.openWindow("/gui/expressos/informeViajesOcasionales.zul",
|
||||||
|
Labels.getLabel("indexController.mniExpressosInformeViajesOcasionales.label"),
|
||||||
|
getArgs(), desktop);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
|
@ -367,7 +367,7 @@ expressos.programacionVehiculo=com.rjconsultores.ventaboletos.web.utilerias.menu
|
||||||
expressos.documentos=com.rjconsultores.ventaboletos.web.utilerias.menu.item.expressos.ItemMenuDocumentos
|
expressos.documentos=com.rjconsultores.ventaboletos.web.utilerias.menu.item.expressos.ItemMenuDocumentos
|
||||||
expressos.cumplimientoServicio=com.rjconsultores.ventaboletos.web.utilerias.menu.item.expressos.ItemMenuCumplimientoServicio
|
expressos.cumplimientoServicio=com.rjconsultores.ventaboletos.web.utilerias.menu.item.expressos.ItemMenuCumplimientoServicio
|
||||||
expressos.log=com.rjconsultores.ventaboletos.web.utilerias.menu.item.expressos.ItemMenuLog
|
expressos.log=com.rjconsultores.ventaboletos.web.utilerias.menu.item.expressos.ItemMenuLog
|
||||||
#expressos.InformeViajesOcasionales=com.rjconsultores.ventaboletos.web.utilerias.menu.item.expressos.ItemMenuInformeViajesOcasionales
|
expressos.InformeViajesOcasionales=com.rjconsultores.ventaboletos.web.utilerias.menu.item.expressos.ItemMenuInformeViajesOcasionales
|
||||||
#expressos.seguimientoExpresos=com.rjconsultores.ventaboletos.web.utilerias.menu.item.expressos.ItemMenuSeguimientoExpresos
|
#expressos.seguimientoExpresos=com.rjconsultores.ventaboletos.web.utilerias.menu.item.expressos.ItemMenuSeguimientoExpresos
|
||||||
ayuda=com.rjconsultores.ventaboletos.web.utilerias.menu.item.ayuda.MenuAyuda
|
ayuda=com.rjconsultores.ventaboletos.web.utilerias.menu.item.ayuda.MenuAyuda
|
||||||
ayuda.version=com.rjconsultores.ventaboletos.web.utilerias.menu.item.ayuda.ItemMenuVersion
|
ayuda.version=com.rjconsultores.ventaboletos.web.utilerias.menu.item.ayuda.ItemMenuVersion
|
|
@ -0,0 +1,114 @@
|
||||||
|
package com.rjconsultores.ventaboletos.web.utilerias.render;
|
||||||
|
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.zkoss.util.resource.Labels;
|
||||||
|
import org.zkoss.zul.Listcell;
|
||||||
|
import org.zkoss.zul.Listitem;
|
||||||
|
import org.zkoss.zul.ListitemRenderer;
|
||||||
|
|
||||||
|
import com.rjconsultores.ventaboletos.entidad.Constante;
|
||||||
|
import com.rjconsultores.ventaboletos.entidad.SolicitudExpreso;
|
||||||
|
import com.rjconsultores.ventaboletos.entidad.TrayectosExpresos;
|
||||||
|
import com.rjconsultores.ventaboletos.entidad.Usuario;
|
||||||
|
import com.rjconsultores.ventaboletos.service.ConstanteService;
|
||||||
|
import com.rjconsultores.ventaboletos.service.UsuarioService;
|
||||||
|
import com.rjconsultores.ventaboletos.utilerias.DateUtil;
|
||||||
|
import com.rjconsultores.ventaboletos.utilerias.UsuarioLogado;
|
||||||
|
import com.rjconsultores.ventaboletos.web.utilerias.spring.AppContext;
|
||||||
|
|
||||||
|
public class RenderInformeViajesOcasionales implements ListitemRenderer {
|
||||||
|
|
||||||
|
public RenderInformeViajesOcasionales() {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void render(Listitem item, Object data) throws Exception {
|
||||||
|
TrayectosExpresos expresos = (TrayectosExpresos) data;
|
||||||
|
|
||||||
|
Listcell lc = new Listcell(""); //Empresa
|
||||||
|
lc.setParent(item);
|
||||||
|
|
||||||
|
lc = new Listcell(DateUtil.getStringDate(expresos.getSolicitudExpresoId().getFechaSolicitud(), "dd/MM/yyyy")); //Fecha solicitud
|
||||||
|
lc.setParent(item);
|
||||||
|
|
||||||
|
lc = new Listcell(expresos.getSolicitudExpresoId().getSolicitudExpresoId().toString()); //# solicitud
|
||||||
|
lc.setParent(item);
|
||||||
|
|
||||||
|
lc = new Listcell(""); //Agencia contrató
|
||||||
|
lc.setParent(item);
|
||||||
|
|
||||||
|
lc = new Listcell(expresos.getSolicitudExpresoId().getStatusSolicitudExpresoId().toString()); //Estado
|
||||||
|
lc.setParent(item);
|
||||||
|
|
||||||
|
lc = new Listcell(""); //NIT
|
||||||
|
lc.setParent(item);
|
||||||
|
|
||||||
|
lc = new Listcell(""); //Razón social empresa solicitó
|
||||||
|
lc.setParent(item);
|
||||||
|
|
||||||
|
//Forma pgo
|
||||||
|
ConstanteService constanteService = (ConstanteService)AppContext.getApplicationContext().getBean("constanteService");
|
||||||
|
Constante constante = constanteService.buscarPorNomeConstante("FORMAPAGOCREDITO_ID");
|
||||||
|
String pagoCreditoConstante = constante == null ? "" : constante.getValorconstante();
|
||||||
|
|
||||||
|
if(expresos.getSolicitudExpresoId().getFormaPagoId() == null || expresos.getSolicitudExpresoId().getFormaPagoId() != Integer.valueOf(pagoCreditoConstante)) {
|
||||||
|
lc = new Listcell(Labels.getLabel("label.classePagamento.contado"));
|
||||||
|
lc.setParent(item);
|
||||||
|
}else {
|
||||||
|
lc = new Listcell(Labels.getLabel("expresosController.lbl.pagadoCredito"));
|
||||||
|
lc.setParent(item);
|
||||||
|
}
|
||||||
|
|
||||||
|
lc = new Listcell(expresos.getSolicitudExpresoId().getValorCotizacion().toString()); //Valor expreso
|
||||||
|
lc.setParent(item);
|
||||||
|
|
||||||
|
//Usuario
|
||||||
|
UsuarioService usuarioService = (UsuarioService)AppContext.getApplicationContext().getBean("usuarioService");
|
||||||
|
Usuario usuario = usuarioService.obtenerCompletoID(expresos.getUsuarioId());
|
||||||
|
lc = new Listcell(usuario.getNombUsuarioCompleto());
|
||||||
|
lc.setParent(item);
|
||||||
|
|
||||||
|
lc = new Listcell(expresos.getTrayectoExpresoId().toString()); //ID trayecto
|
||||||
|
lc.setParent(item);
|
||||||
|
|
||||||
|
lc = new Listcell(expresos.getSolicitudExpresoId().getCiudadOrigen().getNombciudad()); //Origen
|
||||||
|
lc.setParent(item);
|
||||||
|
|
||||||
|
lc = new Listcell(expresos.getSolicitudExpresoId().getCiudadDestino().getNombciudad()); //Destino
|
||||||
|
lc.setParent(item);
|
||||||
|
|
||||||
|
lc = new Listcell(""); //Observaciones
|
||||||
|
lc.setParent(item);
|
||||||
|
|
||||||
|
lc = new Listcell(DateUtil.getStringDate(expresos.getSolicitudExpresoId().getFechaHoraIda()), "dd/MM/yyyy hh:mm:ss"); //Fecha salida
|
||||||
|
lc.setParent(item);
|
||||||
|
|
||||||
|
lc = new Listcell(""); //Servicio
|
||||||
|
lc.setParent(item);
|
||||||
|
|
||||||
|
lc = new Listcell(""); //# Despacho
|
||||||
|
lc.setParent(item);
|
||||||
|
|
||||||
|
lc = new Listcell(""); //Inteno
|
||||||
|
lc.setParent(item);
|
||||||
|
|
||||||
|
lc = new Listcell(expresos.getNumPlaca() == null ? "N/A" : expresos.getNumPlaca().toString()); //Placa
|
||||||
|
lc.setParent(item);
|
||||||
|
|
||||||
|
lc = new Listcell(expresos.getSolicitudExpresoId().getCantidadPasajeros() == null ? "N/A" : expresos.getSolicitudExpresoId().getCantidadPasajeros().toString()); //Pasajeros
|
||||||
|
lc.setParent(item);
|
||||||
|
|
||||||
|
lc = new Listcell(expresos.getValorTrayecto() == null ? "N/A" : expresos.getValorTrayecto().toString()); //valor trayecto
|
||||||
|
lc.setParent(item);
|
||||||
|
|
||||||
|
lc = new Listcell(""); //Fecha despacho
|
||||||
|
lc.setParent(item);
|
||||||
|
|
||||||
|
lc = new Listcell(""); //Kilómetros
|
||||||
|
lc.setParent(item);
|
||||||
|
|
||||||
|
item.setAttribute("data", expresos);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -12,8 +12,6 @@ public class RenderLogAuditoria implements ListitemRenderer {
|
||||||
public void render(Listitem lstm, Object o) throws Exception {
|
public void render(Listitem lstm, Object o) throws Exception {
|
||||||
LogAuditoria logAuditoria = (LogAuditoria) o;
|
LogAuditoria logAuditoria = (LogAuditoria) o;
|
||||||
|
|
||||||
System.out.println(logAuditoria.toString());
|
|
||||||
|
|
||||||
Listcell lc = new Listcell(DateUtil.getStringDate(logAuditoria.getFecmodif(), "dd/MM/yyyy HH:mm"));
|
Listcell lc = new Listcell(DateUtil.getStringDate(logAuditoria.getFecmodif(), "dd/MM/yyyy HH:mm"));
|
||||||
lc.setParent(lstm);
|
lc.setParent(lstm);
|
||||||
|
|
||||||
|
|
|
@ -7362,21 +7362,31 @@ expressosPorCotizarController.lblAgregarTrayecto.label = Add Trip
|
||||||
expressosPorCotizarController.lblDestino.label = Destination
|
expressosPorCotizarController.lblDestino.label = Destination
|
||||||
expressosPorCotizarController.lblOrigen.label = Origin
|
expressosPorCotizarController.lblOrigen.label = Origin
|
||||||
expressosPorCotizarController.lhAdjuntarCotizacion.label = Attach Quote
|
expressosPorCotizarController.lhAdjuntarCotizacion.label = Attach Quote
|
||||||
|
expressosPorCotizarController.lhAgenciaContrato.label = Agency that hired
|
||||||
expressosPorCotizarController.lhCantidadPasajeros.label = Number of Passengers
|
expressosPorCotizarController.lhCantidadPasajeros.label = Number of Passengers
|
||||||
expressosPorCotizarController.lhCantidadVehiculos.label = Vehicle Quantity
|
expressosPorCotizarController.lhCantidadVehiculos.label = Vehicle Quantity
|
||||||
expressosPorCotizarController.lhCodigoViaje.label = Trip Code
|
expressosPorCotizarController.lhCodigoViaje.label = Trip Code
|
||||||
expressosPorCotizarController.lhEstadiaConductor.label = Driver Stay
|
expressosPorCotizarController.lhEstadiaConductor.label = Driver Stay
|
||||||
expressosPorCotizarController.lhEstado.label = State
|
expressosPorCotizarController.lhEstado.label = State
|
||||||
|
expressosPorCotizarController.lhFechaDespacho.label = Run date
|
||||||
expressosPorCotizarController.lhFechaIda.label = Departure date
|
expressosPorCotizarController.lhFechaIda.label = Departure date
|
||||||
expressosPorCotizarController.lhFechaRegreso.label = Return Date
|
expressosPorCotizarController.lhFechaRegreso.label = Return Date
|
||||||
expressosPorCotizarController.lhFechaSolicitud.label = Application date
|
expressosPorCotizarController.lhFechaSolicitud.label = Application date
|
||||||
expressosPorCotizarController.lhFluecPlanilla.label = FLUEC - Occasional Return
|
expressosPorCotizarController.lhFluecPlanilla.label = FLUEC - Occasional Return
|
||||||
|
expressosPorCotizarController.lhFormaPago.label = Method of payment
|
||||||
expressosPorCotizarController.lhIdaRegreso.label = Round trip
|
expressosPorCotizarController.lhIdaRegreso.label = Round trip
|
||||||
|
expressosPorCotizarController.lhInterno.label = Interno
|
||||||
|
expressosPorCotizarController.lhKilometros.label = Km
|
||||||
|
expressosPorCotizarController.lhNit.label = Nit
|
||||||
|
expressosPorCotizarController.lhNumDespacho.label = # Run
|
||||||
expressosPorCotizarController.lhNumSolicitud.label = # Application
|
expressosPorCotizarController.lhNumSolicitud.label = # Application
|
||||||
|
expressosPorCotizarController.lblObservaciones.label = Observaciones
|
||||||
expressosPorCotizarController.lhPlacaVehiculo.label = Plate
|
expressosPorCotizarController.lhPlacaVehiculo.label = Plate
|
||||||
|
expressosPorCotizarController.lhRazonSocial.label = Company Name
|
||||||
expressosPorCotizarController.lhRuta.label = Route
|
expressosPorCotizarController.lhRuta.label = Route
|
||||||
expressosPorCotizarController.lhSitioRecogidaIda.label = Site Pickup Going
|
expressosPorCotizarController.lhSitioRecogidaIda.label = Site Pickup Going
|
||||||
expressosPorCotizarController.lhSitioRecogidaRegreso.label = Site Pickup Return
|
expressosPorCotizarController.lhSitioRecogidaRegreso.label = Site Pickup Return
|
||||||
|
expressosPorCotizarController.lhTipoServicio.label = Service type
|
||||||
expressosPorCotizarController.lhTrayecto.label = Journey
|
expressosPorCotizarController.lhTrayecto.label = Journey
|
||||||
expressosPorCotizarController.lhValorTrayecto.label = Trip Value
|
expressosPorCotizarController.lhValorTrayecto.label = Trip Value
|
||||||
expressosPorCotizarCotizarController.lblDesc.label = Quote
|
expressosPorCotizarCotizarController.lblDesc.label = Quote
|
||||||
|
@ -7750,6 +7760,8 @@ indexController.mniExportacaoFiscalRMD.label = RMD
|
||||||
indexController.mniExpressosCargaContrato.label = Contract Charge
|
indexController.mniExpressosCargaContrato.label = Contract Charge
|
||||||
indexController.mniExpressosCumplimientoServicio.label = Service Compliance
|
indexController.mniExpressosCumplimientoServicio.label = Service Compliance
|
||||||
indexController.mniExpressosDocumentos.label = Documents
|
indexController.mniExpressosDocumentos.label = Documents
|
||||||
|
indexController.mniExpressosInformeViajesOcasionales.label = Occasional Travel Report
|
||||||
|
indexController.mniExpressosPorCotizar.label = Express to be quoted
|
||||||
indexController.mniExpressosLog.label = Log
|
indexController.mniExpressosLog.label = Log
|
||||||
indexController.mniExpressosPorCotizar.label = Express to be quoted
|
indexController.mniExpressosPorCotizar.label = Express to be quoted
|
||||||
indexController.mniExpressosProgramacionVehiculos.label = Vehicle Programming
|
indexController.mniExpressosProgramacionVehiculos.label = Vehicle Programming
|
||||||
|
|
|
@ -7368,21 +7368,31 @@ expressosPorCotizarController.lblAgregarTrayecto.label = Agregar Trayecto
|
||||||
expressosPorCotizarController.lblDestino.label = Destino
|
expressosPorCotizarController.lblDestino.label = Destino
|
||||||
expressosPorCotizarController.lblOrigen.label = Origen
|
expressosPorCotizarController.lblOrigen.label = Origen
|
||||||
expressosPorCotizarController.lhAdjuntarCotizacion.label = Adjuntar Cotización
|
expressosPorCotizarController.lhAdjuntarCotizacion.label = Adjuntar Cotización
|
||||||
|
expressosPorCotizarController.lhAgenciaContrato.label = Agencia Contrató
|
||||||
expressosPorCotizarController.lhCantidadPasajeros.label = Cantidad de Pasajeros
|
expressosPorCotizarController.lhCantidadPasajeros.label = Cantidad de Pasajeros
|
||||||
expressosPorCotizarController.lhCantidadVehiculos.label = Cantidad Vehículos
|
expressosPorCotizarController.lhCantidadVehiculos.label = Cantidad Vehículos
|
||||||
expressosPorCotizarController.lhCodigoViaje.label = Código Viaje
|
expressosPorCotizarController.lhCodigoViaje.label = Código Viaje
|
||||||
expressosPorCotizarController.lhEstadiaConductor.label = Estadia Conductor
|
expressosPorCotizarController.lhEstadiaConductor.label = Estadia Conductor
|
||||||
expressosPorCotizarController.lhEstado.label = Estado
|
expressosPorCotizarController.lhEstado.label = Estado
|
||||||
|
expressosPorCotizarController.lhFechaDespacho.label = Fecha despacho
|
||||||
expressosPorCotizarController.lhFechaIda.label = Fecha Ida
|
expressosPorCotizarController.lhFechaIda.label = Fecha Ida
|
||||||
expressosPorCotizarController.lhFechaRegreso.label = Fecha Regreso
|
expressosPorCotizarController.lhFechaRegreso.label = Fecha Regreso
|
||||||
expressosPorCotizarController.lhFechaSolicitud.label = Fecha Solicitud
|
expressosPorCotizarController.lhFechaSolicitud.label = Fecha Solicitud
|
||||||
expressosPorCotizarController.lhFluecPlanilla.label = FLUEC - Planilla Ocasional
|
expressosPorCotizarController.lhFluecPlanilla.label = FLUEC - Planilla Ocasional
|
||||||
|
expressosPorCotizarController.lhFormaPago.label = Forma pago
|
||||||
expressosPorCotizarController.lhIdaRegreso.label = Ida y Regreso
|
expressosPorCotizarController.lhIdaRegreso.label = Ida y Regreso
|
||||||
|
expressosPorCotizarController.lhInterno.label = Interno
|
||||||
|
expressosPorCotizarController.lhNit.label = Nit
|
||||||
|
expressosPorCotizarController.lhKilometros.label = Km
|
||||||
|
expressosPorCotizarController.lhNumDespacho.label = # Despacho
|
||||||
expressosPorCotizarController.lhNumSolicitud.label = # Solicitud
|
expressosPorCotizarController.lhNumSolicitud.label = # Solicitud
|
||||||
|
expressosPorCotizarController.lblObservaciones.label = Observaciones
|
||||||
expressosPorCotizarController.lhPlacaVehiculo.label = Placa
|
expressosPorCotizarController.lhPlacaVehiculo.label = Placa
|
||||||
|
expressosPorCotizarController.lhRazonSocial.label = Razón Social
|
||||||
expressosPorCotizarController.lhRuta.label = Ruta
|
expressosPorCotizarController.lhRuta.label = Ruta
|
||||||
expressosPorCotizarController.lhSitioRecogidaIda.label = Sitio Recogida Ida
|
expressosPorCotizarController.lhSitioRecogidaIda.label = Sitio Recogida Ida
|
||||||
expressosPorCotizarController.lhSitioRecogidaRegreso.label = Sitio Recogida Regreso
|
expressosPorCotizarController.lhSitioRecogidaRegreso.label = Sitio Recogida Regreso
|
||||||
|
expressosPorCotizarController.lhTipoServicio.label = Tipo servicio
|
||||||
expressosPorCotizarController.lhTrayecto.label = Trayecto
|
expressosPorCotizarController.lhTrayecto.label = Trayecto
|
||||||
expressosPorCotizarController.lhValorTrayecto.label = Valor Trayecto
|
expressosPorCotizarController.lhValorTrayecto.label = Valor Trayecto
|
||||||
expressosPorCotizarCotizarController.lblDesc.label = Cotizar
|
expressosPorCotizarCotizarController.lblDesc.label = Cotizar
|
||||||
|
@ -7756,6 +7766,7 @@ indexController.mniExportacaoFiscalRMD.label = RMD
|
||||||
indexController.mniExpressosCargaContrato.label = Carga de Contrato
|
indexController.mniExpressosCargaContrato.label = Carga de Contrato
|
||||||
indexController.mniExpressosCumplimientoServicio.label = Cumplimiento de Servicio
|
indexController.mniExpressosCumplimientoServicio.label = Cumplimiento de Servicio
|
||||||
indexController.mniExpressosDocumentos.label = Documentos
|
indexController.mniExpressosDocumentos.label = Documentos
|
||||||
|
indexController.mniExpressosInformeViajesOcasionales.label = Informe de Viajes Ocasionales
|
||||||
indexController.mniExpressosLog.label = Log
|
indexController.mniExpressosLog.label = Log
|
||||||
indexController.mniExpressosPorCotizar.label = Expresos por cotizar
|
indexController.mniExpressosPorCotizar.label = Expresos por cotizar
|
||||||
indexController.mniExpressosProgramacionVehiculos.label = Programación de Vehículos
|
indexController.mniExpressosProgramacionVehiculos.label = Programación de Vehículos
|
||||||
|
|
|
@ -7362,21 +7362,31 @@ expressosPorCotizarController.lblAgregarTrayecto.label = Ajouter un voyage
|
||||||
expressosPorCotizarController.lblDestino.label = Destination
|
expressosPorCotizarController.lblDestino.label = Destination
|
||||||
expressosPorCotizarController.lblOrigen.label = Origine
|
expressosPorCotizarController.lblOrigen.label = Origine
|
||||||
expressosPorCotizarController.lhAdjuntarCotizacion.label = Joindre un devis
|
expressosPorCotizarController.lhAdjuntarCotizacion.label = Joindre un devis
|
||||||
|
expressosPorCotizarController.lhAgenciaContrato.label = Agence qui a embauché
|
||||||
expressosPorCotizarController.lhCantidadPasajeros.label = Nombre de passagers
|
expressosPorCotizarController.lhCantidadPasajeros.label = Nombre de passagers
|
||||||
expressosPorCotizarController.lhCantidadVehiculos.label = Quantité de véhicule
|
expressosPorCotizarController.lhCantidadVehiculos.label = Quantité de véhicule
|
||||||
expressosPorCotizarController.lhCodigoViaje.label = Code de voyage
|
expressosPorCotizarController.lhCodigoViaje.label = Code de voyage
|
||||||
expressosPorCotizarController.lhEstadiaConductor.label = Séjour chauffeur
|
expressosPorCotizarController.lhEstadiaConductor.label = Séjour chauffeur
|
||||||
expressosPorCotizarController.lhEstado.label = État
|
expressosPorCotizarController.lhEstado.label = État
|
||||||
|
expressosPorCotizarController.lhFechaDespacho.label = Date d'exécution
|
||||||
expressosPorCotizarController.lhFechaIda.label = Date de départ
|
expressosPorCotizarController.lhFechaIda.label = Date de départ
|
||||||
expressosPorCotizarController.lhFechaRegreso.label = Date de retour
|
expressosPorCotizarController.lhFechaRegreso.label = Date de retour
|
||||||
expressosPorCotizarController.lhFechaSolicitud.label = Date de la demande
|
expressosPorCotizarController.lhFechaSolicitud.label = Date de la demande
|
||||||
expressosPorCotizarController.lhFluecPlanilla.label = FLUEC - Retour occasionnel
|
expressosPorCotizarController.lhFluecPlanilla.label = FLUEC - Retour occasionnel
|
||||||
|
expressosPorCotizarController.lhFormaPago.label = Mode de paiement
|
||||||
expressosPorCotizarController.lhIdaRegreso.label = Aller-retour
|
expressosPorCotizarController.lhIdaRegreso.label = Aller-retour
|
||||||
|
expressosPorCotizarController.lhInterno.label = Interno
|
||||||
|
expressosPorCotizarController.lhKilometros.label = Km
|
||||||
|
expressosPorCotizarController.lhNit.label = Nit
|
||||||
|
expressosPorCotizarController.lhNumDespacho.label = # d'exécution
|
||||||
expressosPorCotizarController.lhNumSolicitud.label = # Application
|
expressosPorCotizarController.lhNumSolicitud.label = # Application
|
||||||
|
expressosPorCotizarController.lblObservaciones.label = Observaciones
|
||||||
expressosPorCotizarController.lhPlacaVehiculo.label = Plaque
|
expressosPorCotizarController.lhPlacaVehiculo.label = Plaque
|
||||||
|
expressosPorCotizarController.lhRazonSocial.label = Nom de l'entreprise
|
||||||
expressosPorCotizarController.lhRuta.label = Itinéraire
|
expressosPorCotizarController.lhRuta.label = Itinéraire
|
||||||
expressosPorCotizarController.lhSitioRecogidaIda.label = Site de ramassage aller simple
|
expressosPorCotizarController.lhSitioRecogidaIda.label = Site de ramassage aller simple
|
||||||
expressosPorCotizarController.lhSitioRecogidaRegreso.label = Retour de ramassage sur site
|
expressosPorCotizarController.lhSitioRecogidaRegreso.label = Retour de ramassage sur site
|
||||||
|
expressosPorCotizarController.lhTipoServicio.label = Type de prestation
|
||||||
expressosPorCotizarController.lhTrayecto.label = Trajet
|
expressosPorCotizarController.lhTrayecto.label = Trajet
|
||||||
expressosPorCotizarController.lhValorTrayecto.label = Valeur du voyage
|
expressosPorCotizarController.lhValorTrayecto.label = Valeur du voyage
|
||||||
expressosPorCotizarCotizarController.lblDesc.label = Citation
|
expressosPorCotizarCotizarController.lblDesc.label = Citation
|
||||||
|
@ -7750,6 +7760,8 @@ indexController.mniExportacaoFiscalRMD.label = RMD
|
||||||
indexController.mniExpressosCargaContrato.label = Frais de contrat
|
indexController.mniExpressosCargaContrato.label = Frais de contrat
|
||||||
indexController.mniExpressosCumplimientoServicio.label = Conformité des services
|
indexController.mniExpressosCumplimientoServicio.label = Conformité des services
|
||||||
indexController.mniExpressosDocumentos.label = Documents
|
indexController.mniExpressosDocumentos.label = Documents
|
||||||
|
indexController.mniExpressosInformeViajesOcasionales.label = Rapport de voyage occasionnel
|
||||||
|
indexController.mniExpressosPorCotizar.label = Express à devis
|
||||||
indexController.mniExpressosLog.label = Log
|
indexController.mniExpressosLog.label = Log
|
||||||
indexController.mniExpressosPorCotizar.label = Express à devis
|
indexController.mniExpressosPorCotizar.label = Express à devis
|
||||||
indexController.mniExpressosProgramacionVehiculos.label = Programmation du véhicule
|
indexController.mniExpressosProgramacionVehiculos.label = Programmation du véhicule
|
||||||
|
|
|
@ -7347,20 +7347,30 @@ expressosPorCotizarController.lblAgregarTrayecto.label = Adicionar viagem
|
||||||
expressosPorCotizarController.lblDestino.label = Destino
|
expressosPorCotizarController.lblDestino.label = Destino
|
||||||
expressosPorCotizarController.lblOrigen.label = Origem
|
expressosPorCotizarController.lblOrigen.label = Origem
|
||||||
expressosPorCotizarController.lhAdjuntarCotizacion.label = Anexar orçamento
|
expressosPorCotizarController.lhAdjuntarCotizacion.label = Anexar orçamento
|
||||||
|
expressosPorCotizarController.lhAgenciaContrato.label = Agência que contratou
|
||||||
expressosPorCotizarController.lhCantidadPasajeros.label = Número de passageiros
|
expressosPorCotizarController.lhCantidadPasajeros.label = Número de passageiros
|
||||||
expressosPorCotizarController.lhCantidadVehiculos.label = Quantidade de veículos
|
expressosPorCotizarController.lhCantidadVehiculos.label = Quantidade de veículos
|
||||||
expressosPorCotizarController.lhCodigoViaje.label = Código de viagem
|
expressosPorCotizarController.lhCodigoViaje.label = Código de viagem
|
||||||
expressosPorCotizarController.lhEstadiaConductor.label = Estadia do motorista
|
expressosPorCotizarController.lhEstadiaConductor.label = Estadia do motorista
|
||||||
|
expressosPorCotizarController.lhFechaDespacho.label = Data Execução
|
||||||
expressosPorCotizarController.lhFechaIda.label = Data de partida
|
expressosPorCotizarController.lhFechaIda.label = Data de partida
|
||||||
expressosPorCotizarController.lhFechaRegreso.label = Data de retorno
|
expressosPorCotizarController.lhFechaRegreso.label = Data de retorno
|
||||||
expressosPorCotizarController.lhFechaSolicitud.label = Data da inscrição
|
expressosPorCotizarController.lhFechaSolicitud.label = Data da inscrição
|
||||||
expressosPorCotizarController.lhFluecPlanilla.label = FLUEC - Retorno Ocasional
|
expressosPorCotizarController.lhFluecPlanilla.label = FLUEC - Retorno Ocasional
|
||||||
|
expressosPorCotizarController.lhFormaPago.label = Método de pagamento
|
||||||
expressosPorCotizarController.lhIdaRegreso.label = Ida e volta
|
expressosPorCotizarController.lhIdaRegreso.label = Ida e volta
|
||||||
|
expressosPorCotizarController.lhInterno.label = Interno
|
||||||
|
expressosPorCotizarController.lhKilometros.label = Km
|
||||||
|
expressosPorCotizarController.lhNit.label = Nit
|
||||||
|
expressosPorCotizarController.lhNumDespacho.label = # Execução
|
||||||
expressosPorCotizarController.lhNumSolicitud.label = # Aplicativo
|
expressosPorCotizarController.lhNumSolicitud.label = # Aplicativo
|
||||||
|
expressosPorCotizarController.lblObservaciones.label = Observaciones
|
||||||
expressosPorCotizarController.lhPlacaVehiculo.label = Placa
|
expressosPorCotizarController.lhPlacaVehiculo.label = Placa
|
||||||
|
expressosPorCotizarController.lhRazonSocial.label = Nome da empresa
|
||||||
expressosPorCotizarController.lhRuta.label = Rota
|
expressosPorCotizarController.lhRuta.label = Rota
|
||||||
expressosPorCotizarController.lhSitioRecogidaIda.label = Local de coleta unidirecional
|
expressosPorCotizarController.lhSitioRecogidaIda.label = Local de coleta unidirecional
|
||||||
expressosPorCotizarController.lhSitioRecogidaRegreso.label = Devolução de retirada no local
|
expressosPorCotizarController.lhSitioRecogidaRegreso.label = Devolução de retirada no local
|
||||||
|
expressosPorCotizarController.lhTipoServicio.label = Tipo de serviço
|
||||||
expressosPorCotizarController.lhTrayecto.label = trajetória
|
expressosPorCotizarController.lhTrayecto.label = trajetória
|
||||||
expressosPorCotizarController.lhValorTrayecto.label = Valor da viagem
|
expressosPorCotizarController.lhValorTrayecto.label = Valor da viagem
|
||||||
expressosPorCotizarCotizarController.lblDesc.label = Cotação
|
expressosPorCotizarCotizarController.lblDesc.label = Cotação
|
||||||
|
@ -7733,6 +7743,8 @@ indexController.mniExportacaoFiscalECF.label = ECF
|
||||||
indexController.mniExportacaoFiscalRMD.label = RMD
|
indexController.mniExportacaoFiscalRMD.label = RMD
|
||||||
indexController.mniExpressosCargaContrato.label = Taxa de contrato
|
indexController.mniExpressosCargaContrato.label = Taxa de contrato
|
||||||
indexController.mniExpressosDocumentos.label = Documentos
|
indexController.mniExpressosDocumentos.label = Documentos
|
||||||
|
indexController.mniExpressosInformeViajesOcasionales.label = Relatório de viagens ocasionais
|
||||||
|
indexController.mniExpressosPorCotizar.label = Expresso a ser cotado
|
||||||
indexController.mniExpressosLog.label = Log
|
indexController.mniExpressosLog.label = Log
|
||||||
indexController.mniExpressosPorCotizar.label = Expresso a ser cotado
|
indexController.mniExpressosPorCotizar.label = Expresso a ser cotado
|
||||||
indexController.mniExpressosProgramacionVehiculos.label = Programação de veículos
|
indexController.mniExpressosProgramacionVehiculos.label = Programação de veículos
|
||||||
|
|
|
@ -0,0 +1,97 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<?page contentType="text/html;charset=UTF-8"?>
|
||||||
|
<?variable-resolver class="org.zkoss.zkplus.spring.DelegatingVariableResolver"?>
|
||||||
|
<?init class="org.zkoss.zkplus.databind.AnnotateDataBinderInit" arg0="winInformeViajesOcasionalesExpresos"?>
|
||||||
|
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
|
||||||
|
|
||||||
|
<zk xmlns="http://www.zkoss.org/2005/zul">
|
||||||
|
<window id="winInformeViajesOcasionalesExpresos" title="${c:l('winInformeViajesOcasionalesExpresos.title')}"
|
||||||
|
border="normal" height="484px" width="1200px" position="center" mode="overlapped"
|
||||||
|
apply="${informeViajesOcasionalesExpresosController}">
|
||||||
|
<toolbar>
|
||||||
|
<button id="btnCerrar" onClick="winInformeViajesOcasionalesExpresos.detach()" image="/gui/img/exit.png" width="35px"
|
||||||
|
tooltiptext="${c:l('busquedaLogAuditoriaController.btnCerrar.tooltiptext')}"/>
|
||||||
|
</toolbar>
|
||||||
|
|
||||||
|
<grid fixedLayout="true">
|
||||||
|
<columns>
|
||||||
|
<column width="17%" />
|
||||||
|
<column width="35%" />
|
||||||
|
<column width="13%" />
|
||||||
|
<column width="35%" />
|
||||||
|
</columns>
|
||||||
|
<rows>
|
||||||
|
<row>
|
||||||
|
<label
|
||||||
|
value="${c:l('lb.dataIni.value')}" />
|
||||||
|
<datebox id="dtInicio" width="40%" mold="rounded"
|
||||||
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyDatebox"
|
||||||
|
format="dd/MM/yyyy" maxlength="10" />
|
||||||
|
<label
|
||||||
|
value="${c:l('lb.dataFin.value')}" />
|
||||||
|
<datebox id="dtFim" width="40%" mold="rounded"
|
||||||
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyDatebox"
|
||||||
|
format="dd/MM/yyyy" maxlength="10" />
|
||||||
|
</row>
|
||||||
|
</rows>
|
||||||
|
</grid>
|
||||||
|
<toolbar>
|
||||||
|
<button id="btnPesquisa" image="/gui/img/find.png"
|
||||||
|
label="${c:l('tooltiptext.btnPesquisa')}"/>
|
||||||
|
<button id="btnImprimir" image="/gui/img/pdf.png"
|
||||||
|
label="${c:l('tooltiptext.btnImprimir')}"/>
|
||||||
|
</toolbar>
|
||||||
|
<paging id="pagingExpresos" pageSize="20" />
|
||||||
|
<listbox id="expresosList" use="com.rjconsultores.ventaboletos.web.utilerias.MyListbox"
|
||||||
|
multiple="false" height="50%" vflex="true">
|
||||||
|
<listhead sizable="true">
|
||||||
|
<listheader image="/gui/img/create_doc.gif"
|
||||||
|
label="${c:l('expressosPorCotizarEmpresaController.lblDesc.label')}" width="110px"/>
|
||||||
|
<listheader image="/gui/img/create_doc.gif"
|
||||||
|
label="${c:l('expressosPorCotizarController.lhFechaSolicitud.label')}" width="120px"/>
|
||||||
|
<listheader image="/gui/img/create_doc.gif"
|
||||||
|
label="${c:l('expressosPorCotizarController.lhNumSolicitud.label')}" width="100px"/>
|
||||||
|
<listheader image="/gui/img/create_doc.gif"
|
||||||
|
label="${c:l('expressosPorCotizarController.lhAgenciaContrato.label')}" width="130px"/>
|
||||||
|
<listheader image="/gui/img/create_doc.gif"
|
||||||
|
label="${c:l('expressosPorCotizarController.lhEstado.label')}" width="110px"/>
|
||||||
|
<listheader image="/gui/img/create_doc.gif"
|
||||||
|
label="${c:l('expressosPorCotizarController.lhNit.label')}" width="100px"/>
|
||||||
|
<listheader image="/gui/img/create_doc.gif"
|
||||||
|
label="${c:l('expressosPorCotizarController.lhRazonSocial.label')}" width="130px"/>
|
||||||
|
<listheader image="/gui/img/create_doc.gif"
|
||||||
|
label="${c:l('expressosPorCotizarController.lhFormaPago.label')}" width="120px"/>
|
||||||
|
<listheader image="/gui/img/create_doc.gif"
|
||||||
|
label="${c:l('expressosPorCotizarController.lhValorTrayecto.label')}" width="120px"/>
|
||||||
|
<listheader image="/gui/img/create_doc.gif"
|
||||||
|
label="${c:l('auditoriaController.lhUsuario.label')}" width="120px"/>
|
||||||
|
<listheader image="/gui/img/create_doc.gif"
|
||||||
|
label="${c:l('expressosPorCotizarController.lhTrayecto.label')}" width="120px"/>
|
||||||
|
<listheader image="/gui/img/create_doc.gif"
|
||||||
|
label="${c:l('expressosPorCotizarController.lblOrigen.label')}" width="120px"/>
|
||||||
|
<listheader image="/gui/img/create_doc.gif"
|
||||||
|
label="${c:l('expressosPorCotizarController.lblDestino.label')}" width="120px"/>
|
||||||
|
<listheader image="/gui/img/create_doc.gif"
|
||||||
|
label="${c:l('expressosPorCotizarController.lblObservaciones.label')}" width="240px"/>
|
||||||
|
<listheader image="/gui/img/create_doc.gif"
|
||||||
|
label="${c:l('expressosPorCotizarController.lhFechaIda.label')}" width="120px"/>
|
||||||
|
<listheader image="/gui/img/create_doc.gif"
|
||||||
|
label="${c:l('expressosPorCotizarController.lhTipoServicio.label')}" width="120px"/>
|
||||||
|
<listheader image="/gui/img/create_doc.gif"
|
||||||
|
label="${c:l('expressosPorCotizarController.lhNumDespacho.label')}" width="120px"/>
|
||||||
|
<listheader image="/gui/img/create_doc.gif"
|
||||||
|
label="${c:l('expressosPorCotizarController.lhInterno.label')}" width="100px"/>
|
||||||
|
<listheader image="/gui/img/create_doc.gif"
|
||||||
|
label="${c:l('expressosPorCotizarController.lhPlacaVehiculo.label')}" width="100px"/>
|
||||||
|
<listheader image="/gui/img/create_doc.gif"
|
||||||
|
label="${c:l('expressosPorCotizarController.lhCantidadPasajeros.label')}" width="150px"/>
|
||||||
|
<listheader image="/gui/img/create_doc.gif"
|
||||||
|
label="${c:l('expressosPorCotizarController.lhValorTrayecto.label')}" width="150px"/>
|
||||||
|
<listheader image="/gui/img/create_doc.gif"
|
||||||
|
label="${c:l('expressosPorCotizarController.lhFechaDespacho.label')}" width="130px"/>
|
||||||
|
<listheader image="/gui/img/create_doc.gif"
|
||||||
|
label="${c:l('expressosPorCotizarController.lhKilometros.label')}" width="100px"/>
|
||||||
|
</listhead>
|
||||||
|
</listbox>
|
||||||
|
</window>
|
||||||
|
</zk>
|
Loading…
Reference in New Issue