Added check for purchase date

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2024-07-24 20:13:11 +01:00
parent 63f0b5279d
commit adf58a06da

View file

@ -158,6 +158,7 @@ class Depreciable extends SnipeModel
public function time_until_depreciated()
{
if ($this->depreciated_date()) {
// @link http://www.php.net/manual/en/class.datetime.php
$d1 = new \DateTime();
$d2 = $this->depreciated_date();
@ -170,6 +171,8 @@ class Depreciable extends SnipeModel
return new \DateInterval('PT0S'); //null interval (zero seconds from now)
}
}
return false;
}
public function depreciated_date()
{