]> wagnertech.de Git - timetracker.git/blobdiff - mobile/users.php
Expense Item description - Follow-up to pull request #22 (#23)
[timetracker.git] / mobile / users.php
index 71caa6ea6a6fa9ff51f34c44c8876cda202a70dd..b3d8ae7e8cab7f1749afe46234b22a3abc166f29 100644 (file)
@@ -29,6 +29,7 @@
 require_once('../initialize.php');
 import('form.Form');
 import('ttTeamHelper');
+import('ttTimeHelper');
 
 // Access check.
 if (!ttAccessCheck(right_data_entry)) {
@@ -43,6 +44,11 @@ if($user->canManageTeam()) {
   $inactive_users = ttTeamHelper::getInactiveUsers($user->team_id, true);
 }
 
+// Check each active user if they have an uncompleted time entry.
+foreach ($active_users as $key => $user) {
+  $active_users[$key]['has_uncompleted_entry'] = (bool) ttTimeHelper::getUncompleted($user['id']);
+}
+
 $smarty->assign('active_users', $active_users);
 $smarty->assign('inactive_users', $inactive_users);
 $smarty->assign('can_delete_manager', $can_delete_manager);