diff options
author | Sashi20 | 2024-06-10 18:59:07 +0530 |
---|---|---|
committer | Sashi20 | 2024-06-10 18:59:07 +0530 |
commit | f5bca43a0fa8f9918ed77a2ee0884c51becc940f (patch) | |
tree | 813f3c176df36199b206320c26c2c1091bc7d3ba | |
parent | b89d244dcdfe9099afe7897abb270c53474720c8 (diff) | |
download | cfd_research_migration-f5bca43a0fa8f9918ed77a2ee0884c51becc940f.tar.gz cfd_research_migration-f5bca43a0fa8f9918ed77a2ee0884c51becc940f.tar.bz2 cfd_research_migration-f5bca43a0fa8f9918ed77a2ee0884c51becc940f.zip |
Display approval date of proposals in progress in descending order
-rwxr-xr-x | cfd_research_migration_details.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cfd_research_migration_details.inc b/cfd_research_migration_details.inc index cce2892..3976371 100755 --- a/cfd_research_migration_details.inc +++ b/cfd_research_migration_details.inc @@ -66,6 +66,7 @@ function cfd_research_migration_progress_all() $query->fields('research_migration_proposal'); $query->condition('approval_status', 1); $query->condition('is_completed', 0); + $query->orderBy('approval_date', DESC); $result = $query->execute(); if ($result->rowCount() == 0) { |