1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Models/Task.php

155 lines
3.2 KiB
PHP
Raw Normal View History

<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 05:32:07 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2019-05-11 05:32:07 +02:00
*/
namespace App\Models;
use App\Utils\Traits\MakesHash;
use Illuminate\Database\Eloquent\SoftDeletes;
2020-10-29 03:24:12 +01:00
use Illuminate\Support\Carbon;
class Task extends BaseModel
{
use MakesHash;
use SoftDeletes;
2020-10-12 22:42:02 +02:00
use Filterable;
protected $fillable = [
'client_id',
'invoice_id',
2020-10-12 22:42:02 +02:00
'project_id',
2020-10-28 00:02:32 +01:00
'assigned_user_id',
'custom_value1',
'custom_value2',
2020-10-12 22:42:02 +02:00
'custom_value3',
'custom_value4',
'description',
'is_running',
'time_log',
2020-10-26 20:10:04 +01:00
'status_id',
2021-01-06 00:36:20 +01:00
'status_sort_order', //deprecated
2020-10-27 03:27:38 +01:00
'invoice_documents',
2020-10-29 00:11:52 +01:00
'rate',
2020-10-29 10:40:13 +01:00
'number',
2020-12-14 22:52:14 +01:00
'is_date_based',
2021-01-06 00:36:20 +01:00
'status_order',
];
2020-07-23 05:55:11 +02:00
protected $touches = [];
public function getEntityType()
{
return self::class;
}
public function company()
{
return $this->belongsTo(Company::class);
}
2019-04-28 07:31:32 +02: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)->withTrashed();
}
public function client()
{
return $this->belongsTo(Client::class);
}
2020-10-12 22:42:02 +02:00
public function status()
{
return $this->belongsTo(TaskStatus::class);
}
2020-10-12 22:42:02 +02:00
public function invoice()
{
return $this->belongsTo(Invoice::class);
}
public function project()
{
return $this->belongsTo(Project::class);
}
2020-10-29 03:24:12 +01:00
public function calcStartTime()
2020-10-29 03:24:12 +01:00
{
$parts = json_decode($this->time_log) ?: [];
if (count($parts)) {
2020-10-29 10:56:37 +01:00
return Carbon::createFromTimeStamp($parts[0][0])->timestamp;
2020-10-29 03:24:12 +01:00
} else {
2020-10-29 10:56:37 +01:00
return null;
2020-10-29 03:24:12 +01:00
}
}
public function getLastStartTime()
2020-10-29 03:24:12 +01: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 03:24:12 +01: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);
}
2022-04-06 02:38:01 +02:00
public function translate_entity()
{
return ctrans('texts.task');
}
}