1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Livewire/TasksTable.php

61 lines
1.6 KiB
PHP
Raw Normal View History

2021-05-12 16:39:29 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2021-05-12 16:39:29 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2021-05-12 16:39:29 +02:00
*/
2023-12-13 17:52:49 +01:00
namespace App\Livewire;
2021-05-12 16:39:29 +02:00
use App\Libraries\MultiDB;
2021-05-12 16:39:29 +02:00
use App\Models\Task;
use App\Utils\Traits\WithSorting;
use Livewire\Component;
use Livewire\WithPagination;
class TasksTable extends Component
{
use WithSorting;
use WithPagination;
public $per_page = 10;
public $company;
public function mount()
{
MultiDB::setDb($this->company->db);
}
2021-05-12 16:39:29 +02:00
public function render()
{
$query = Task::query()
2021-07-03 23:46:25 +02:00
->where('company_id', $this->company->id)
2021-11-14 21:04:00 +01:00
->where('is_deleted', false)
2022-09-16 06:20:46 +02:00
->where('client_id', auth()->guard('contact')->user()->client_id);
2023-10-26 04:57:44 +02:00
if (auth()->guard('contact')->user()->client->getSetting('show_all_tasks_client_portal') === 'invoiced') {
$query = $query->whereNotNull('invoice_id');
}
2023-10-26 04:57:44 +02:00
if (auth()->guard('contact')->user()->client->getSetting('show_all_tasks_client_portal') === 'uninvoiced') {
$query = $query->whereNull('invoice_id');
}
$query = $query
2021-05-12 16:39:29 +02:00
->orderBy($this->sort_field, $this->sort_asc ? 'asc' : 'desc')
2021-09-10 21:50:23 +02:00
->withTrashed()
2021-05-12 16:39:29 +02:00
->paginate($this->per_page);
return render('components.livewire.tasks-table', [
'tasks' => $query,
2024-01-25 04:06:26 +01:00
'show_item_description' => auth()->guard('contact')->user()->company->invoice_task_item_description ?? false,
2021-05-12 16:39:29 +02:00
]);
}
}