HOR-848: Contadores negativos al aplicar un 'delete cases'

This commit is contained in:
mcuiza
2016-04-25 16:01:14 -04:00
parent 0f7b71e501
commit f16bff05a2
2 changed files with 3 additions and 3 deletions

View File

@@ -1095,7 +1095,7 @@ class Process extends BaseProcess
$oRuleSet->setFetchmode( ResultSet::FETCHMODE_ASSOC );
while($oRuleSet->next()) {
$row = $oRuleSet->getRow();
if(isset($row['USR_UID'])) {
if(isset($row['USR_UID']) && $row['USR_UID'] != '' ) {
$usersArray[$row['USR_UID']] = $row['USR_UID'];
}
$oCase->deleteDelegation($row['APP_UID']);