invoiceninja/app/Models/Task.php

145 lines
2.9 KiB
PHP
Raw Normal View History

<?php
2019-05-11 13:32:07 +10:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 13:32:07 +10:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 13:32:07 +10:00
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Models;
use App\Utils\Traits\MakesHash;
use Illuminate\Database\Eloquent\SoftDeletes;
2020-10-29 13:24:12 +11:00
use Illuminate\Support\Carbon;
class Task extends BaseModel
{
use MakesHash;
use SoftDeletes;
2020-10-13 07:42:02 +11:00
use Filterable;
protected $fillable = [
'client_id',
'invoice_id',
2020-10-13 07:42:02 +11:00
'project_id',
2020-10-28 10:02:32 +11:00
'assigned_user_id',
'custom_value1',
'custom_value2',
2020-10-13 07:42:02 +11:00
'custom_value3',
'custom_value4',
'description',
'is_running',
'time_log',
2020-10-27 06:10:04 +11:00
'status_id',
'status_sort_order',
2020-10-27 13:27:38 +11:00
'invoice_documents',
2020-10-29 10:11:52 +11:00
'rate',
2020-10-29 20:40:13 +11:00
'number',
2020-12-15 08:52:14 +11:00
'is_date_based',
];
2020-07-23 13:55:11 +10:00
protected $touches = [];
public function getEntityType()
{
return self::class;
}
public function company()
{
return $this->belongsTo(Company::class);
}
2019-04-28 15:31:32 +10:00
public function documents()
{
return $this->morphMany(Document::class, 'documentable');
}
public function assigned_user()
{
return $this->belongsTo(User::class, 'assigned_user_id', 'id')->withTrashed();
}
public function user()
{
return $this->belongsTo(User::class);
}
public function client()
{
return $this->belongsTo(Client::class);
}
2020-10-13 07:42:02 +11:00
public function invoice()
{
return $this->belongsTo(Invoice::class);
}
public function project()
{
return $this->belongsTo(Project::class);
}
2020-10-29 13:24:12 +11:00
public function calcStartTime()
2020-10-29 13:24:12 +11:00
{
$parts = json_decode($this->time_log) ?: [];
if (count($parts)) {
2020-10-29 20:56:37 +11:00
return Carbon::createFromTimeStamp($parts[0][0])->timestamp;
2020-10-29 13:24:12 +11:00
} else {
2020-10-29 20:56:37 +11:00
return null;
2020-10-29 13:24:12 +11:00
}
}
public function getLastStartTime()
2020-10-29 13:24:12 +11:00
{
$parts = json_decode($this->time_log) ?: [];
if (count($parts)) {
$index = count($parts) - 1;
return $parts[$index][0];
} else {
return '';
}
}
public function calcDuration($start_time_cutoff = 0, $end_time_cutoff = 0)
2020-10-29 13:24:12 +11:00
{
$duration = 0;
$parts = json_decode($this->time_log) ?: [];
foreach ($parts as $part) {
$start_time = $part[0];
if (count($part) == 1 || ! $part[1]) {
$end_time = time();
} else {
$end_time = $part[1];
}
if ($start_time_cutoff) {
$start_time = max($start_time, $start_time_cutoff);
}
if ($end_time_cutoff) {
$end_time = min($end_time, $end_time_cutoff);
}
$duration += max($end_time - $start_time, 0);
}
return round($duration);
}
}