Exemplo n.º 1
0
        public ActionResult Search(string p_keysearch, int p_CurrentPage)
        {
            try
            {
                decimal _total_record = 0;
                string  p_to          = "";
                string  p_from        = CommonFuc.Get_From_To_Page(p_CurrentPage, ref p_to);
                if (p_keysearch == "" || p_keysearch == null)
                {
                    p_keysearch = "ALL";
                }
                SupplierBL          _bl  = new SupplierBL();
                List <SupplierInfo> _lst = _bl.Search(p_keysearch, ref _total_record, p_from, p_to);
                string htmlPaging        = NaviCommon.CommonFuc.Get_HtmlPaging <SupplierInfo>((int)_total_record, p_CurrentPage, "nhà cung cấp");


                ViewBag.Paging    = htmlPaging;
                ViewBag.List      = _lst;
                ViewBag.SumRecord = _total_record;

                return(PartialView("~/Areas/ModuleBaseData/Views/Supplier/_Partial_ListSupplier.cshtml"));
            }
            catch (Exception ex)
            {
                NaviCommon.Common.log.Error(ex.ToString());
                return(PartialView("~/Areas/ModuleBaseData/Views/Supplier/_Partial_ListSupplier.cshtml"));
            }
        }
Exemplo n.º 2
0
        // GET: Suppliers
        public ActionResult SupplierDisplay()
        {
            if (SessionData.CurrentUser == null)
            {
                return(Redirect("~/home/index"));
            }
            List <SupplierInfo> list = new List <SupplierInfo>();

            try
            {
                SupplierBL _bl = new SupplierBL();


                decimal _total_record = 0;
                list = _bl.Search("ALL", ref _total_record);


                string htmlPaging = NaviCommon.CommonFuc.Get_HtmlPaging <SupplierInfo>((int)_total_record, 1, "nhà cung cấp");
                ViewBag.Paging    = htmlPaging;
                ViewBag.List      = list;
                ViewBag.SumRecord = _total_record;
            }
            catch (Exception ex)
            {
                NaviCommon.Common.log.Error(ex.ToString());
            }
            return(View());
        }
Exemplo n.º 3
0
        public ActionResult Search(string p_keysearch, int p_CurrentPage)
        {
            try
            {
                decimal             _total_record = 0;
                string              p_to          = "";
                string              p_from        = CommonFuc.Get_From_To_Page(p_CurrentPage, ref p_to);
                SupplierBL          _bl           = new SupplierBL();
                List <SupplierInfo> _lst          = _bl.Search(p_keysearch, ref _total_record, p_from, p_to);
                string              htmlPaging    = NaviCommon.CommonFuc.Get_HtmlPaging <SupplierInfo>((int)_total_record, p_CurrentPage, "Thông tin chứng khoán");

                ViewBag.Paging    = htmlPaging;
                ViewBag.Obj       = _lst;
                ViewBag.SumRecord = _total_record;
                return(PartialView("_Partial_List"));
            }
            catch (Exception ex)
            {
                NaviCommon.Common.log.Error(ex.ToString());
                return(PartialView("_Partial_List"));
            }
        }
Exemplo n.º 4
0
        // GET: Suppliers
        public ActionResult SuppliersDisplay()
        {
            List <SupplierInfo> list = new List <SupplierInfo>();

            try
            {
                SupplierBL _bl = new SupplierBL();


                decimal _total_record = 0;
                list = _bl.Search("ALL", ref _total_record);


                string htmlPaging = NaviCommon.CommonFuc.Get_HtmlPaging <SupplierInfo>((int)_total_record, 1, "nhà cung cấp");
                ViewBag.Paging    = htmlPaging;
                ViewBag.List      = list;
                ViewBag.SumRecord = _total_record;
            }
            catch (Exception ex)
            {
                NaviCommon.Common.log.Error(ex.ToString());
            }
            return(View());
        }