25 lines
1.0 KiB
Java
25 lines
1.0 KiB
Java
package com.rjconsultores.ventaboletos.constantes;
|
|
|
|
public class Constantes {
|
|
|
|
public static final Long FORMA_PAGO_RESERVA = new Long(94);
|
|
public static final Long FORMA_PAGO_NOTA_CREDITO = new Long(93);
|
|
public static final Long FORMA_PAGO_CREDITO = new Long(2);
|
|
public static final Long FORMA_PAGO_DEBITO = new Long(3);
|
|
|
|
public static final Long MVO_CANCEL_CANCELACION = new Long(31);
|
|
public static final Long MVO_CANCEL_DEVOLUCAO = new Long(32);
|
|
|
|
public static Long TPV_BOLETO_REMOTO = new Long(18);
|
|
public static Long TPV_TRANSFERENCIAS = new Long(8); // é a troca de passagens
|
|
public static Long TPV_CAMBIO_VIAJE = new Long(81); // é a transferência de passagens
|
|
public static Long TPV_CHECKIN_VIAGEM = new Long(41); // chekin boletos
|
|
|
|
public static Long TPV_RESERVACION_POR_INTERNET = new Long(16);
|
|
public static Long TPV_POR_INTERNET = new Long(12);
|
|
public static Long TPV_AGENCIA_WEB = new Long(19);
|
|
|
|
public static String CLAVE_EDITAR_COMISSAO = "COM.RJCONSULTORES.ADMINISTRACION.PUNTOVENTA.EDITARCOMISSAO";
|
|
|
|
}
|