mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 12:12:48 +01:00
55 lines
1.5 KiB
PHP
55 lines
1.5 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;
|
|
use App\Models\Project;
|
|
|
|
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']),
|
|
ENTITY_PROJECT => Project::scope(),
|
|
];
|
|
|
|
foreach ($data as $type => $source) {
|
|
if (! count($filter) || in_array($type, $filter)) {
|
|
$source->where(function($query) use ($type) {
|
|
$start = date_create(request()->start);
|
|
$end = date_create(request()->end);
|
|
return $query->dateRange($start, $end);
|
|
});
|
|
|
|
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;
|
|
}
|
|
}
|