1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Http/Livewire/QuotesTable.php

97 lines
2.5 KiB
PHP
Raw Normal View History

<?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-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Http\Livewire;
use App\Libraries\MultiDB;
2022-12-23 01:51:29 +01:00
use App\Models\Company;
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;
2022-12-23 01:51:29 +01:00
public array $status = [];
2022-12-23 01:51:29 +01:00
public Company $company;
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);
}
public function sortBy($field)
{
$this->sort === $field
? $this->sort_asc = ! $this->sort_asc
: $this->sort_asc = true;
$this->sort = $field;
}
public function render()
{
$query = Quote::query()
2022-12-23 01:51:29 +01:00
->with('client.contacts', 'company')
->orderBy($this->sort, $this->sort_asc ? 'asc' : 'desc');
2020-05-14 03:05:18 +02:00
if (count($this->status) > 0) {
2022-01-07 05:03:42 +01:00
/* Special filter for expired*/
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);
});
}
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);
}
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-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);
return render('components.livewire.quotes-table', [
'quotes' => $query,
]);
}
}