Correções
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@21290 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
fdcfac24c0
commit
69f2066421
|
@ -19,19 +19,21 @@ import org.zkoss.zul.Checkbox;
|
|||
import org.zkoss.zul.Combobox;
|
||||
import org.zkoss.zul.Comboitem;
|
||||
import org.zkoss.zul.Messagebox;
|
||||
import org.zkoss.zul.Textbox;
|
||||
import org.zkoss.zul.Window;
|
||||
|
||||
import com.rjconsultores.ventaboletos.entidad.ClaseServicio;
|
||||
import com.rjconsultores.ventaboletos.entidad.Empresa;
|
||||
import com.rjconsultores.ventaboletos.entidad.OrgaoConcedente;
|
||||
import com.rjconsultores.ventaboletos.service.ClaseServicioService;
|
||||
import com.rjconsultores.ventaboletos.service.EmpresaService;
|
||||
import com.rjconsultores.ventaboletos.service.OrgaoConcedenteService;
|
||||
import com.rjconsultores.ventaboletos.service.TramoRutaService;
|
||||
import com.rjconsultores.ventaboletos.service.ViaService;
|
||||
import com.rjconsultores.ventaboletos.vo.esquemaoperacional.RutaTramoVO;
|
||||
import com.rjconsultores.ventaboletos.web.gui.componente.esquemaoperacional.GridRutaTramo;
|
||||
import com.rjconsultores.ventaboletos.web.utilerias.MyGenericForwardComposer;
|
||||
import com.rjconsultores.ventaboletos.web.utilerias.MyListbox;
|
||||
import com.rjconsultores.ventaboletos.web.utilerias.MyTextbox;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -41,123 +43,139 @@ import com.rjconsultores.ventaboletos.web.utilerias.MyListbox;
|
|||
@Scope("prototype")
|
||||
public class EditarTramoRutaController extends MyGenericForwardComposer {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
@Autowired
|
||||
private ViaService viaService;
|
||||
@Autowired
|
||||
private ClaseServicioService claseServicioService;
|
||||
@Autowired
|
||||
private TramoRutaService tramoRutaService;
|
||||
@Autowired
|
||||
private EmpresaService empresaService;
|
||||
private List<ClaseServicio> lsClaseServicio;
|
||||
private List<Empresa> lsEmpresa;
|
||||
private Combobox cmbClaseServicio;
|
||||
private Checkbox chkVentaHandHeld;
|
||||
private Checkbox chkSolicitaNombrePasajero;
|
||||
private Textbox txtDscRuta;
|
||||
private Window winEditarTramoRuta;
|
||||
private Combobox cmbEmpresa;
|
||||
private MyListbox rutaEmpresaList;
|
||||
private GridRutaTramo gridRutaSecuencia;
|
||||
private List<Empresa> lsRutaEmpresa;
|
||||
private Textbox txtPrefixo;
|
||||
private static final long serialVersionUID = 1L;
|
||||
@Autowired
|
||||
private ViaService viaService;
|
||||
@Autowired
|
||||
private ClaseServicioService claseServicioService;
|
||||
@Autowired
|
||||
private TramoRutaService tramoRutaService;
|
||||
@Autowired
|
||||
private EmpresaService empresaService;
|
||||
@Autowired
|
||||
private OrgaoConcedenteService orgaoConcedenteService;
|
||||
private List<OrgaoConcedente> lsOrgaoConcedente;
|
||||
private List<ClaseServicio> lsClaseServicio;
|
||||
private List<Empresa> lsEmpresa;
|
||||
private Combobox cmbClaseServicio;
|
||||
private Combobox cmbOrgaoConcedente;
|
||||
private Checkbox chkVentaHandHeld;
|
||||
private Checkbox chkSolicitaNombrePasajero;
|
||||
private MyTextbox txtDscRuta;
|
||||
private Window winEditarTramoRuta;
|
||||
private Combobox cmbEmpresa;
|
||||
private MyListbox rutaEmpresaList;
|
||||
private GridRutaTramo gridRutaSecuencia;
|
||||
private List<Empresa> lsRutaEmpresa;
|
||||
private MyTextbox txtPrefixo;
|
||||
|
||||
@Override
|
||||
public void doAfterCompose(Component comp) throws Exception {
|
||||
lsClaseServicio = claseServicioService.obtenerTodos();
|
||||
lsEmpresa = empresaService.obtenerIndTipo1();
|
||||
lsRutaEmpresa = new ArrayList<Empresa>();
|
||||
@Override
|
||||
public void doAfterCompose(Component comp) throws Exception {
|
||||
lsOrgaoConcedente = orgaoConcedenteService.obtenerTodos();
|
||||
lsClaseServicio = claseServicioService.obtenerTodos();
|
||||
lsEmpresa = empresaService.obtenerIndTipo1();
|
||||
lsRutaEmpresa = new ArrayList<Empresa>();
|
||||
|
||||
super.doAfterCompose(comp);
|
||||
super.doAfterCompose(comp);
|
||||
|
||||
gridRutaSecuencia.setLsVias(viaService.obtenerTodos());
|
||||
}
|
||||
gridRutaSecuencia.setLsVias(viaService.obtenerTodos());
|
||||
}
|
||||
|
||||
public void onClick$btnCombinacion(Event e) throws InterruptedException {
|
||||
if (lsRutaEmpresa.isEmpty()) {
|
||||
Messagebox.show(Labels.getLabel("editarTramoRutaController.msg.empresaObligatoria"),
|
||||
Labels.getLabel("editarTramoRutaController.window.title"), Messagebox.OK,
|
||||
Messagebox.INFORMATION);
|
||||
public void onClick$btnCombinacion(Event e) throws InterruptedException {
|
||||
if (lsRutaEmpresa.isEmpty()) {
|
||||
Messagebox.show(Labels.getLabel("editarTramoRutaController.msg.empresaObligatoria"),
|
||||
Labels.getLabel("editarTramoRutaController.window.title"), Messagebox.OK,
|
||||
Messagebox.INFORMATION);
|
||||
|
||||
return;
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
RutaTramoVO rutaTramoVO = new RutaTramoVO();
|
||||
rutaTramoVO.setClaseServicio((ClaseServicio) cmbClaseServicio.getSelectedItem().getValue());
|
||||
rutaTramoVO.setSolicitaNombrePasajero(chkSolicitaNombrePasajero.isChecked());
|
||||
rutaTramoVO.setVentaHandHeld(chkVentaHandHeld.isChecked());
|
||||
rutaTramoVO.setLsSecuenciaRutaTramoVO(gridRutaSecuencia.getLsSecuenciaRutaTramoVO());
|
||||
rutaTramoVO.setLsEmpresa(lsRutaEmpresa);
|
||||
rutaTramoVO.setPrefixo(txtPrefixo.getValue());
|
||||
rutaTramoVO.setDescRuta(txtDscRuta.getValue());
|
||||
RutaTramoVO rutaTramoVO = new RutaTramoVO();
|
||||
rutaTramoVO.setClaseServicio((ClaseServicio) cmbClaseServicio.getSelectedItem().getValue());
|
||||
rutaTramoVO.setOrgaoConcedente((OrgaoConcedente) cmbOrgaoConcedente.getSelectedItem().getValue());
|
||||
rutaTramoVO.setSolicitaNombrePasajero(chkSolicitaNombrePasajero.isChecked());
|
||||
rutaTramoVO.setVentaHandHeld(chkVentaHandHeld.isChecked());
|
||||
rutaTramoVO.setLsSecuenciaRutaTramoVO(gridRutaSecuencia.getLsSecuenciaRutaTramoVO());
|
||||
rutaTramoVO.setLsEmpresa(lsRutaEmpresa);
|
||||
rutaTramoVO.setPrefixo(txtPrefixo.getValue());
|
||||
rutaTramoVO.setDescRuta(txtDscRuta.getValue());
|
||||
|
||||
Map<String, Object> params = new LinkedHashMap<String, Object>();
|
||||
params.put("rutaTramoVO", rutaTramoVO);
|
||||
params.put("winEditarTramoRuta", winEditarTramoRuta);
|
||||
Map<String, Object> params = new LinkedHashMap<String, Object>();
|
||||
params.put("rutaTramoVO", rutaTramoVO);
|
||||
params.put("winEditarTramoRuta", winEditarTramoRuta);
|
||||
|
||||
this.openWindow("/gui/esquema_operacional/generacion_tramo_ruta/editarCombinacionTramoRuta.zul",
|
||||
Labels.getLabel("editarCombinacionTramoRutaController.window.title"), params, MODAL);
|
||||
this.openWindow("/gui/esquema_operacional/generacion_tramo_ruta/editarCombinacionTramoRuta.zul",
|
||||
Labels.getLabel("editarCombinacionTramoRutaController.window.title"), params, MODAL);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
public void onClick$btnAgregarPaso(Event e) {
|
||||
cmbClaseServicio.getValue();
|
||||
Map<String, Object> params = new LinkedHashMap<String, Object>();
|
||||
params.put("gridRutaSecuencia", gridRutaSecuencia);
|
||||
params.put("origen", gridRutaSecuencia.getUltimaParada());
|
||||
params.put("txtDscRuta", txtDscRuta);
|
||||
public void onClick$btnAgregarPaso(Event e) {
|
||||
cmbClaseServicio.getValue();
|
||||
cmbOrgaoConcedente.getValue();
|
||||
Map<String, Object> params = new LinkedHashMap<String, Object>();
|
||||
params.put("gridRutaSecuencia", gridRutaSecuencia);
|
||||
params.put("origen", gridRutaSecuencia.getUltimaParada());
|
||||
params.put("txtDscRuta", txtDscRuta);
|
||||
|
||||
this.openWindow("/gui/esquema_operacional/generacion_tramo_ruta/nuevaParada.zul",
|
||||
Labels.getLabel("nuevaParadaController.window.title"), params, MODAL);
|
||||
}
|
||||
this.openWindow("/gui/esquema_operacional/generacion_tramo_ruta/nuevaParada.zul",
|
||||
Labels.getLabel("nuevaParadaController.window.title"), params, MODAL);
|
||||
}
|
||||
|
||||
public List<ClaseServicio> getLsClaseServicio() {
|
||||
return lsClaseServicio;
|
||||
}
|
||||
public List<ClaseServicio> getLsClaseServicio() {
|
||||
return lsClaseServicio;
|
||||
}
|
||||
|
||||
public void onChange$cmbClaseServicio(Event e) {
|
||||
gridRutaSecuencia.setClaseServicio((ClaseServicio) cmbClaseServicio.getSelectedItem().getValue());
|
||||
}
|
||||
public void onChange$cmbClaseServicio(Event e) {
|
||||
gridRutaSecuencia.setClaseServicio((ClaseServicio) cmbClaseServicio.getSelectedItem().getValue());
|
||||
}
|
||||
|
||||
public void onClick$btnDebugCombinacion(Event e) {
|
||||
RutaTramoVO rutaTramoVO = new RutaTramoVO();
|
||||
rutaTramoVO.setClaseServicio((ClaseServicio) cmbClaseServicio.getSelectedItem().getValue());
|
||||
rutaTramoVO.setSolicitaNombrePasajero(chkSolicitaNombrePasajero.isChecked());
|
||||
rutaTramoVO.setVentaHandHeld(chkVentaHandHeld.isChecked());
|
||||
rutaTramoVO.setLsSecuenciaRutaTramoVO(gridRutaSecuencia.getLsSecuenciaRutaTramoVO());
|
||||
public List<OrgaoConcedente> getLsOrgaoConcedente() {
|
||||
return lsOrgaoConcedente;
|
||||
}
|
||||
|
||||
tramoRutaService.generarCombinacion(rutaTramoVO);
|
||||
}
|
||||
public void setLsOrgaoConcedente(List<OrgaoConcedente> lsOrgaoConcedente) {
|
||||
this.lsOrgaoConcedente = lsOrgaoConcedente;
|
||||
}
|
||||
|
||||
public void onClick$btnDebugCombinacion(Event e) {
|
||||
RutaTramoVO rutaTramoVO = new RutaTramoVO();
|
||||
rutaTramoVO.setClaseServicio((ClaseServicio) cmbClaseServicio.getSelectedItem().getValue());
|
||||
rutaTramoVO.setOrgaoConcedente((OrgaoConcedente) cmbOrgaoConcedente.getSelectedItem().getValue());
|
||||
rutaTramoVO.setSolicitaNombrePasajero(chkSolicitaNombrePasajero.isChecked());
|
||||
rutaTramoVO.setVentaHandHeld(chkVentaHandHeld.isChecked());
|
||||
rutaTramoVO.setLsSecuenciaRutaTramoVO(gridRutaSecuencia.getLsSecuenciaRutaTramoVO());
|
||||
|
||||
public List<Empresa> getLsEmpresa() {
|
||||
return lsEmpresa;
|
||||
}
|
||||
tramoRutaService.generarCombinacion(rutaTramoVO);
|
||||
}
|
||||
|
||||
public void onClick$btnAdicionarEmpresaRuta(Event ev) throws InterruptedException {
|
||||
public List<Empresa> getLsEmpresa() {
|
||||
return lsEmpresa;
|
||||
}
|
||||
|
||||
Comboitem cbiEmpresa = cmbEmpresa.getSelectedItem();
|
||||
public void onClick$btnAdicionarEmpresaRuta(Event ev) throws InterruptedException {
|
||||
|
||||
if (cbiEmpresa != null) {
|
||||
Empresa empresa = (Empresa) cbiEmpresa.getValue();
|
||||
Comboitem cbiEmpresa = cmbEmpresa.getSelectedItem();
|
||||
|
||||
if (!lsRutaEmpresa.contains(empresa)) {
|
||||
lsRutaEmpresa.add(empresa);
|
||||
rutaEmpresaList.setData(lsRutaEmpresa);
|
||||
} else {
|
||||
Messagebox.show(Labels.getLabel("MSG.Registro.Existe"),
|
||||
Labels.getLabel("editarTramoRutaController.window.title"),
|
||||
Messagebox.OK, Messagebox.EXCLAMATION);
|
||||
}
|
||||
}
|
||||
if (cbiEmpresa != null) {
|
||||
Empresa empresa = (Empresa) cbiEmpresa.getValue();
|
||||
|
||||
}
|
||||
if (!lsRutaEmpresa.contains(empresa)) {
|
||||
lsRutaEmpresa.add(empresa);
|
||||
rutaEmpresaList.setData(lsRutaEmpresa);
|
||||
} else {
|
||||
Messagebox.show(Labels.getLabel("MSG.Registro.Existe"),
|
||||
Labels.getLabel("editarTramoRutaController.window.title"),
|
||||
Messagebox.OK, Messagebox.EXCLAMATION);
|
||||
}
|
||||
}
|
||||
|
||||
public void onClick$btnRemoverEmpresaRuta(Event ev) {
|
||||
Empresa rutaEmpresa = (Empresa) rutaEmpresaList.getSelected();
|
||||
if (rutaEmpresa != null) {
|
||||
lsRutaEmpresa.remove(rutaEmpresa);
|
||||
rutaEmpresaList.setData(lsRutaEmpresa);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void onClick$btnRemoverEmpresaRuta(Event ev) {
|
||||
Empresa rutaEmpresa = (Empresa) rutaEmpresaList.getSelected();
|
||||
if (rutaEmpresa != null) {
|
||||
lsRutaEmpresa.remove(rutaEmpresa);
|
||||
rutaEmpresaList.setData(lsRutaEmpresa);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -151,7 +151,7 @@ public class ModificacionMasivaTarifasController extends MyGenericForwardCompose
|
|||
private Button btnGerarTarifas;
|
||||
private Tab tabTipoPuntoVenta;
|
||||
private Tab tabCategoria;
|
||||
private Radio rdLinear;
|
||||
|
||||
private static Logger log = Logger.getLogger(ModificacionMasivaTarifasController.class);
|
||||
|
||||
public List<ClaseServicio> getLsClaseServico() {
|
||||
|
@ -365,11 +365,9 @@ public class ModificacionMasivaTarifasController extends MyGenericForwardCompose
|
|||
}
|
||||
|
||||
public void onClick$btnGerarExcel(Event ev) {
|
||||
if (rdLinear.isChecked()) {
|
||||
|
||||
onClick$btnGerarExcelLinear(null);
|
||||
} else {
|
||||
onClick$btnGerarExcelEscala(null);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public void onClick$btnGerarExcelLinear(Event ev) {
|
||||
|
@ -569,67 +567,6 @@ public class ModificacionMasivaTarifasController extends MyGenericForwardCompose
|
|||
}
|
||||
//Escala
|
||||
|
||||
public void onClick$btnGerarExcelEscala(Event ev) {
|
||||
txtPorcentagem.getValue();
|
||||
|
||||
try {
|
||||
if (lsAddRmvVigenciaTarifa.isEmpty()) {
|
||||
Messagebox.show(
|
||||
Labels.getLabel("modificacionMasivaTarifasController.MSG.SemVigencia"),
|
||||
Labels.getLabel("modificacionMasivaTarifasController.window.title"),
|
||||
Messagebox.OK, Messagebox.EXCLAMATION);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
BigDecimal coeficiente = new BigDecimal(BigInteger.ZERO);
|
||||
try {
|
||||
if (txtPorcentagem.getValue() != null) {
|
||||
|
||||
BigDecimal porcentage = BigDecimal.valueOf(Double.parseDouble(txtPorcentagem.getValue()));
|
||||
|
||||
coeficiente = porcentage.divide(new BigDecimal(100));
|
||||
if (radIncremento.isChecked()) {
|
||||
coeficiente = coeficiente.add(BigDecimal.ONE);
|
||||
} else {
|
||||
coeficiente = BigDecimal.ONE.subtract(coeficiente);
|
||||
}
|
||||
}
|
||||
} catch (Exception e) {
|
||||
log.error(e);
|
||||
log.debug("Porcentagem Zero");
|
||||
}
|
||||
|
||||
if (coeficiente == null) {
|
||||
return;
|
||||
}
|
||||
|
||||
HSSFWorkbook wb = rutaCombinacionService.gerarTarifaEscala(lsAddRmvMonedas, lsAddRmvMarcas,
|
||||
lsAddRmvClaseServico, lsAddRmvCategoria, lsAddRmvEmpresas, lsAddRmvRutas,
|
||||
lsAddRmvTipoPuntoVenta, lsAddRmvVigenciaTarifa);
|
||||
|
||||
|
||||
|
||||
String nomeArquivo =
|
||||
UsuarioLogado.getUsuarioLogado().getNombusuario()
|
||||
+ "_" + Calendar.getInstance().getTime().getTime()
|
||||
+ "_" + "modMassivaEscala.xls";
|
||||
|
||||
FileOutputStream stream = new FileOutputStream(nomeArquivo);
|
||||
stream.flush();
|
||||
wb.write(stream);
|
||||
stream.close();
|
||||
|
||||
InputStream is = null;
|
||||
is = new FileInputStream(nomeArquivo);
|
||||
Filedownload.save(is, "application/xls", "modificacionMasivaTarifa.xls");
|
||||
|
||||
boolean success = (new File(nomeArquivo)).delete();
|
||||
} catch (Exception ex) {
|
||||
log.error(ex);
|
||||
}
|
||||
}
|
||||
|
||||
public VigenciaTarifa vigenciaTarifa(Media mExcel) throws IOException {
|
||||
InputStream isMExcel = mExcel.getStreamData();
|
||||
Workbook wb = new XSSFWorkbook(isMExcel);
|
||||
|
@ -661,27 +598,7 @@ public class ModificacionMasivaTarifasController extends MyGenericForwardCompose
|
|||
return v;
|
||||
}
|
||||
|
||||
public void onClick$btnUpLoadExcel(Event ev) throws InterruptedException,
|
||||
IOException {
|
||||
Media mExcel = Fileupload.get();
|
||||
|
||||
if (mExcel != null) {
|
||||
Map args = new HashMap();
|
||||
args.put("mExcel", mExcel);
|
||||
|
||||
openWindow("/gui/tarifas/modificacionMasivaTarifasUpload.zul",
|
||||
Labels.getLabel("modificacionMasivaTarifasController.window.title"), args, MODAL);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
public void onClick$btnGerarTarifas(Event ev) {
|
||||
|
||||
Map args = new HashMap();
|
||||
|
||||
openWindow("/gui/tarifas/generarTarifa.zul",
|
||||
Labels.getLabel("modificacionMasivaTarifasController.window.title"), args, MODAL);
|
||||
}
|
||||
|
||||
|
||||
public void onClick$btnAdicionarClaseServicio(Event ev) {
|
||||
Comboitem cbiClaseServicio = cmbClaseServicio.getSelectedItem();
|
||||
|
|
|
@ -58,6 +58,15 @@ esquemaOperacional.generacionCorrida=com.rjconsultores.ventaboletos.web.utileria
|
|||
pricing=com.rjconsultores.ventaboletos.web.utilerias.menu.item.pricing.MenuPricing
|
||||
pricing.general=com.rjconsultores.ventaboletos.web.utilerias.menu.item.pricing.ItemMenuPricing
|
||||
pricing.especifico=com.rjconsultores.ventaboletos.web.utilerias.menu.item.pricing.ItemMenuPricingEspecifico
|
||||
tarifasOficial=com.rjconsultores.ventaboletos.web.utilerias.menu.item.tarifasOficial.MenuTarifasOficial
|
||||
tarifasOficial.seguroKm=com.rjconsultores.ventaboletos.web.utilerias.menu.item.tarifasOficial.ItemMenuSeguroKm
|
||||
tarifasOficial.seguroTarifa=com.rjconsultores.ventaboletos.web.utilerias.menu.item.tarifasOficial.ItemMenuSeguroTarifa
|
||||
tarifasOficial.taxaEmbarqueKm=com.rjconsultores.ventaboletos.web.utilerias.menu.item.tarifasOficial.ItemMenuTarifasTaxaEmbarqueKm
|
||||
tarifasOficial.taxaEmbarqueParada=com.rjconsultores.ventaboletos.web.utilerias.menu.item.tarifasOficial.ItemMenuTarifasTaxaEmbarqueParada
|
||||
tarifasOficial.generarTarifasOrgao=com.rjconsultores.ventaboletos.web.utilerias.menu.item.tarifasOficial.ItemMenuGenerarTarifasOrgao
|
||||
tarifasOficial.copiarTarifaOficial=com.rjconsultores.ventaboletos.web.utilerias.menu.item.tarifasOficial.ItemMenuCopiarTarifaOficial
|
||||
tarifasOficial.tarifaOficialExcel=com.rjconsultores.ventaboletos.web.utilerias.menu.item.tarifasOficial.ItemMenuTarifaOficialExcel
|
||||
tarifasOficial.tarifaOficial=com.rjconsultores.ventaboletos.web.utilerias.menu.item.tarifasOficial.ItemMenuTarifasOficial
|
||||
tarifas=com.rjconsultores.ventaboletos.web.utilerias.menu.item.tarifas.MenuTarifas
|
||||
tarifas.redondeo=com.rjconsultores.ventaboletos.web.utilerias.menu.item.tarifas.ItemMenuRedondeo
|
||||
tarifas.excepcionRedondeo=com.rjconsultores.ventaboletos.web.utilerias.menu.item.tarifas.ItemMenuExcepcionRedondeo
|
||||
|
@ -68,10 +77,6 @@ tarifas.cambioVigencia=com.rjconsultores.ventaboletos.web.utilerias.menu.item.ta
|
|||
tarifas.modificacionMasiva=com.rjconsultores.ventaboletos.web.utilerias.menu.item.tarifas.ItemMenuModificacionMasiva
|
||||
tarifas.tarifas=com.rjconsultores.ventaboletos.web.utilerias.menu.item.tarifas.ItemMenuTarifas
|
||||
tarifas.tarifaEscala=com.rjconsultores.ventaboletos.web.utilerias.menu.item.tarifas.ItemMenuTarifaEscala
|
||||
tarifas.seguroKm=com.rjconsultores.ventaboletos.web.utilerias.menu.item.tarifas.ItemMenuSeguroKm
|
||||
tarifas.seguroTarifa=com.rjconsultores.ventaboletos.web.utilerias.menu.item.tarifas.ItemMenuSeguroTarifa
|
||||
tarifas.taxaEmbarqueKm=com.rjconsultores.ventaboletos.web.utilerias.menu.item.tarifas.ItemMenuTarifasTaxaEmbarqueKm
|
||||
tarifas.taxaEmbarqueParada=com.rjconsultores.ventaboletos.web.utilerias.menu.item.tarifas.ItemMenuTarifasTaxaEmbarqueParada
|
||||
pasajeroFrecuente=com.rjconsultores.ventaboletos.web.utilerias.menu.item.pasajerofrecuente.MenuPasajeroFrecuente
|
||||
pasajeroFrecuente.tipoDomicilio=com.rjconsultores.ventaboletos.web.utilerias.menu.item.pasajerofrecuente.ItemMenuTipoDomicilio
|
||||
pasajeroFrecuente.tipoOcupacion=com.rjconsultores.ventaboletos.web.utilerias.menu.item.pasajerofrecuente.ItemMenuTipoOcupacion
|
||||
|
@ -103,4 +108,4 @@ informes.servicioDiario=com.rjconsultores.ventaboletos.web.utilerias.menu.item.i
|
|||
informes.categoriaVenta=com.rjconsultores.ventaboletos.web.utilerias.menu.item.informes.ItemMenuCategoriaVenta
|
||||
informes.ventasPuntoVenta=com.rjconsultores.ventaboletos.web.utilerias.menu.item.informes.ItemMenuVentasPuntoVenta
|
||||
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
|
||||
|
|
|
@ -23,7 +23,7 @@ public class RenderConfiguracionCorridaTramo implements ListitemRenderer {
|
|||
Listcell lc = new Listcell(pe.getNumsecuencia().toString());
|
||||
lc.setParent(lstm);
|
||||
|
||||
lc = new Listcell(pe.getParada().getCveparada());
|
||||
lc = new Listcell(pe.getParada().getDescparada());
|
||||
lc.setParent(lstm);
|
||||
|
||||
// SimpleDateFormat sf = new SimpleDateFormat("HH:mm");
|
||||
|
|
|
@ -7,241 +7,241 @@
|
|||
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
|
||||
|
||||
<!-- Hibernate config -->
|
||||
<context:property-placeholder location="classpath:/com/rjconsultores/ventaboletos/web/cliente/conf/database.properties" />
|
||||
<context:component-scan base-package="com.rjconsultores.ventaboletos" />
|
||||
<tx:annotation-driven transaction-manager="transactionManager" />
|
||||
<context:property-placeholder location="classpath:/com/rjconsultores/ventaboletos/web/cliente/conf/database.properties" />
|
||||
<context:component-scan base-package="com.rjconsultores.ventaboletos" />
|
||||
<tx:annotation-driven transaction-manager="transactionManager" />
|
||||
|
||||
<bean id="sessionFactory" class="com.rjconsultores.ventaboletos.utilerias.spring.MyAnnotationSessionFactoryBean">
|
||||
<property name="dataSource">
|
||||
<ref local="dataSource" />
|
||||
</property>
|
||||
<bean id="sessionFactory" class="com.rjconsultores.ventaboletos.utilerias.spring.MyAnnotationSessionFactoryBean">
|
||||
<property name="dataSource">
|
||||
<ref local="dataSource" />
|
||||
</property>
|
||||
|
||||
<property name="annotatedClasses">
|
||||
<list>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.AlertaCtrl</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Autobus</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Autorizacion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.AutorizacionPerfil</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Articulo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.AsientoExclusivo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Banco</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CancelacionCtrl</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CancelacionCargo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Categoria</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaClase</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaCorrida</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaCtrl</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaDescuento</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaMarca</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaMercado</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaPeriodo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaTipoPtoVta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Ciudad</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CoeficienteTarifa</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Colonia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ClaseServicio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ClaseservicioEquivalencia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ComisionistaExterno</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CompaniaBancaria</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Conductor</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ConfigRestriccionPago</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ConfRestricaoCanalVenta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Convenio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ConvenioDet</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Constante</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Corrida</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CorridaCtrl</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CorridaTramo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Cortesia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CortesiaBeneficiario</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CortesiaDireccion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Conexion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ConexionTemp</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ConexionCtrl</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ConexionCtrlTemp</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CuponConvenio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CuponSecretaria</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.DetDiagramaAutobus</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.DepositoBancario</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.DiagramaAutobus</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Division</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Empleado</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Empresa</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.EmpresaEquivalencia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Estacion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Estado</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.EsquemaAsiento</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.EsquemaCorrida</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.EsquemaOperacional</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.EsquemaTramo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Estado</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ExcepcionRedondo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.FormaPago</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.FormaPagoDet</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.GrupoCortesia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.FuncionSistema</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Marca</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MercadoCompetido</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MerchantBancario</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Moneda</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MarcaClaseServicio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MotivoCancelacion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MotivocancelacionEquivalencia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MotivoReimpresion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MotivoViaje</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Nodo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.OrgaoConcedente</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.OrgaoTramo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Pais</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Parada</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParadaEquivalencia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParamAcumulaMasivo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParamAcumulaPunto</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParamCanjePunto</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParamCostoTarjeta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParamCompraPunto</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParamRecoleccion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParamConexion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Perfil</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PerfilFuncion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PeriodoVacacional</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Plaza</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Pricing</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingAnticipacion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingImporte</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingVigencia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingClase</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingMarca</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingMercado</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingDia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingCorrida</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingPuntoVenta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingCategoria</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingTipoPtoVta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingTipoServicio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingAsiento</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingOcupacion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingEspecifico</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingRuta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProductoServicio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProdClaseServicio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProdFormaPago</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProdMarca</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProdPrecio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProdMercado</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProdPuntoVenta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProdRuta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProdTipoptovta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProdVigencia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProductoServicio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaEmpresa</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PtoVtaUsuarioBancario</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PuntoVenta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Redondeo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RedondeoCtrl</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RedondeoMarca</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ReservacionCategoria</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ReservacionClase</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ReservacionCtrl</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ReservacionMarca</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ReservacionMercado</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ReservacionPuntoVenta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RestriccionPago</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RolOperativo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Ruta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RutaCombinacion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RutaEmpresa</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RutaSecuencia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RhPagoConductor</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Secretaria</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.SeguroKm</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.SeguroTarifa</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Sistema</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TaxaEmbarqueKm</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TaxaEmbarqueParada</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TarjetaFidelidad</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TarjetaRecaudacion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Tarifa</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TarifaOficial</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TarifaHist</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TarifaMinima</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TarifaCategoria</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TarifaTipoptovta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoConvenio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoCambioCtrl</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoCambioCiudad</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoCorte</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoCortesiaDescuento</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoCortesia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoDomicilio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoEmpleado</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoMovimiento</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoOcupacion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoParada</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoPuntoVenta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoServicio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoVenta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Tramo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TramoServicio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TramoKmServicio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TramoTiempo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TramoKm</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Turno</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Usuario</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.UsuarioBancario</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.UsuarioPerfil</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.UsuarioUbicacion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Via</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.VigenciaTarifa</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Zona</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParamArticulo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.EventoExtra</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoEventoExtra</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.AjusteEventoExtra</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TarjetaViaje</value>
|
||||
</list>
|
||||
</property>
|
||||
<property name="annotatedClasses">
|
||||
<list>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.AlertaCtrl</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Autobus</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Autorizacion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.AutorizacionPerfil</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Articulo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.AsientoExclusivo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Banco</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CancelacionCtrl</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CancelacionCargo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Categoria</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaClase</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaCorrida</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaCtrl</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaDescuento</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaMarca</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaMercado</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaPeriodo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaTipoPtoVta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Ciudad</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CoeficienteTarifa</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Colonia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ClaseServicio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ClaseservicioEquivalencia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ComisionistaExterno</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CompaniaBancaria</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Conductor</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ConfigRestriccionPago</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ConfRestricaoCanalVenta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Convenio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ConvenioDet</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Constante</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Corrida</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CorridaCtrl</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CorridaTramo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Cortesia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CortesiaBeneficiario</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CortesiaDireccion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Conexion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ConexionTemp</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ConexionCtrl</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ConexionCtrlTemp</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CuponConvenio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CuponSecretaria</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.DetDiagramaAutobus</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.DepositoBancario</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.DiagramaAutobus</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Division</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Empleado</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Empresa</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.EmpresaEquivalencia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Estacion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Estado</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.EsquemaAsiento</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.EsquemaCorrida</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.EsquemaOperacional</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.EsquemaTramo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Estado</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ExcepcionRedondo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.FormaPago</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.FormaPagoDet</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.GrupoCortesia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.FuncionSistema</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Marca</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MercadoCompetido</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MerchantBancario</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Moneda</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MarcaClaseServicio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MotivoCancelacion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MotivocancelacionEquivalencia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MotivoReimpresion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MotivoViaje</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Nodo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.OrgaoConcedente</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.OrgaoTramo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Pais</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Parada</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParadaEquivalencia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParamAcumulaMasivo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParamAcumulaPunto</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParamCanjePunto</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParamCostoTarjeta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParamCompraPunto</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParamRecoleccion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParamConexion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Perfil</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PerfilFuncion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PeriodoVacacional</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Plaza</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Pricing</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingAnticipacion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingImporte</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingVigencia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingClase</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingMarca</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingMercado</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingDia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingCorrida</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingPuntoVenta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingCategoria</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingTipoPtoVta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingTipoServicio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingAsiento</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingOcupacion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingEspecifico</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingRuta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProductoServicio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProdClaseServicio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProdFormaPago</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProdMarca</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProdPrecio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProdMercado</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProdPuntoVenta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProdRuta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProdTipoptovta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProdVigencia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProductoServicio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaEmpresa</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PtoVtaUsuarioBancario</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PuntoVenta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Redondeo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RedondeoCtrl</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RedondeoMarca</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ReservacionCategoria</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ReservacionClase</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ReservacionCtrl</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ReservacionMarca</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ReservacionMercado</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ReservacionPuntoVenta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RestriccionPago</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RolOperativo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Ruta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RutaCombinacion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RutaEmpresa</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RutaSecuencia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RhPagoConductor</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Secretaria</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.SeguroKm</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.SeguroTarifa</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Sistema</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TaxaEmbarqueKm</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TaxaEmbarqueParada</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TarjetaFidelidad</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TarjetaRecaudacion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Tarifa</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TarifaOficial</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TarifaHist</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TarifaMinima</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TarifaCategoria</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TarifaTipoptovta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoConvenio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoCambioCtrl</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoCambioCiudad</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoCorte</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoCortesiaDescuento</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoCortesia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoDomicilio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoEmpleado</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoMovimiento</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoOcupacion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoParada</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoPuntoVenta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoServicio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoVenta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Tramo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TramoServicio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TramoKmServicio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TramoTiempo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TramoKm</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Turno</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Usuario</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.UsuarioBancario</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.UsuarioPerfil</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.UsuarioUbicacion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Via</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.VigenciaTarifa</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Zona</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParamArticulo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.EventoExtra</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoEventoExtra</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.AjusteEventoExtra</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TarjetaViaje</value>
|
||||
</list>
|
||||
</property>
|
||||
|
||||
<property name="hibernateProperties">
|
||||
<props>
|
||||
<prop key="hibernate.dialect">${database.dialect}</prop>
|
||||
<property name="hibernateProperties">
|
||||
<props>
|
||||
<prop key="hibernate.dialect">${database.dialect}</prop>
|
||||
<!--<prop key="hibernate.default_schema">${database.default_schema}</prop> -->
|
||||
<prop key="hibernate.show_sql">${database.showSql}</prop>
|
||||
<prop key="hibernate.format_sql">true</prop>
|
||||
</props>
|
||||
</property>
|
||||
</bean>
|
||||
<prop key="hibernate.show_sql">${database.showSql}</prop>
|
||||
<prop key="hibernate.format_sql">true</prop>
|
||||
</props>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
<bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
|
||||
<property name="sessionFactory" ref="sessionFactory" />
|
||||
</bean>
|
||||
<bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
|
||||
<property name="sessionFactory" ref="sessionFactory" />
|
||||
</bean>
|
||||
|
||||
<bean id="contextApplicationContextProvider" class="com.rjconsultores.ventaboletos.web.utilerias.spring.ApplicationContextProvider">
|
||||
</bean>
|
||||
<bean id="contextApplicationContextProvider" class="com.rjconsultores.ventaboletos.web.utilerias.spring.ApplicationContextProvider">
|
||||
</bean>
|
||||
|
||||
<bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean">
|
||||
<property name="resourceRef" value="true" />
|
||||
<property name="jndiName" value="${database.jndi.name}" />
|
||||
</bean>
|
||||
<!--bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean">
|
||||
<property name="resourceRef" value="true" />
|
||||
<property name="jndiName" value="${database.jndi.name}" />
|
||||
</bean-->
|
||||
|
||||
<!-- <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> -->
|
||||
<!-- <property name="driverClassName" value="${database.driver}" /> -->
|
||||
<!-- <property name="url" value="${database.url}" /> -->
|
||||
<!-- <property name="username" value="${database.username}" /> -->
|
||||
<!-- <property name="password" value="${database.password}" /> -->
|
||||
<!-- </bean> -->
|
||||
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
|
||||
<property name="driverClassName" value="${database.driver}" />
|
||||
<property name="url" value="${database.url}" />
|
||||
<property name="username" value="${database.username}" />
|
||||
<property name="password" value="${database.password}" />
|
||||
</bean>
|
||||
|
||||
<!-- ====================================================== -->
|
||||
<!-- Search class from Hibernate-Generic-DAO framework -->
|
||||
<!-- ====================================================== -->
|
||||
<bean id="hibernateSearchSupport" scope="prototype" class="com.rjconsultores.ventaboletos.web.utilerias.paginacion.HibernateSearchSupportImpl">
|
||||
<property name="sessionFactory" ref="sessionFactory" />
|
||||
<property name="hibernateSearchProcessor">
|
||||
<bean class="com.trg.search.hibernate.HibernateSearchProcessor" factory-method="getInstanceForSessionFactory">
|
||||
<constructor-arg ref="sessionFactory" />
|
||||
</bean>
|
||||
</property>
|
||||
</bean>
|
||||
<bean id="sqlFactory" class="com.rjconsultores.ventaboletos.dao.sqlbuilder.SQLFactory" />
|
||||
<bean id="sqlBuilder" class="com.rjconsultores.ventaboletos.dao.sqlbuilder.SQLBuilder" factory-bean="sqlFactory" factory-method="getBuilder" />
|
||||
<bean id="hibernateSearchSupport" scope="prototype" class="com.rjconsultores.ventaboletos.web.utilerias.paginacion.HibernateSearchSupportImpl">
|
||||
<property name="sessionFactory" ref="sessionFactory" />
|
||||
<property name="hibernateSearchProcessor">
|
||||
<bean class="com.trg.search.hibernate.HibernateSearchProcessor" factory-method="getInstanceForSessionFactory">
|
||||
<constructor-arg ref="sessionFactory" />
|
||||
</bean>
|
||||
</property>
|
||||
</bean>
|
||||
<bean id="sqlFactory" class="com.rjconsultores.ventaboletos.dao.sqlbuilder.SQLFactory" />
|
||||
<bean id="sqlBuilder" class="com.rjconsultores.ventaboletos.dao.sqlbuilder.SQLBuilder" factory-bean="sqlFactory" factory-method="getBuilder" />
|
||||
</beans>
|
|
@ -7,7 +7,7 @@
|
|||
# <controler>. <id>. <propiedade> = XXX
|
||||
|
||||
#Versao do VentaBoleto:
|
||||
versao = ADM_20120909_1RC63
|
||||
versao = ADM_20120911_1RC63
|
||||
|
||||
# MSG Defaut:
|
||||
MSG.CONSTRAINT.PORCENTAGEM = Os valores devem estar entre 0 e 100
|
||||
|
@ -78,7 +78,8 @@ indexController.mnCatalogos.label = Catálogos
|
|||
indexController.mnConfiguracionesComerciales.label = Configuração Comercial
|
||||
indexController.mnEsquemaOperacional.label = Esquema Operacional
|
||||
indexController.mnPricing.label = Pricing
|
||||
indexController.mnTarifas.label = Tarifas
|
||||
indexController.mnTarifas.label = Adm. de Preço
|
||||
indexController.mnTarifasOficial.label = Cálculo de Preço
|
||||
indexController.mnSendaAmigo.label = Passageiro frequente
|
||||
indexController.mniMarcas.label = Marcas
|
||||
indexController.mniMoneda.label = Moeda
|
||||
|
@ -118,6 +119,8 @@ indexController.mniTarifasMinimas.label = Tarifas Mínimas
|
|||
indexController.mniTarifas.label = Tarifas
|
||||
indexController.mniVigenciaTarifa.label = Vigência Tarifas
|
||||
indexController.mniTarifasEscala.label = Tarifa Escala
|
||||
indexController.mniTarifasOficialExcel.label = Tarifa Oficial Excel
|
||||
indexController.mniTarifasOficial.label = Tarifa Oficial
|
||||
indexController.mniMercadoCompetido.label = Trecho Concorrente
|
||||
indexController.mniAcumulacionPorVenta.label = Configuração Acumulação por Venda
|
||||
indexController.mniCanjePuntos.label = Configuração para Troca de Pontos
|
||||
|
@ -189,8 +192,8 @@ indexController.mniPtovtaEmpresa.label = Ponto de Venda Empresa
|
|||
indexController.mniConfRestricaoCanalVenta.label = Configurar Restrição de Canal de Venda
|
||||
indexController.mniOrgaoConcedente.label = Orgão Concedente
|
||||
indexController.mniCoeficienteTarifa.label = Coeficiente Tarifario
|
||||
indexController.mniGenerarTarifaOrgao.label= Calcular Tarifa Oficial
|
||||
indexController.mniCopiarTarifaOficial.label= Atualizar Tarifa Oficial
|
||||
indexController.mniGenerarTarifaOrgao.label= Gerar/Atualizar Tarifa Oficial
|
||||
indexController.mniCopiarTarifaOficial.label= Copiar Tarifa Oficial
|
||||
indexController.mniConfigLayoutImpressaoBoleto.label = Config Layout Impressão Boleto
|
||||
|
||||
#PARTE REALIZADA POR MANUEL
|
||||
|
@ -1298,6 +1301,10 @@ busquedaTarifaController.lhPrecio.label = Tarifa
|
|||
busquedaTarifaController.lhPrecioExcel.label = Tarifa Atual
|
||||
busquedaTarifaController.lhPrecioNuevo.label = Tarifa Simulada
|
||||
busquedaTarifaController.lhPrecioOriginal.label = Tarifa Original
|
||||
busquedaTarifaController.lhPrecioTaxa.label = Taxa
|
||||
busquedaTarifaController.lhPrecioSeguro.label = Seguro
|
||||
busquedaTarifaController.lhPrecioOutros.label = Outros
|
||||
busquedaTarifaController.lhPrecioPedagio.label = Pedágio
|
||||
busquedaTarifaController.lhMarca.label = Marca
|
||||
busquedaTarifaController.lhOrigen.label = Origem
|
||||
busquedaTarifaController.lhDestino.label = Destino
|
||||
|
@ -1313,6 +1320,9 @@ busquedaTarifaController.lhTramo.label = Trecho
|
|||
busquedaTarifaController.lhOrgao.label = Órgão
|
||||
busquedaTarifaController.lhLinha.label = Linha
|
||||
busquedaTarifaController.lhPedagio.label = Pedágio
|
||||
busquedaTarifaController.lhTaxa.label = Taxa de Embarque
|
||||
busquedaTarifaController.lhSeguro.label = Seguro
|
||||
busquedaTarifaController.lhOutros.label = Outros
|
||||
busquedaTarifaController.btnPesquisa.label = Pesquisa
|
||||
busquedaTarifaController.lhVigencia.label = Vigência
|
||||
busquedaTarifaController.lhStatusTarifa.label = Status Tarifa
|
||||
|
@ -1347,6 +1357,17 @@ modificacionMasivaTarifasController.MSG.SemVigencia = Selecione uma vigência.
|
|||
modificacionMasivaTarifasController.MSG.RegistroSalvos = Registro(s) processado(s) com Sucesso.
|
||||
modificacionMasivaTarifasController.MSG.tarifaExiste = Tarifa já existe
|
||||
|
||||
# Editar Tarifa Oficial:
|
||||
editarTarifaOficialController.window.title = Tarifa Oficial
|
||||
editarTarifaOficialController.btnFechar.MSG.SuscbrirOK = Tarifa Oficial Registrada com Sucesso.
|
||||
editarTarifaOficialController.btnFechar.MSG.Deseja.Borrar = Deseja Eliminar essa tarifa?
|
||||
editarTarifaOficialController.btnFechar.MSG.borrarOK= Tarifa Excluida com Sucesso.
|
||||
editarTarifaOficialController.btnApagar.tooltiptext= Eliminar tarifa
|
||||
editarTarifaOficialController.btnSalvar.tooltiptext= Salvar
|
||||
editarTarifaOficialController.btnFechar.tooltiptext= Fechar
|
||||
editarTarifaOficialController.tabTarifa.label = Tarifa
|
||||
|
||||
|
||||
# Pesquisa Vigência Tarifa
|
||||
busquedaVigenciaTarifaController.window.title = Vigência Tarifa
|
||||
busquedaVigenciaTarifaController.btnRefresh.tooltiptext = Atualizar
|
||||
|
@ -1373,8 +1394,8 @@ editarVigenciaTarifaController.MSG.podeApagar = Há tarifas com esta vigência,
|
|||
editarVigenciaTarifaController.MSG.fecVenta = Data vigência Venda deve estar entre data início e data Fim.
|
||||
|
||||
# Tarifa Escala
|
||||
tarifaEscalaContorller.window.title = Alteração de Preço em Escala
|
||||
tarifaEscalaContorller.btnApagar.tooltiptext = Autorizar Preço
|
||||
tarifaEscalaContorller.window.title = Tarifa Escala
|
||||
tarifaEscalaContorller.btnApagar.tooltiptext = Autorizar Escala
|
||||
tarifaEscalaContorller.btnExportarExcel.tooltiptext = Exportar Excel
|
||||
tarifaEscalaContorller.btnSalvar.tooltiptext = Salvar
|
||||
tarifaEscalaContorller.btnFechar.tooltiptext = Fechar
|
||||
|
@ -3276,6 +3297,7 @@ corteTurnoRecaudacionController.TotalAbonoCartera.label = Total Abono Cartera
|
|||
editarTramoRutaController.window.title=Geração Automática de Trechos e Linha
|
||||
editarTramoRutaController.lblRuta.value=Linha
|
||||
editarTramoRutaController.lblClase.value= Tipo de Classe
|
||||
editarTramoRutaController.lblOrgao.value = Orgão Concedente
|
||||
editarTramoRutaController.lblVtaHandHeld.value= Venda Hand Held
|
||||
editarTramoRutaController.lblPrefixo.value= Prefixo
|
||||
editarTramoRutaController.lblNombrePasajero.value= Solicita Nome do Passageiro
|
||||
|
@ -3724,7 +3746,6 @@ editarSeguroTarifaController.MSG.existe= Já existe um registro com esse Tarifa.
|
|||
|
||||
#SeguroServiceImpl
|
||||
TarifaOficialServiceImpl.msg.validacion.orgaoObligatorio=Informe o Órgão Concedente
|
||||
|
||||
#Búsqueda conexion
|
||||
busquedaConexionController.window.title=Conexões entre Localidades
|
||||
busquedaConexionController.lhOrigenConexion.label=Ori. Conexão
|
||||
|
|
|
@ -48,15 +48,23 @@
|
|||
<label
|
||||
value="${c:l('editarTramoRutaController.lblVtaHandHeld.value')}" />
|
||||
<checkbox id="chkVentaHandHeld" />
|
||||
<label
|
||||
value="${c:l('editarTramoRutaController.lblNombrePasajero.value')}" />
|
||||
<checkbox id="chkSolicitaNombrePasajero" />
|
||||
<label
|
||||
value="${c:l('editarTramoRutaController.lblOrgao.value')}" />
|
||||
<combobox id="cmbOrgaoConcedente"
|
||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
|
||||
constraint="no empty" mold="rounded" buttonVisible="true"
|
||||
width="80%"
|
||||
model="@{winEditarTramoRuta$composer.lsOrgaoConcedente}" />
|
||||
</row>
|
||||
<row>
|
||||
<label
|
||||
value="${c:l('editarTramoRutaController.lblPrefixo.value')}" />
|
||||
<textbox id="txtPrefixo" width="89%" maxlength="10"
|
||||
constraint="no empty" sclass="mydb" />
|
||||
constraint="no empty" sclass="mydb"
|
||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox" />
|
||||
<label
|
||||
value="${c:l('editarTramoRutaController.lblNombrePasajero.value')}" />
|
||||
<checkbox id="chkSolicitaNombrePasajero" />
|
||||
</row>
|
||||
</rows>
|
||||
</grid>
|
||||
|
|
|
@ -49,6 +49,21 @@
|
|||
<textbox id="txtPedagio" value="@{winEditarTarifa$composer.tarifa.importepedagio,converter=com.rjconsultores.ventaboletos.web.utilerias.StringDecimalToDecimalConverter}"
|
||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextboxDecimal" precision="7" scale="2"/>
|
||||
</row>
|
||||
<row>
|
||||
<label value="${c:l('busquedaTarifaController.lhTaxa.label')}"/>
|
||||
<textbox id="txtTaxa" value="@{winEditarTarifa$composer.tarifa.importetaxaembarque,converter=com.rjconsultores.ventaboletos.web.utilerias.StringDecimalToDecimalConverter}"
|
||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextboxDecimal" precision="7" scale="2"/>
|
||||
</row>
|
||||
<row>
|
||||
<label value="${c:l('busquedaTarifaController.lhSeguro.label')}"/>
|
||||
<textbox id="txtSeguro" value="@{winEditarTarifa$composer.tarifa.importeseguro,converter=com.rjconsultores.ventaboletos.web.utilerias.StringDecimalToDecimalConverter}"
|
||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextboxDecimal" precision="7" scale="2"/>
|
||||
</row>
|
||||
<row>
|
||||
<label value="${c:l('busquedaTarifaController.lhOutros.label')}"/>
|
||||
<textbox id="txtOutros" value="@{winEditarTarifa$composer.tarifa.importeoutros,converter=com.rjconsultores.ventaboletos.web.utilerias.StringDecimalToDecimalConverter}"
|
||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextboxDecimal" precision="7" scale="2"/>
|
||||
</row>
|
||||
<row>
|
||||
|
||||
<!-- value="@{winEditarTarifa$composer.tarifa.preciooriginal}" -->
|
||||
|
|
|
@ -45,13 +45,13 @@
|
|||
<textbox id="txtPorcentagem" maxValue="100.00" constraint="no empty" value="0.00"
|
||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextboxDecimal"/>
|
||||
</row>
|
||||
<row>
|
||||
<!--row>
|
||||
<label value="${c:l('modificacionMasivaTarifasController.formato')}"/>
|
||||
<radiogroup id="rdFormato" >
|
||||
<radio id="rdLinear" label="${c:l('modificacionMasivaTarifasController.linear')}" checked="true"/>
|
||||
<radio id="rdEscala" label="${c:l('modificacionMasivaTarifasController.escala')}"/>
|
||||
</radiogroup>
|
||||
</row>
|
||||
</row-->
|
||||
</rows>
|
||||
</grid>
|
||||
|
||||
|
|
Loading…
Reference in New Issue