gleimar 2012-08-28 15:13:14 +00:00
parent 5d6a73688e
commit 690e0e599b
1 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ import com.rjconsultores.ventaboletos.entidad.Ruta;
import com.rjconsultores.ventaboletos.exception.BusinessException;
import com.rjconsultores.ventaboletos.service.OrgaoConcedenteService;
import com.rjconsultores.ventaboletos.service.RutaService;
import com.rjconsultores.ventaboletos.service.SeguroService;
import com.rjconsultores.ventaboletos.service.SeguroKmService;
import com.rjconsultores.ventaboletos.service.TarifaOficialService;
import com.rjconsultores.ventaboletos.service.TaxaEmbarqueService;
import com.rjconsultores.ventaboletos.service.VigenciaTarifaService;
@ -50,7 +50,7 @@ public class GenerarTarifaOrgaoController extends MyGenericForwardComposer {
@Autowired
private TaxaEmbarqueService taxaEmbarqueService;
@Autowired
private SeguroService seguroService;
private SeguroKmService seguroKmService;
private List<Ruta> lsRuta;
private List<OrgaoConcedente> lsOrgaoConcedente;
private Combobox cmbRuta;
@ -94,7 +94,7 @@ public class GenerarTarifaOrgaoController extends MyGenericForwardComposer {
}
if (chkSeguro.isChecked()) {
seguroService.atualizarSeguroPorKm(rutaId, orgaoConcedenteId);
seguroKmService.atualizarSeguroPorKm(rutaId, orgaoConcedenteId);
}
Messagebox.show(Labels.getLabel("generarTarifaOrgaoController.MSG.suscribirOK"),