2021-05-12 16:39:29 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2021-05-12 16:39:29 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Livewire;
|
|
|
|
|
2021-06-07 03:06:31 +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;
|
|
|
|
|
2021-06-07 03:06:31 +02:00
|
|
|
public $company;
|
2021-06-29 11:47:38 +02:00
|
|
|
|
2021-06-07 03:06:31 +02:00
|
|
|
public function mount()
|
|
|
|
{
|
|
|
|
MultiDB::setDb($this->company->db);
|
|
|
|
}
|
2021-06-29 11:47:38 +02:00
|
|
|
|
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-06-29 11:47:38 +02:00
|
|
|
->where('client_id', auth('contact')->user()->client->id);
|
|
|
|
|
|
|
|
if ($this->company->getSetting('show_all_tasks_client_portal') === 'invoiced') {
|
|
|
|
$query = $query->whereNotNull('invoice_id');
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->company->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')
|
|
|
|
->paginate($this->per_page);
|
|
|
|
|
|
|
|
return render('components.livewire.tasks-table', [
|
|
|
|
'tasks' => $query,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|