Correção de Origem/Destino fixes bug #AL-5158
parent
45722421b2
commit
e4502f7ae7
2
pom.xml
2
pom.xml
|
@ -4,7 +4,7 @@
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>br.com.rjconsultores</groupId>
|
<groupId>br.com.rjconsultores</groupId>
|
||||||
<artifactId>ventaboletosadm</artifactId>
|
<artifactId>ventaboletosadm</artifactId>
|
||||||
<version>1.163.1</version>
|
<version>1.163.2</version>
|
||||||
<packaging>war</packaging>
|
<packaging>war</packaging>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
|
|
|
@ -35,6 +35,7 @@ import com.rjconsultores.ventaboletos.web.utilerias.render.RenderContrato;
|
||||||
@Scope("prototype")
|
@Scope("prototype")
|
||||||
public class BusquedaContratoController extends MyGenericForwardComposer {
|
public class BusquedaContratoController extends MyGenericForwardComposer {
|
||||||
|
|
||||||
|
private static final String TITULO = "busquedaContratoController.window.title";
|
||||||
private static Logger log = LogManager.getLogger(BusquedaContratoController.class);
|
private static Logger log = LogManager.getLogger(BusquedaContratoController.class);
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@Autowired
|
@Autowired
|
||||||
|
@ -65,8 +66,6 @@ public class BusquedaContratoController extends MyGenericForwardComposer {
|
||||||
verContrato(cc);
|
verContrato(cc);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
refreshLista();
|
|
||||||
|
|
||||||
txtNumContrato.focus();
|
txtNumContrato.focus();
|
||||||
}
|
}
|
||||||
|
@ -87,32 +86,50 @@ public class BusquedaContratoController extends MyGenericForwardComposer {
|
||||||
|
|
||||||
private void refreshLista() {
|
private void refreshLista() {
|
||||||
HibernateSearchObject<ContratoCorporativo> configBusqueda = new HibernateSearchObject<ContratoCorporativo>(ContratoCorporativo.class,pagingContrato.getPageSize());
|
HibernateSearchObject<ContratoCorporativo> configBusqueda = new HibernateSearchObject<ContratoCorporativo>(ContratoCorporativo.class,pagingContrato.getPageSize());
|
||||||
|
boolean filtrado = false;
|
||||||
|
|
||||||
if (txtNumContrato.getText().length() > 0) {
|
if (txtNumContrato.getText().length() > 0) {
|
||||||
|
filtrado = true;
|
||||||
configBusqueda.addFilterLike("numContrato", "%" + txtNumContrato.getText().trim().concat("%"));
|
configBusqueda.addFilterLike("numContrato", "%" + txtNumContrato.getText().trim().concat("%"));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (datInicial.getValue() != null ) {
|
if (datInicial.getValue() != null ) {
|
||||||
|
filtrado = true;
|
||||||
configBusqueda.addFilterEqual("dataInicial", datInicial.getValue());
|
configBusqueda.addFilterEqual("dataInicial", datInicial.getValue());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (datFinal.getValue() != null ) {
|
if (datFinal.getValue() != null ) {
|
||||||
|
filtrado = true;
|
||||||
configBusqueda.addFilterEqual("dataFinal", datFinal.getValue());
|
configBusqueda.addFilterEqual("dataFinal", datFinal.getValue());
|
||||||
}
|
}
|
||||||
|
|
||||||
if(rdgStatus.getSelectedItem() != null ) {
|
if(rdgStatus.getSelectedItem() != null ) {
|
||||||
|
filtrado = true;
|
||||||
configBusqueda.addFilterEqual("statusContrato", Integer.valueOf(rdgStatus.getSelectedItem().getValue() ));
|
configBusqueda.addFilterEqual("statusContrato", Integer.valueOf(rdgStatus.getSelectedItem().getValue() ));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cmbCliente.getSelectedItem() != null ) {
|
if (cmbCliente.getSelectedItem() != null ) {
|
||||||
|
filtrado = true;
|
||||||
ClienteCorporativo cliente = (ClienteCorporativo)cmbCliente.getSelectedItem().getValue();
|
ClienteCorporativo cliente = (ClienteCorporativo)cmbCliente.getSelectedItem().getValue();
|
||||||
configBusqueda.addFilterEqual("clienteCorporativoId", cliente.getClienteCorporativoId());
|
configBusqueda.addFilterEqual("clienteCorporativoId", cliente.getClienteCorporativoId());
|
||||||
}
|
}
|
||||||
|
|
||||||
if(UsuarioLogado.isUsuarioAdmContrato()) {
|
if(UsuarioLogado.isUsuarioAdmContrato()) {
|
||||||
|
filtrado = true;
|
||||||
configBusqueda.addFilterEqual("usuarioRepId", UsuarioLogado.getUsuarioLogado().getUsuarioId());
|
configBusqueda.addFilterEqual("usuarioRepId", UsuarioLogado.getUsuarioLogado().getUsuarioId());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(!filtrado) {
|
||||||
|
try {
|
||||||
|
Messagebox.show(Labels.getLabel("MSG.semFiltro"),
|
||||||
|
Labels.getLabel(TITULO),
|
||||||
|
Messagebox.OK, Messagebox.INFORMATION);
|
||||||
|
} catch (InterruptedException ex) {
|
||||||
|
log.error(ex);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
configBusqueda.addFilterEqual(ACTIVO, Boolean.TRUE);
|
configBusqueda.addFilterEqual(ACTIVO, Boolean.TRUE);
|
||||||
configBusqueda.addSortAsc("numContrato");
|
configBusqueda.addSortAsc("numContrato");
|
||||||
|
|
||||||
|
@ -121,7 +138,7 @@ public class BusquedaContratoController extends MyGenericForwardComposer {
|
||||||
if (contratoList.getData().length == 0) {
|
if (contratoList.getData().length == 0) {
|
||||||
try {
|
try {
|
||||||
Messagebox.show(Labels.getLabel("MSG.ningunRegistro"),
|
Messagebox.show(Labels.getLabel("MSG.ningunRegistro"),
|
||||||
Labels.getLabel("busquedaContratoController.window.title"),
|
Labels.getLabel(TITULO),
|
||||||
Messagebox.OK, Messagebox.INFORMATION);
|
Messagebox.OK, Messagebox.INFORMATION);
|
||||||
} catch (InterruptedException ex) {
|
} catch (InterruptedException ex) {
|
||||||
log.error(ex);
|
log.error(ex);
|
||||||
|
|
|
@ -42,6 +42,7 @@ import com.rjconsultores.ventaboletos.web.utilerias.render.RenderPadrao;
|
||||||
@Scope("prototype")
|
@Scope("prototype")
|
||||||
public class BusquedaVoucherController extends MyGenericForwardComposer {
|
public class BusquedaVoucherController extends MyGenericForwardComposer {
|
||||||
|
|
||||||
|
private static final String TITULO = "busquedaVoucherController.window.title";
|
||||||
private static Logger log = LogManager.getLogger(BusquedaVoucherController.class);
|
private static Logger log = LogManager.getLogger(BusquedaVoucherController.class);
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@Autowired
|
@Autowired
|
||||||
|
@ -79,7 +80,6 @@ public class BusquedaVoucherController extends MyGenericForwardComposer {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
refreshLista();
|
|
||||||
btnExportar.setVisible(false);
|
btnExportar.setVisible(false);
|
||||||
txtNumVoucher.focus();
|
txtNumVoucher.focus();
|
||||||
}
|
}
|
||||||
|
@ -100,37 +100,46 @@ public class BusquedaVoucherController extends MyGenericForwardComposer {
|
||||||
|
|
||||||
private void refreshLista() {
|
private void refreshLista() {
|
||||||
HibernateSearchObject<Voucher> configBusqueda = new HibernateSearchObject<Voucher>(Voucher.class,pagingVoucher.getPageSize());
|
HibernateSearchObject<Voucher> configBusqueda = new HibernateSearchObject<Voucher>(Voucher.class,pagingVoucher.getPageSize());
|
||||||
|
boolean filtrado = false;
|
||||||
|
|
||||||
if (txtNumVoucher.getText().length() > 0) {
|
if (txtNumVoucher.getText().length() > 0) {
|
||||||
|
filtrado = true;
|
||||||
configBusqueda.addFilterEqual("voucherId", txtNumVoucher.getValue());
|
configBusqueda.addFilterEqual("voucherId", txtNumVoucher.getValue());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (txtNumContrato.getText().length() > 0) {
|
if (txtNumContrato.getText().length() > 0) {
|
||||||
configBusqueda.addFilterEqual("numContrato", txtNumContrato.getText());
|
filtrado = true;
|
||||||
|
configBusqueda.addFilterEqual("contrato.numContrato", txtNumContrato.getText());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (txtNit.getText().length() > 0) {
|
if (txtNit.getText().length() > 0) {
|
||||||
|
filtrado = true;
|
||||||
configBusqueda.addFilterEqual("transportadora.nit", txtNit.getText());
|
configBusqueda.addFilterEqual("transportadora.nit", txtNit.getText());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (txtNome.getText().length() > 0) {
|
if (txtNome.getText().length() > 0) {
|
||||||
|
filtrado = true;
|
||||||
configBusqueda.addFilterLike("transportadora.nomeTransportadora", "%" + txtNome.getText().trim().concat("%"));
|
configBusqueda.addFilterLike("transportadora.nomeTransportadora", "%" + txtNome.getText().trim().concat("%"));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (datInicial.getValue() != null ) {
|
if (datInicial.getValue() != null ) {
|
||||||
|
filtrado = true;
|
||||||
configBusqueda.addFilterGreaterOrEqual("dataValidade", datInicial.getValue());
|
configBusqueda.addFilterGreaterOrEqual("dataValidade", datInicial.getValue());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (datFinal.getValue() != null ) {
|
if (datFinal.getValue() != null ) {
|
||||||
|
filtrado = true;
|
||||||
configBusqueda.addFilterLessOrEqual("dataValidade", datFinal.getValue());
|
configBusqueda.addFilterLessOrEqual("dataValidade", datFinal.getValue());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cmbOrigem.getSelectedItem() != null ) {
|
if (cmbOrigem.getSelectedItem() != null ) {
|
||||||
|
filtrado = true;
|
||||||
Parada origem = (Parada)cmbOrigem.getSelectedItem().getValue();
|
Parada origem = (Parada)cmbOrigem.getSelectedItem().getValue();
|
||||||
configBusqueda.addFilterEqual("origenId", origem.getParadaId());
|
configBusqueda.addFilterEqual("origenId", origem.getParadaId());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cmbDestino.getSelectedItem() != null ) {
|
if (cmbDestino.getSelectedItem() != null ) {
|
||||||
|
filtrado = true;
|
||||||
Parada destino = (Parada)cmbDestino.getSelectedItem().getValue();
|
Parada destino = (Parada)cmbDestino.getSelectedItem().getValue();
|
||||||
configBusqueda.addFilterEqual("destinoId", destino.getParadaId());
|
configBusqueda.addFilterEqual("destinoId", destino.getParadaId());
|
||||||
}
|
}
|
||||||
|
@ -149,9 +158,20 @@ public class BusquedaVoucherController extends MyGenericForwardComposer {
|
||||||
statusList.add( Integer.valueOf( chkCancelado.getValue()));
|
statusList.add( Integer.valueOf( chkCancelado.getValue()));
|
||||||
|
|
||||||
if(! statusList.isEmpty() ) {
|
if(! statusList.isEmpty() ) {
|
||||||
|
filtrado = true;
|
||||||
configBusqueda.addFilterIn( "status", statusList );
|
configBusqueda.addFilterIn( "status", statusList );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(!filtrado) {
|
||||||
|
try {
|
||||||
|
Messagebox.show(Labels.getLabel("MSG.semFiltro"),
|
||||||
|
Labels.getLabel(TITULO),
|
||||||
|
Messagebox.OK, Messagebox.INFORMATION);
|
||||||
|
} catch (InterruptedException ex) {
|
||||||
|
log.error(ex);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
configBusqueda.addFilterEqual(ACTIVO, Boolean.TRUE);
|
configBusqueda.addFilterEqual(ACTIVO, Boolean.TRUE);
|
||||||
configBusqueda.addSortAsc("voucherId");
|
configBusqueda.addSortAsc("voucherId");
|
||||||
|
@ -161,7 +181,7 @@ public class BusquedaVoucherController extends MyGenericForwardComposer {
|
||||||
if (voucherList.getData().length == 0) {
|
if (voucherList.getData().length == 0) {
|
||||||
try {
|
try {
|
||||||
Messagebox.show(Labels.getLabel("MSG.ningunRegistro"),
|
Messagebox.show(Labels.getLabel("MSG.ningunRegistro"),
|
||||||
Labels.getLabel("busquedaVoucherController.window.title"),
|
Labels.getLabel(TITULO),
|
||||||
Messagebox.OK, Messagebox.INFORMATION);
|
Messagebox.OK, Messagebox.INFORMATION);
|
||||||
} catch (InterruptedException ex) {
|
} catch (InterruptedException ex) {
|
||||||
log.error(ex);
|
log.error(ex);
|
||||||
|
|
|
@ -70,6 +70,7 @@ MSG.ningunRegistro = No records were found with this search.
|
||||||
MSG.ningunRegistroRelatorio = No record was found to issue the report
|
MSG.ningunRegistroRelatorio = No record was found to issue the report
|
||||||
MSG.noEditabled = It is not possible to delete or edit this data.
|
MSG.noEditabled = It is not possible to delete or edit this data.
|
||||||
MSG.registroYaExiste = There is already a record with this information
|
MSG.registroYaExiste = There is already a record with this information
|
||||||
|
MSG.semFiltro = No filters selected
|
||||||
MSG.suscribirOK = Record saved successfully.
|
MSG.suscribirOK = Record saved successfully.
|
||||||
abastoService.msg.semOrigem = Supply Origin, not found
|
abastoService.msg.semOrigem = Supply Origin, not found
|
||||||
aberturaTurnoRecaudacionController.btnInicioTurno = Start Shift
|
aberturaTurnoRecaudacionController.btnInicioTurno = Start Shift
|
||||||
|
@ -4786,8 +4787,8 @@ editarEmpresaController.lblURL.value = url
|
||||||
editarEmpresaController.lblUrlApiMercadoPago.value = URLAPI
|
editarEmpresaController.lblUrlApiMercadoPago.value = URLAPI
|
||||||
editarEmpresaController.lblUrlApiPMArtesp.value = URLAPI
|
editarEmpresaController.lblUrlApiPMArtesp.value = URLAPI
|
||||||
editarEmpresaController.lblUrlApiPMArtesp.value.ajuda = API URL must contain the data {RE}, {EMBARQUE} and {DISEMBARQUE}, which will be replaced when free validation by totalbus.
|
editarEmpresaController.lblUrlApiPMArtesp.value.ajuda = API URL must contain the data {RE}, {EMBARQUE} and {DISEMBARQUE}, which will be replaced when free validation by totalbus.
|
||||||
editarEmpresaController.lblUrlNequi.value = URL
|
|
||||||
editarEmpresaController.lblUrlAuthNequi.value = URL AUTH
|
editarEmpresaController.lblUrlAuthNequi.value = URL AUTH
|
||||||
|
editarEmpresaController.lblUrlNequi.value = URL
|
||||||
editarEmpresaController.lblUserIdMercadoPago.value = User ID
|
editarEmpresaController.lblUserIdMercadoPago.value = User ID
|
||||||
editarEmpresaController.lblUsername.value = Username
|
editarEmpresaController.lblUsername.value = Username
|
||||||
editarEmpresaController.lhUFInscEstadual.label = UF
|
editarEmpresaController.lhUFInscEstadual.label = UF
|
||||||
|
|
|
@ -70,6 +70,7 @@ MSG.ningunRegistro = No se encontró ningún registro con esta búsqueda
|
||||||
MSG.ningunRegistroRelatorio = No se encontró ningún registro para emitir el reporte
|
MSG.ningunRegistroRelatorio = No se encontró ningún registro para emitir el reporte
|
||||||
MSG.noEditabled = No es posible eliminar o editar estos datos.
|
MSG.noEditabled = No es posible eliminar o editar estos datos.
|
||||||
MSG.registroYaExiste = Ya existe un registro con esta información
|
MSG.registroYaExiste = Ya existe un registro con esta información
|
||||||
|
MSG.semFiltro = No hay filtros seleccionados
|
||||||
MSG.suscribirOK = Registro guardado exitosamente.
|
MSG.suscribirOK = Registro guardado exitosamente.
|
||||||
abastoService.msg.semOrigem = Abasto Origem, não encontrado
|
abastoService.msg.semOrigem = Abasto Origem, não encontrado
|
||||||
aberturaTurnoRecaudacionController.btnInicioTurno = Início turno
|
aberturaTurnoRecaudacionController.btnInicioTurno = Início turno
|
||||||
|
@ -4782,8 +4783,8 @@ editarEmpresaController.lblURL.value = URL
|
||||||
editarEmpresaController.lblUrlApiMercadoPago.value = Url API
|
editarEmpresaController.lblUrlApiMercadoPago.value = Url API
|
||||||
editarEmpresaController.lblUrlApiPMArtesp.value = URL API
|
editarEmpresaController.lblUrlApiPMArtesp.value = URL API
|
||||||
editarEmpresaController.lblUrlApiPMArtesp.value.ajuda = URL API deve conter os dados {RE}, {EMBARQUE} e {DESEMBARQUE}, que serão subtituidos no momento da validação de gratuidade pelo totalbus.
|
editarEmpresaController.lblUrlApiPMArtesp.value.ajuda = URL API deve conter os dados {RE}, {EMBARQUE} e {DESEMBARQUE}, que serão subtituidos no momento da validação de gratuidade pelo totalbus.
|
||||||
editarEmpresaController.lblUrlNequi.value = URL
|
|
||||||
editarEmpresaController.lblUrlAuthNequi.value = URL AUTH
|
editarEmpresaController.lblUrlAuthNequi.value = URL AUTH
|
||||||
|
editarEmpresaController.lblUrlNequi.value = URL
|
||||||
editarEmpresaController.lblUserIdMercadoPago.value = User ID
|
editarEmpresaController.lblUserIdMercadoPago.value = User ID
|
||||||
editarEmpresaController.lblUsername.value = Username
|
editarEmpresaController.lblUsername.value = Username
|
||||||
editarEmpresaController.lhUFInscEstadual.label = UF
|
editarEmpresaController.lhUFInscEstadual.label = UF
|
||||||
|
|
|
@ -70,6 +70,7 @@ MSG.ningunRegistro = No se encontró ningún registro con esta búsqueda
|
||||||
MSG.ningunRegistroRelatorio = No se encontró ningún registro para emitir el reporte
|
MSG.ningunRegistroRelatorio = No se encontró ningún registro para emitir el reporte
|
||||||
MSG.noEditabled = No es posible eliminar o editar estos datos.
|
MSG.noEditabled = No es posible eliminar o editar estos datos.
|
||||||
MSG.registroYaExiste = Ya existe un registro con esta información
|
MSG.registroYaExiste = Ya existe un registro con esta información
|
||||||
|
MSG.semFiltro = No hay filtros seleccionados
|
||||||
MSG.suscribirOK = Registro guardado exitosamente.
|
MSG.suscribirOK = Registro guardado exitosamente.
|
||||||
abastoService.msg.semOrigem = Abasto Origem, não encontrado
|
abastoService.msg.semOrigem = Abasto Origem, não encontrado
|
||||||
aberturaTurnoRecaudacionController.btnInicioTurno = Início turno
|
aberturaTurnoRecaudacionController.btnInicioTurno = Início turno
|
||||||
|
@ -4782,8 +4783,8 @@ editarEmpresaController.lblURL.value = URL
|
||||||
editarEmpresaController.lblUrlApiMercadoPago.value = Url API
|
editarEmpresaController.lblUrlApiMercadoPago.value = Url API
|
||||||
editarEmpresaController.lblUrlApiPMArtesp.value = URL API
|
editarEmpresaController.lblUrlApiPMArtesp.value = URL API
|
||||||
editarEmpresaController.lblUrlApiPMArtesp.value.ajuda = URL API deve conter os dados {RE}, {EMBARQUE} e {DESEMBARQUE}, que serão subtituidos no momento da validação de gratuidade pelo totalbus.
|
editarEmpresaController.lblUrlApiPMArtesp.value.ajuda = URL API deve conter os dados {RE}, {EMBARQUE} e {DESEMBARQUE}, que serão subtituidos no momento da validação de gratuidade pelo totalbus.
|
||||||
editarEmpresaController.lblUrlNequi.value = URL
|
|
||||||
editarEmpresaController.lblUrlAuthNequi.value = URL AUTH
|
editarEmpresaController.lblUrlAuthNequi.value = URL AUTH
|
||||||
|
editarEmpresaController.lblUrlNequi.value = URL
|
||||||
editarEmpresaController.lblUserIdMercadoPago.value = User ID
|
editarEmpresaController.lblUserIdMercadoPago.value = User ID
|
||||||
editarEmpresaController.lblUsername.value = Username
|
editarEmpresaController.lblUsername.value = Username
|
||||||
editarEmpresaController.lhUFInscEstadual.label = UF
|
editarEmpresaController.lhUFInscEstadual.label = UF
|
||||||
|
|
|
@ -70,6 +70,7 @@ MSG.ningunRegistro = Aucun enregistrement n'a été trouvé avec cette recherche
|
||||||
MSG.ningunRegistroRelatorio = Aucun enregistrement n'a été trouvé pour émettre le rapport
|
MSG.ningunRegistroRelatorio = Aucun enregistrement n'a été trouvé pour émettre le rapport
|
||||||
MSG.noEditabled = Il n'est pas possible de supprimer ou de modifier ces données.
|
MSG.noEditabled = Il n'est pas possible de supprimer ou de modifier ces données.
|
||||||
MSG.registroYaExiste = Il existe déjà un enregistrement avec cette information
|
MSG.registroYaExiste = Il existe déjà un enregistrement avec cette information
|
||||||
|
MSG.semFiltro = Aucun filtre sélectionné
|
||||||
MSG.suscribirOK = Enregistrement enregistré avec succès.
|
MSG.suscribirOK = Enregistrement enregistré avec succès.
|
||||||
abastoService.msg.semOrigem = Origine de l'approvisionnement, introuvable
|
abastoService.msg.semOrigem = Origine de l'approvisionnement, introuvable
|
||||||
aberturaTurnoRecaudacionController.btnInicioTurno = Démarrer le quart de travail
|
aberturaTurnoRecaudacionController.btnInicioTurno = Démarrer le quart de travail
|
||||||
|
@ -4784,8 +4785,8 @@ editarEmpresaController.lblURL.value = URL
|
||||||
editarEmpresaController.lblUrlApiMercadoPago.value = URLAPI
|
editarEmpresaController.lblUrlApiMercadoPago.value = URLAPI
|
||||||
editarEmpresaController.lblUrlApiPMArtesp.value = URLAPI
|
editarEmpresaController.lblUrlApiPMArtesp.value = URLAPI
|
||||||
editarEmpresaController.lblUrlApiPMArtesp.value.ajuda = URL API doit contenir les données {RE}, {EMBARQUE} et {DISEMBARQUE}, qui seront remplacées lors de la validation gratuite par totalbus.
|
editarEmpresaController.lblUrlApiPMArtesp.value.ajuda = URL API doit contenir les données {RE}, {EMBARQUE} et {DISEMBARQUE}, qui seront remplacées lors de la validation gratuite par totalbus.
|
||||||
editarEmpresaController.lblUrlNequi.value = URL
|
|
||||||
editarEmpresaController.lblUrlAuthNequi.value = URL AUTH
|
editarEmpresaController.lblUrlAuthNequi.value = URL AUTH
|
||||||
|
editarEmpresaController.lblUrlNequi.value = URL
|
||||||
editarEmpresaController.lblUserIdMercadoPago.value = ID utilisateur
|
editarEmpresaController.lblUserIdMercadoPago.value = ID utilisateur
|
||||||
editarEmpresaController.lblUsername.value = Username
|
editarEmpresaController.lblUsername.value = Username
|
||||||
editarEmpresaController.lhUFInscEstadual.label = UF
|
editarEmpresaController.lhUFInscEstadual.label = UF
|
||||||
|
|
|
@ -70,6 +70,7 @@ MSG.ningunRegistro = Não foi encontrado nenhum registro com essa pesquisa.
|
||||||
MSG.ningunRegistroRelatorio = Não foi encontrado nenhum registro para emissão do relatório
|
MSG.ningunRegistroRelatorio = Não foi encontrado nenhum registro para emissão do relatório
|
||||||
MSG.noEditabled = Não é possível Eliminar ou editar estes dados.
|
MSG.noEditabled = Não é possível Eliminar ou editar estes dados.
|
||||||
MSG.registroYaExiste = Já existe um registro com essa informação
|
MSG.registroYaExiste = Já existe um registro com essa informação
|
||||||
|
MSG.semFiltro = Nenhum filtro selecionado
|
||||||
MSG.suscribirOK = Registro gravado com sucesso.
|
MSG.suscribirOK = Registro gravado com sucesso.
|
||||||
abastoService.msg.semOrigem = Abasto Origem, não encontrado
|
abastoService.msg.semOrigem = Abasto Origem, não encontrado
|
||||||
aberturaTurnoRecaudacionController.btnInicioTurno = Início Turno
|
aberturaTurnoRecaudacionController.btnInicioTurno = Início Turno
|
||||||
|
@ -4781,8 +4782,8 @@ editarEmpresaController.lblURL.value = URL
|
||||||
editarEmpresaController.lblUrlApiMercadoPago.value = Url API
|
editarEmpresaController.lblUrlApiMercadoPago.value = Url API
|
||||||
editarEmpresaController.lblUrlApiPMArtesp.value = URL API
|
editarEmpresaController.lblUrlApiPMArtesp.value = URL API
|
||||||
editarEmpresaController.lblUrlApiPMArtesp.value.ajuda = URL API deve conter os dados {RE}, {EMBARQUE} e {DESEMBARQUE}, que serão subtituidos no momento da validação de gratuidade pelo totalbus.
|
editarEmpresaController.lblUrlApiPMArtesp.value.ajuda = URL API deve conter os dados {RE}, {EMBARQUE} e {DESEMBARQUE}, que serão subtituidos no momento da validação de gratuidade pelo totalbus.
|
||||||
editarEmpresaController.lblUrlNequi.value = URL
|
|
||||||
editarEmpresaController.lblUrlAuthNequi.value = URL AUTH
|
editarEmpresaController.lblUrlAuthNequi.value = URL AUTH
|
||||||
|
editarEmpresaController.lblUrlNequi.value = URL
|
||||||
editarEmpresaController.lblUserIdMercadoPago.value = User ID
|
editarEmpresaController.lblUserIdMercadoPago.value = User ID
|
||||||
editarEmpresaController.lblUsername.value = Username
|
editarEmpresaController.lblUsername.value = Username
|
||||||
editarEmpresaController.lhUFInscEstadual.label = UF
|
editarEmpresaController.lhUFInscEstadual.label = UF
|
||||||
|
@ -7426,8 +7427,8 @@ expresosController.lbl.btnCargarCumplimientoServicio = Anexar Documento
|
||||||
expresosController.lbl.cargarFluec = Anexar FLUEC
|
expresosController.lbl.cargarFluec = Anexar FLUEC
|
||||||
expresosController.lbl.cargarPlaca = Anexar Placa
|
expresosController.lbl.cargarPlaca = Anexar Placa
|
||||||
expresosController.lbl.estadoAceptado = Aceito
|
expresosController.lbl.estadoAceptado = Aceito
|
||||||
expresosController.lbl.estadoEnviado = Enviado
|
|
||||||
expresosController.lbl.estadoCumplido = Preenchido
|
expresosController.lbl.estadoCumplido = Preenchido
|
||||||
|
expresosController.lbl.estadoEnviado = Enviado
|
||||||
expresosController.lbl.estadoRechazado = Recusado
|
expresosController.lbl.estadoRechazado = Recusado
|
||||||
expresosController.lbl.estadoSolicitado = Obrigatório
|
expresosController.lbl.estadoSolicitado = Obrigatório
|
||||||
expresosController.lbl.idaVuelta = Ida
|
expresosController.lbl.idaVuelta = Ida
|
||||||
|
|
Loading…
Reference in New Issue