2018-10-15 23:40:34 +11:00
|
|
|
<?php
|
2019-05-11 13:32:07 +10:00
|
|
|
/**
|
2020-09-06 19:38:10 +10:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 13:32:07 +10:00
|
|
|
*
|
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
|
*
|
2023-01-29 09:21:40 +11:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 13:32:07 +10:00
|
|
|
*
|
2021-06-16 16:58:16 +10:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 13:32:07 +10:00
|
|
|
*/
|
2018-10-15 23:40:34 +11:00
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
2018-11-20 15:36:56 +11:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2020-01-21 20:22:10 +11:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2020-10-29 13:24:12 +11:00
|
|
|
use Illuminate\Support\Carbon;
|
2018-10-15 23:40:34 +11:00
|
|
|
|
2023-03-08 18:33:42 +11:00
|
|
|
/**
|
|
|
|
|
* App\Models\Task
|
|
|
|
|
*
|
|
|
|
|
* @property int $id
|
|
|
|
|
* @property int $user_id
|
|
|
|
|
* @property int|null $assigned_user_id
|
|
|
|
|
* @property int $company_id
|
|
|
|
|
* @property int|null $client_id
|
|
|
|
|
* @property int|null $invoice_id
|
|
|
|
|
* @property int|null $project_id
|
|
|
|
|
* @property int|null $status_id
|
|
|
|
|
* @property int|null $status_sort_order
|
|
|
|
|
* @property int|null $created_at
|
|
|
|
|
* @property int|null $updated_at
|
|
|
|
|
* @property int|null $deleted_at
|
|
|
|
|
* @property string|null $custom_value1
|
|
|
|
|
* @property string|null $custom_value2
|
|
|
|
|
* @property string|null $custom_value3
|
|
|
|
|
* @property string|null $custom_value4
|
|
|
|
|
* @property int|null $duration
|
|
|
|
|
* @property string|null $description
|
|
|
|
|
* @property int $is_deleted
|
|
|
|
|
* @property int $is_running
|
|
|
|
|
* @property string|null $time_log
|
|
|
|
|
* @property string|null $number
|
|
|
|
|
* @property string $rate
|
|
|
|
|
* @property int $invoice_documents
|
|
|
|
|
* @property int $is_date_based
|
|
|
|
|
* @property int|null $status_order
|
|
|
|
|
* @property-read \App\Models\User|null $assigned_user
|
|
|
|
|
* @property-read \App\Models\Client|null $client
|
|
|
|
|
* @property-read \App\Models\Company $company
|
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
|
|
|
|
|
* @property-read int|null $documents_count
|
|
|
|
|
* @property-read mixed $hashed_id
|
|
|
|
|
* @property-read \App\Models\Invoice|null $invoice
|
|
|
|
|
* @property-read \App\Models\Project|null $project
|
|
|
|
|
* @property-read \App\Models\TaskStatus|null $status
|
|
|
|
|
* @property-read \App\Models\User $user
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel company()
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel exclude($columns)
|
|
|
|
|
* @method static \Database\Factories\TaskFactory factory($count = null, $state = [])
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task filter(\App\Filters\QueryFilters $filters)
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task newModelQuery()
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task newQuery()
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task onlyTrashed()
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task query()
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel scope()
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task whereAssignedUserId($value)
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task whereClientId($value)
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task whereCompanyId($value)
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task whereCreatedAt($value)
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task whereCustomValue1($value)
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task whereCustomValue2($value)
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task whereCustomValue3($value)
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task whereCustomValue4($value)
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task whereDeletedAt($value)
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task whereDescription($value)
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task whereDuration($value)
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task whereId($value)
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task whereInvoiceDocuments($value)
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task whereInvoiceId($value)
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task whereIsDateBased($value)
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task whereIsDeleted($value)
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task whereIsRunning($value)
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task whereNumber($value)
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task whereProjectId($value)
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task whereRate($value)
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task whereStatusId($value)
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task whereStatusOrder($value)
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task whereStatusSortOrder($value)
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task whereTimeLog($value)
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task whereUpdatedAt($value)
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task whereUserId($value)
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task withTrashed()
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Task withoutTrashed()
|
|
|
|
|
* @mixin \Eloquent
|
|
|
|
|
*/
|
2018-11-02 21:54:46 +11:00
|
|
|
class Task extends BaseModel
|
2018-10-15 23:40:34 +11:00
|
|
|
{
|
2018-11-20 15:36:56 +11:00
|
|
|
use MakesHash;
|
2020-01-21 20:22:10 +11:00
|
|
|
use SoftDeletes;
|
2020-10-13 07:42:02 +11:00
|
|
|
use Filterable;
|
2022-06-21 09:57:17 +00:00
|
|
|
|
2019-06-26 14:04:10 +10:00
|
|
|
protected $fillable = [
|
2019-12-31 08:59:12 +11:00
|
|
|
'client_id',
|
2019-06-26 14:04:10 +10:00
|
|
|
'invoice_id',
|
2020-10-13 07:42:02 +11:00
|
|
|
'project_id',
|
2020-10-28 10:02:32 +11:00
|
|
|
'assigned_user_id',
|
2019-06-26 14:04:10 +10:00
|
|
|
'custom_value1',
|
|
|
|
|
'custom_value2',
|
2020-10-13 07:42:02 +11:00
|
|
|
'custom_value3',
|
|
|
|
|
'custom_value4',
|
2019-06-26 14:04:10 +10:00
|
|
|
'description',
|
|
|
|
|
'is_running',
|
|
|
|
|
'time_log',
|
2020-10-27 06:10:04 +11:00
|
|
|
'status_id',
|
2021-01-06 10:36:20 +11:00
|
|
|
'status_sort_order', //deprecated
|
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',
|
2021-01-06 10:36:20 +11:00
|
|
|
'status_order',
|
2019-12-31 08:59:12 +11:00
|
|
|
];
|
2018-11-20 15:36:56 +11:00
|
|
|
|
2020-07-23 13:55:11 +10:00
|
|
|
protected $touches = [];
|
2020-07-16 21:01:39 +10:00
|
|
|
|
2020-05-06 21:49:42 +10:00
|
|
|
public function getEntityType()
|
|
|
|
|
{
|
2020-09-06 19:38:10 +10:00
|
|
|
return self::class;
|
2020-05-06 21:49:42 +10:00
|
|
|
}
|
|
|
|
|
|
2020-07-16 21:01:39 +10:00
|
|
|
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');
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-05 21:16:38 +11:00
|
|
|
public function assigned_user()
|
|
|
|
|
{
|
2019-12-31 08:59:12 +11:00
|
|
|
return $this->belongsTo(User::class, 'assigned_user_id', 'id')->withTrashed();
|
2019-11-05 21:16:38 +11:00
|
|
|
}
|
2019-11-25 20:38:55 +11:00
|
|
|
|
|
|
|
|
public function user()
|
|
|
|
|
{
|
2021-09-08 09:29:20 +10:00
|
|
|
return $this->belongsTo(User::class)->withTrashed();
|
2019-11-25 20:38:55 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function client()
|
|
|
|
|
{
|
2022-07-19 20:07:23 +10:00
|
|
|
return $this->belongsTo(Client::class)->withTrashed();
|
2019-11-25 20:38:55 +11:00
|
|
|
}
|
2020-10-13 07:42:02 +11:00
|
|
|
|
2021-04-27 09:34:35 +10:00
|
|
|
public function status()
|
|
|
|
|
{
|
2022-07-19 20:07:23 +10:00
|
|
|
return $this->belongsTo(TaskStatus::class)->withTrashed();
|
2021-04-27 09:34:35 +10:00
|
|
|
}
|
|
|
|
|
|
2020-10-13 07:42:02 +11:00
|
|
|
public function invoice()
|
|
|
|
|
{
|
2022-07-19 20:07:23 +10:00
|
|
|
return $this->belongsTo(Invoice::class)->withTrashed();
|
2020-10-13 07:42:02 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function project()
|
|
|
|
|
{
|
2022-07-19 20:07:23 +10:00
|
|
|
return $this->belongsTo(Project::class)->withTrashed();
|
2020-10-13 07:42:02 +11:00
|
|
|
}
|
2020-10-29 13:24:12 +11:00
|
|
|
|
2020-10-29 14:34:29 +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
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-29 14:34:29 +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 '';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-29 14:34:29 +11:00
|
|
|
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);
|
|
|
|
|
}
|
2022-04-06 10:38:01 +10:00
|
|
|
|
|
|
|
|
public function translate_entity()
|
|
|
|
|
{
|
|
|
|
|
return ctrans('texts.task');
|
|
|
|
|
}
|
2022-06-21 09:57:17 +00:00
|
|
|
}
|