Пример #1
0
        public async Task <JsonResult> GridDataStocktaking(int objectId, DateTime carryoutDate, int shelfId, int placeId, int categoryId)
        {
            var output = await _taskAppService.GetStocktakingsByObjectAsync(objectId, carryoutDate, shelfId, GetPagedInput());

            return(Json(new { total = output.TotalCount, rows = output.Items }));
        }