HOR-685: 0019635: Any user can search all cases without having PM_ALLCASES in their profile when simplified UX is used

.
This commit is contained in:
mcuiza
2016-04-14 18:31:05 -04:00
parent c674bbc64d
commit 7c09755c7a

View File

@@ -458,6 +458,15 @@ class Home extends Controller
/*----------------------------------********---------------------------------*/
}
if(empty($cases) && $type == 'search') {
$case = new \ProcessMaker\BusinessModel\Cases();
$cases = $case->getList($dataList);
foreach ($cases['data'] as &$value) {
$value = array_change_key_case($value, CASE_UPPER);
}
}
if(!isset($cases['totalCount'])){
$cases['totalCount'] = $cases['total'];
}