PMCORE-3110

This commit is contained in:
Paula Quispe
2021-07-13 17:16:21 -04:00
parent 12760122a8
commit 97f67cda1e
5 changed files with 73 additions and 0 deletions

View File

@@ -79,6 +79,15 @@ class Inbox extends AbstractCases
$query->appUid($this->getCaseUid());
}
// Specific delegate date from
if (!empty($this->getDelegateFrom())) {
$query->delegateDateFrom($this->getDelegateFrom());
}
// Specific delegate date to
if (!empty($this->getDelegateTo())) {
$query->delegateDateTo($this->getDelegateTo());
}
return $query;
}