//复核
        public ActionResult FHIndex()
        {
            int huf_id             = Convert.ToInt32(Request["huf_id"]);
            List <human_file> list = hhff.human_fileWhere(e => e.huf_id == huf_id);

            ViewBag.Users = uu.user();//用户表
            return(View(list));
        }
 //1.显示
 public ActionResult index()
 {
     //下拉框查询
     ViewBag.list1 = cffkBll.Xialakuangchaxun(); //一级机构表
     ViewBag.list4 = cmkBll.Xialakuangchaxun();  //职位分类表
     ViewBag.Users = uuBll.user();
     return(View());
 }
Пример #3
0
        //条件查询,变更显示
        public ActionResult BianGengDangexiugian()
        {
            int huf_id = Convert.ToInt32(Request["huf_id"]);

            ViewBag.Users = uu.user();//用户表
            List <human_file> list = hhff.human_fileWhere(e => e.huf_id == huf_id);

            return(View(list));
        }
Пример #4
0
        /// <summary>
        /// 2.人力资源登记显示
        /// </summary>
        /// <returns></returns>
        public ActionResult HumanIndex()
        {
            //1.下拉框查询
            ViewBag.list1   = cffkBll.Xialakuangchaxun();   //一级机构表
            ViewBag.XinChou = ssdd.salary_standardSelect(); //薪酬标准
            ViewBag.Users   = uuBll.user();                 //用户表
            //2.简历表条件查询赋值
            int res_id = Convert.ToInt32(Request["res_id"]);
            List <engage_resume> list = erBll.engage_resumeWhere(e => e.res_id == res_id);

            return(View(list));
        }
        //2.面试筛选
        public ActionResult MianshiShaixuan()
        {
            int ein_id = Convert.ToInt32(Request["ein_id"]);//面试id

            if (Request["ein_id"] != null)
            {
                List <engage_interview> list = eInvBll.engage_interviewSelectWhere(e => e.ein_id == ein_id); //面试表条件查询
                int aa = Convert.ToInt32(list[0].resume_id);
                ViewBag.listJianli  = erBll.engage_resumeWhere(e => e.res_id == aa);                         //简历表条件查询
                ViewBag.listMianshi = eInvBll.engage_interviewSelectWhere(e => e.ein_id == ein_id);          //面试表条件查询
                ViewBag.Users       = uuBll.user();
                return(View());
            }
            else
            {
                return(Content("<script>alert('请从面试筛选页面进入!');location.href='/interview_sift_list/IndexShaiXuan'</script>"));
            }
        }