mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-09-29 21:11:12 -04:00
47 lines
1.2 KiB
PHP
47 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Jobs;
|
|
|
|
use App\Jobs\Job;
|
|
use App\Models\Invoice;
|
|
use App\Models\Payment;
|
|
use App\Models\Expense;
|
|
use App\Models\Task;
|
|
|
|
class GenerateCalendarEvents extends Job
|
|
{
|
|
/**
|
|
* Execute the job.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle()
|
|
{
|
|
$events = [];
|
|
$filter = request()->filter ?: [];
|
|
|
|
$data = [
|
|
ENTITY_INVOICE => Invoice::scope()->invoices(),
|
|
ENTITY_QUOTE => Invoice::scope()->quotes(),
|
|
ENTITY_TASK => Task::scope()->with(['project']),
|
|
ENTITY_PAYMENT => Payment::scope()->with(['invoice']),
|
|
ENTITY_EXPENSE => Expense::scope()->with(['expense_category']),
|
|
];
|
|
|
|
foreach ($data as $type => $source) {
|
|
if (! count($filter) || in_array($type, $filter)) {
|
|
foreach ($source->with(['account', 'client.contacts'])->get() as $entity) {
|
|
if ($entity->client && $entity->client->trashed()) {
|
|
continue;
|
|
}
|
|
|
|
$subColors = count($filter) == 1;
|
|
$events[] = $entity->present()->calendarEvent($subColors);
|
|
}
|
|
}
|
|
}
|
|
|
|
return $events;
|
|
}
|
|
}
|