#2480 Sales Reports

This commit is contained in:
diashalabi 2021-10-01 12:27:30 +03:00
parent d9f4a07b07
commit 10c0ad2361
3 changed files with 0 additions and 4 deletions

View File

@ -1,6 +1,5 @@
<?php namespace Visiosoft\AdvsModule\Adv\Event; <?php namespace Visiosoft\AdvsModule\Adv\Event;
class PriceChange class PriceChange
{ {
public function __construct($request) public function __construct($request)

View File

@ -8,7 +8,6 @@ $(document).ready( function () {
return json.data; return json.data;
} }
}, },
processing: true, processing: true,
serverSide: true, serverSide: true,

View File

@ -211,8 +211,6 @@ class CategoryRepository extends EntryRepository implements CategoryRepositoryIn
$page = $start ? $start / $limit + 1 : 1; $page = $start ? $start / $limit + 1 : 1;
$categories = $categories->paginate($limit, ['*'], 'page', $page); $categories = $categories->paginate($limit, ['*'], 'page', $page);
$categories->recordsTotal = $categories->total();
$categories->recordsFiltered = $categories->total();
return $categories; return $categories;
} }