filter by task title and order by lastModified, dueDate, status, process and task
This commit is contained in:
@@ -24,5 +24,4 @@ class Application extends Model
|
||||
{
|
||||
return $this->hasOne(User::class, 'APP_CUR_USER', 'USR_UID');
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -17,7 +17,6 @@ class Process extends Model
|
||||
// Our custom timestamp columns
|
||||
const CREATED_AT = 'PRO_CREATE_DATE';
|
||||
const UPDATED_AT = 'PRO_UPDATE_DATE';
|
||||
|
||||
/**
|
||||
* Retrieve all applications that belong to this process
|
||||
*/
|
||||
@@ -26,7 +25,6 @@ class Process extends Model
|
||||
return $this->hasMany(Application::class, 'PRO_ID', 'PRO_ID');
|
||||
}
|
||||
|
||||
|
||||
public function tasks()
|
||||
{
|
||||
return $this->hasMany(Task::class, 'PRO_UID', 'PRO_UID');
|
||||
|
||||
@@ -17,6 +17,5 @@ class User extends Model
|
||||
public function delegations()
|
||||
{
|
||||
return $this->hasMany(Delegation::class, 'USR_ID', 'USR_ID');
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user