Added deprecated attribute datee in class Task
This commit is contained in:
parent
b6d77c0c58
commit
e5ec06ab53
@ -84,6 +84,11 @@ class Task extends CommonObjectLine
|
|||||||
public $date_start;
|
public $date_start;
|
||||||
public $date_end;
|
public $date_end;
|
||||||
public $progress;
|
public $progress;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated use $date_end instead
|
||||||
|
*/
|
||||||
|
public $datee;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var int ID
|
* @var int ID
|
||||||
@ -2304,7 +2309,7 @@ class Task extends CommonObjectLine
|
|||||||
|
|
||||||
$now = dol_now();
|
$now = dol_now();
|
||||||
|
|
||||||
$datetouse = ($this->date_end > 0) ? $this->date_end : 0;
|
$datetouse = ($this->date_end > 0) ? $this->date_end : ((isset($this->datee) && $this->datee > 0) ? $this->datee : 0);
|
||||||
|
|
||||||
return ($datetouse > 0 && ($datetouse < ($now - $conf->projet->task->warning_delay)));
|
return ($datetouse > 0 && ($datetouse < ($now - $conf->projet->task->warning_delay)));
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user