126 lines
3.4 KiB
PHP
126 lines
3.4 KiB
PHP
<?php
|
|
|
|
namespace App\Contribution\Documents;
|
|
|
|
use App\Contribution\Data\MemberData;
|
|
use App\Invoice\InvoiceSettings;
|
|
use Carbon\Carbon;
|
|
use Illuminate\Support\Collection;
|
|
use Illuminate\Support\Str;
|
|
use Zoomyboy\Tex\Engine;
|
|
use Zoomyboy\Tex\Template;
|
|
|
|
class CitySolingenDocument extends ContributionDocument
|
|
{
|
|
public string $fromName;
|
|
|
|
/**
|
|
* @param Collection<int, MemberData> $members
|
|
*/
|
|
final private function __construct(
|
|
public string $dateFrom,
|
|
public string $dateUntil,
|
|
public string $zipLocation,
|
|
public Collection $members,
|
|
public string $eventName,
|
|
public string $type = 'F',
|
|
) {
|
|
$this->setEventName($eventName);
|
|
$this->fromName = app(InvoiceSettings::class)->from_long;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public static function fromRequest(array $request): static
|
|
{
|
|
return new static(
|
|
dateFrom: $request['dateFrom'],
|
|
dateUntil: $request['dateUntil'],
|
|
zipLocation: $request['zipLocation'],
|
|
members: MemberData::fromModels($request['members']),
|
|
eventName: $request['eventName'],
|
|
);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public static function fromApiRequest(array $request): static
|
|
{
|
|
return new static(
|
|
dateFrom: $request['dateFrom'],
|
|
dateUntil: $request['dateUntil'],
|
|
zipLocation: $request['zipLocation'],
|
|
members: MemberData::fromApi($request['member_data']),
|
|
eventName: $request['eventName'],
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @return Collection<int, Collection<int, MemberData>>
|
|
*/
|
|
public function memberModels(): Collection
|
|
{
|
|
return $this->members->chunk(14);
|
|
}
|
|
|
|
public function niceEventFrom(): string
|
|
{
|
|
return Carbon::parse($this->dateFrom)->format('d.m.Y');
|
|
}
|
|
|
|
public function niceEventUntil(): string
|
|
{
|
|
return Carbon::parse($this->dateUntil)->format('d.m.Y');
|
|
}
|
|
|
|
public function template(): Template
|
|
{
|
|
return Template::make('tex.templates.contribution');
|
|
}
|
|
|
|
public function checkboxes(): string
|
|
{
|
|
$output = '';
|
|
|
|
$firstRow = collect(['B' => 'Jugendbildungsmaßnahme', 'G' => 'Gruppenleiter/innenschulung', 'FK' => 'Ferienkolonie', 'F' => 'Freizeitnaßnahme'])->map(function ($item, $key) {
|
|
return ($this->type === $key ? '\\checkedcheckbox' : '\\checkbox') . '{' . $item . '}';
|
|
})->implode(' & ') . ' \\\\';
|
|
|
|
$secondRow = collect(['I' => 'Int. Jugendbegegnung', 'P' => 'politische Jugendbildung', 'PR' => 'Projekte'])->map(function ($item, $key) {
|
|
return ($this->type === $key ? '\\checkedcheckbox' : '\\checkbox') . '{' . $item . '}';
|
|
})->implode(' & ') . ' & \\emptycheckbox \\\\';
|
|
|
|
return $firstRow . "\n" . $secondRow;
|
|
}
|
|
|
|
public function view(): string
|
|
{
|
|
return 'tex.contribution.city-solingen';
|
|
}
|
|
|
|
public function getEngine(): Engine
|
|
{
|
|
return Engine::PDFLATEX;
|
|
}
|
|
|
|
public static function getName(): string
|
|
{
|
|
return 'Stadt Solingen';
|
|
}
|
|
|
|
/**
|
|
* @return array<string, mixed>
|
|
*/
|
|
public static function rules(): array
|
|
{
|
|
return [
|
|
'dateFrom' => 'required|string|date_format:Y-m-d',
|
|
'dateUntil' => 'required|string|date_format:Y-m-d',
|
|
'zipLocation' => 'required|string',
|
|
'eventName' => 'required|string',
|
|
];
|
|
}
|
|
}
|