2020-04-23 00:49:23 +02:00
|
|
|
<?php
|
|
|
|
|
2020-12-05 14:24:21 +01:00
|
|
|
/**
|
|
|
|
* 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)
|
2020-12-05 14:24:21 +01:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-12-05 14:24:21 +01:00
|
|
|
*/
|
|
|
|
|
2020-04-23 00:49:23 +02:00
|
|
|
namespace App\Http\Livewire;
|
|
|
|
|
2021-06-07 03:06:31 +02:00
|
|
|
use App\Libraries\MultiDB;
|
2022-12-23 01:51:29 +01:00
|
|
|
use App\Models\Company;
|
2020-04-23 00:49:23 +02:00
|
|
|
use App\Models\Quote;
|
|
|
|
use Livewire\Component;
|
|
|
|
use Livewire\WithPagination;
|
|
|
|
|
|
|
|
class QuotesTable extends Component
|
|
|
|
{
|
|
|
|
use WithPagination;
|
|
|
|
|
2022-12-23 01:51:29 +01:00
|
|
|
public int $per_page = 10;
|
2021-06-07 03:06:31 +02:00
|
|
|
|
2022-12-23 01:51:29 +01:00
|
|
|
public array $status = [];
|
2020-04-23 00:49:23 +02:00
|
|
|
|
2022-12-23 01:51:29 +01:00
|
|
|
public Company $company;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
public string $sort = 'status_id';
|
2022-12-23 01:51:29 +01:00
|
|
|
|
|
|
|
public bool $sort_asc = true;
|
|
|
|
|
|
|
|
public int $company_id;
|
|
|
|
|
|
|
|
public string $db;
|
|
|
|
|
|
|
|
public function mount()
|
|
|
|
{
|
|
|
|
MultiDB::setDb($this->db);
|
|
|
|
|
|
|
|
$this->company = Company::find($this->company_id);
|
|
|
|
}
|
2022-08-19 07:11:48 +02:00
|
|
|
|
|
|
|
|
|
|
|
public function sortBy($field)
|
|
|
|
{
|
2022-08-24 10:28:08 +02:00
|
|
|
$this->sort === $field
|
2022-08-19 07:11:48 +02:00
|
|
|
? $this->sort_asc = ! $this->sort_asc
|
|
|
|
: $this->sort_asc = true;
|
|
|
|
|
2022-08-24 10:28:08 +02:00
|
|
|
$this->sort = $field;
|
2022-08-19 07:11:48 +02:00
|
|
|
}
|
|
|
|
|
2020-04-23 00:49:23 +02:00
|
|
|
public function render()
|
|
|
|
{
|
|
|
|
$query = Quote::query()
|
2022-12-23 01:51:29 +01:00
|
|
|
->with('client.contacts', 'company')
|
2022-08-24 10:28:08 +02:00
|
|
|
->orderBy($this->sort, $this->sort_asc ? 'asc' : 'desc');
|
2020-05-14 03:05:18 +02:00
|
|
|
|
2020-09-03 11:14:24 +02:00
|
|
|
if (count($this->status) > 0) {
|
2022-01-07 05:03:42 +01:00
|
|
|
/* Special filter for expired*/
|
2022-06-21 11:57:17 +02:00
|
|
|
if (in_array('-1', $this->status)) {
|
|
|
|
$query->where(function ($query) {
|
2022-01-07 05:03:42 +01:00
|
|
|
$query->whereDate('due_date', '<=', now()->startOfDay())
|
|
|
|
->whereNotNull('due_date')
|
|
|
|
->where('status_id', '<>', Quote::STATUS_CONVERTED);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (in_array('2', $this->status)) {
|
|
|
|
$query->where(function ($query) {
|
2022-01-07 05:03:42 +01:00
|
|
|
$query->whereDate('due_date', '>=', now()->startOfDay())
|
|
|
|
->orWhereNull('due_date');
|
|
|
|
})->where('status_id', Quote::STATUS_SENT);
|
|
|
|
}
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (in_array('3', $this->status)) {
|
2022-01-07 05:03:42 +01:00
|
|
|
$query->whereIn('status_id', [Quote::STATUS_APPROVED, Quote::STATUS_CONVERTED]);
|
|
|
|
}
|
2020-04-23 00:49:23 +02:00
|
|
|
}
|
|
|
|
|
2020-05-14 03:05:18 +02:00
|
|
|
$query = $query
|
2021-07-03 23:46:25 +02:00
|
|
|
->where('company_id', $this->company->id)
|
2022-09-16 06:20:46 +02:00
|
|
|
->where('client_id', auth()->guard('contact')->user()->client_id)
|
2021-12-05 08:50:40 +01:00
|
|
|
->where('is_deleted', 0)
|
2022-09-16 06:20:46 +02:00
|
|
|
->where('status_id', '<>', Quote::STATUS_DRAFT)
|
2021-09-10 21:47:48 +02:00
|
|
|
->withTrashed()
|
2020-05-14 03:05:18 +02:00
|
|
|
->paginate($this->per_page);
|
2020-04-23 00:49:23 +02:00
|
|
|
|
|
|
|
return render('components.livewire.quotes-table', [
|
2020-09-06 11:38:10 +02:00
|
|
|
'quotes' => $query,
|
2020-04-23 00:49:23 +02:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|