public ActionResult Modificar(decimal Idempleado = 0, string IdRubro = "")
        {
            try
            {
                cargar_combos();
                int IdEmpresa = Convert.ToInt32(SessionFixed.IdEmpresa);

                ro_empleado_x_rubro_acumulado_Info model = bus_rubro_acumulados.get_info(IdEmpresa, Idempleado, IdRubro);

                model.IdTransaccionSession = Convert.ToDecimal(SessionFixed.IdTransaccionSessionActual);
                model.lst_empleado_x_rubro_acumulado_detalle = bus_rubro_acumulados_detalle.get_list(IdEmpresa, Idempleado, IdRubro);
                ListaDetalle.set_list(model.lst_empleado_x_rubro_acumulado_detalle, model.IdTransaccionSession);

                return(View(model));
            }
            catch (Exception)
            {
                throw;
            }
        }
 public ActionResult Anular(decimal Idempleado = 0, string IdRubro = "")
 {
     try
     {
         cargar_combos();
         int IdEmpresa = Convert.ToInt32(SessionFixed.IdEmpresa);
         return(View(bus_rubro_acumulados.get_info(IdEmpresa, Idempleado, IdRubro)));
     }
     catch (Exception)
     {
         throw;
     }
 }