BUG 9103 Don't work event range of tasks SOLVED

- I add functionality to the event range of tasks
This commit is contained in:
Brayan Osmar Pereyra Suxo
2012-07-23 19:00:05 -04:00
parent e5951d1fdf
commit 57fce0738f

View File

@@ -34,13 +34,7 @@ class Event extends BaseEvent {
* @var string * @var string
*/ */
protected $evn_description = ''; protected $evn_description = '';
/**
* This value the Event id select
* @var string
*/
protected $eventsSelect = array();
/** /**
* Get the evn_description column value. * Get the evn_description column value.
* @return string * @return string
@@ -635,7 +629,8 @@ class Event extends BaseEvent {
} }
foreach($aRows as $aData){ foreach($aRows as $aData){
// if the events has a condition // if the events has a condition
if( trim($aData['EVN_CONDITIONS']) != '' ) { if( trim($aData['EVN_CONDITIONS']) != '' ) {
G::LoadClass('case');
$oCase = new Cases(); $oCase = new Cases();
$aFields = $oCase->loadCase($APP_UID); $aFields = $oCase->loadCase($APP_UID);