예제 #1
0
        public dynamic GetList(string _search, long nd, int rows, int?page, string sidx, string sord, string filters = "")
        {
            // Construct where statement
            string strWhere = GeneralFunction.ConstructWhere(filters);
            string filter   = null;

            GeneralFunction.ConstructWhereInLinq(strWhere, out filter);
            if (filter == "")
            {
                filter = "true";
            }

            // Get Data
            var q = _cashMutationService.GetQueryable().Include("CashBank");

            var query = (from model in q
                         select new
            {
                model.Id,
                model.CashBankId,
                cashbank = model.CashBank.Name,
                amount = (model.Status == Core.Constants.Constant.MutationStatus.Addition) ? model.Amount : model.Amount * (-1),
                model.SourceDocumentType,
                model.SourceDocumentId,
                model.SourceDocumentCode,
                model.MutationDate,
                model.CreatedAt,
            }).Where(filter).OrderBy(sidx + " " + sord);              //.ToList();

            var list = query.AsEnumerable();

            var pageIndex    = Convert.ToInt32(page) - 1;
            var pageSize     = rows;
            var totalRecords = query.Count();
            var totalPages   = (int)Math.Ceiling((float)totalRecords / (float)pageSize);

            // default last page
            if (totalPages > 0)
            {
                if (!page.HasValue)
                {
                    pageIndex = totalPages - 1;
                    page      = totalPages;
                }
            }

            list = list.Skip(pageIndex * pageSize).Take(pageSize);

            return(Json(new
            {
                total = totalPages,
                page = page,
                records = totalRecords,
                rows = (
                    from model in list
                    select new
                {
                    id = model.Id,
                    cell = new object[] {
                        model.Id,
                        model.CashBankId,
                        model.cashbank,
                        model.amount,
                        model.SourceDocumentType,
                        model.SourceDocumentId,
                        model.SourceDocumentCode,
                        model.MutationDate,
                        model.CreatedAt,
                    }
                }).ToArray()
            }, JsonRequestBehavior.AllowGet));
        }