Exemplo n.º 1
0
        public void ConsultarCombosEmpleadoCuchillo()
        {
            clsDEmpleado = new clsDEmpleado();
            clsDCuchillo = new clsDCuchillo();
            lsUsuario    = User.Identity.Name.Split('_');
            var linea = clsDEmpleado.ConsultaEmpleado(lsUsuario[1]).FirstOrDefault();

            if (linea != null)
            {
                var Empleados = clsDEmpleado.ConsultaEmpleadosFiltro(linea.CODIGOLINEA, null, null);
                ViewBag.Empleados = Empleados;
                ViewBag.Linea     = linea.LINEA;
                ViewBag.CodLinea  = linea.CODIGOLINEA;
            }
            var poCuchillosBlancos = clsDCuchillo.ConsultarCuchillos(new CUCHILLO {
                ColorCuchillo = clsAtributos.CodigoColorCuchilloBlanco
            });
            var poCuchillosRojos = clsDCuchillo.ConsultarCuchillos(new CUCHILLO {
                ColorCuchillo = clsAtributos.CodigoColorCuchilloRojo
            });
            var poCuchillosNegros = clsDCuchillo.ConsultarCuchillos(new CUCHILLO {
                ColorCuchillo = clsAtributos.CodigoColorCuchilloNegro
            });

            ViewBag.CuchillosBlancos = poCuchillosBlancos;
            ViewBag.CuchillosRojos   = poCuchillosRojos;
            ViewBag.CuchillosNegros  = poCuchillosNegros;
        }
Exemplo n.º 2
0
 public JsonResult ConsultaNumeroCuchillo(string dsColor)
 {
     try
     {
         clsDCuchillo = new clsDCuchillo();
         var poCuchillos = clsDCuchillo.ConsultarCuchillos(new CUCHILLO {
             ColorCuchillo = dsColor
         });
         return(Json(poCuchillos, JsonRequestBehavior.AllowGet));
     }
     catch (Exception ex)
     {
         Response.StatusCode = (int)HttpStatusCode.InternalServerError;
         lsUsuario           = User.Identity.Name.Split('_');
         clsDError           = new clsDError();
         clsDError.GrabarError(new ERROR
         {
             Controlador     = this.ControllerContext.RouteData.Values["controller"].ToString(),
             Mensaje         = ex.Message,
             Observacion     = "Metodo: " + this.ControllerContext.RouteData.Values["action"].ToString(),
             FechaIngreso    = DateTime.Now,
             TerminalIngreso = Request.UserHostAddress,
             UsuarioIngreso  = lsUsuario[0]
         });
         return(Json(ex.Message, JsonRequestBehavior.AllowGet));
     }
 }
Exemplo n.º 3
0
        // GET: Asistencia/Cuchillo
        public ActionResult CuchilloPartial(string dsColor)
        {
            try
            {
                clsDCuchillo = new clsDCuchillo();

                var model = clsDCuchillo.ConsultarCuchillos(new CUCHILLO {
                    ColorCuchillo = dsColor
                });
                return(PartialView(model));
            }
            catch (DbEntityValidationException e)
            {
                Response.StatusCode = (int)HttpStatusCode.InternalServerError;
                clsDError           = new clsDError();
                lsUsuario           = User.Identity.Name.Split('_');
                string Mensaje = clsDError.ControlError(lsUsuario[0], Request.UserHostAddress, this.ControllerContext.RouteData.Values["controller"].ToString(),
                                                        "Metodo: " + this.ControllerContext.RouteData.Values["action"].ToString(), null, e);
                return(Json(Mensaje, JsonRequestBehavior.AllowGet));
            }
            catch (Exception ex)
            {
                Response.StatusCode = (int)HttpStatusCode.InternalServerError;
                clsDError           = new clsDError();
                lsUsuario           = User.Identity.Name.Split('_');
                string Mensaje = clsDError.ControlError(lsUsuario[0], Request.UserHostAddress, this.ControllerContext.RouteData.Values["controller"].ToString(),
                                                        "Metodo: " + this.ControllerContext.RouteData.Values["action"].ToString(), ex, null);
                return(Json(Mensaje, JsonRequestBehavior.AllowGet));
            }
        }