mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 01:52:22 +03:00
Order the records by update datetime to avoid them missing in the UI
This commit is contained in:
parent
243a0467b0
commit
890e3ac4d9
4 changed files with 4 additions and 4 deletions
|
@ -92,7 +92,7 @@ class Admins extends EA_Controller {
|
|||
|
||||
$keyword = request('keyword', '');
|
||||
|
||||
$order_by = 'first_name ASC, last_name ASC, email ASC';
|
||||
$order_by = 'update_datetime DESC';
|
||||
|
||||
$limit = request('limit', 1000);
|
||||
|
||||
|
|
|
@ -125,7 +125,7 @@ class Customers extends EA_Controller {
|
|||
|
||||
$keyword = request('keyword', '');
|
||||
|
||||
$order_by = 'first_name ASC, last_name ASC, email ASC';
|
||||
$order_by = 'update_datetime DESC';
|
||||
|
||||
$limit = request('limit', 1000);
|
||||
|
||||
|
|
|
@ -106,7 +106,7 @@ class Providers extends EA_Controller {
|
|||
|
||||
$keyword = request('keyword', '');
|
||||
|
||||
$order_by = 'first_name ASC, last_name ASC, email ASC';
|
||||
$order_by = 'update_datetime DESC';
|
||||
|
||||
$limit = request('limit', 1000);
|
||||
|
||||
|
|
|
@ -106,7 +106,7 @@ class Secretaries extends EA_Controller {
|
|||
|
||||
$keyword = request('keyword', '');
|
||||
|
||||
$order_by = 'first_name ASC, last_name ASC, email ASC';
|
||||
$order_by = 'update_datetime DESC';
|
||||
|
||||
$limit = request('limit', 1000);
|
||||
|
||||
|
|
Loading…
Reference in a new issue