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