Teilnahmerechnungen erstellen
This commit is contained in:
@@ -9,6 +9,7 @@ use App\Models\Tenant;
|
||||
use App\RelationModels\EventEatingHabits;
|
||||
use App\RelationModels\EventLocalGroups;
|
||||
use App\RelationModels\EventPaymentMethods;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
class CreateEventCommand {
|
||||
@@ -27,8 +28,13 @@ class CreateEventCommand {
|
||||
}
|
||||
|
||||
|
||||
$event = Event::create([
|
||||
'tenant' => app('tenant')->slug,
|
||||
$tenant = app('tenant');
|
||||
|
||||
// Anlage als Ganzes: der Event-Teil der Rechnungsnummer wird unter der Sperre vergeben und muss
|
||||
// im selben Zug geschrieben werden, sonst könnten zwei gleichzeitige Anlagen denselben erhalten.
|
||||
$event = DB::transaction(function () use ($tenant): Event {
|
||||
$event = Event::create([
|
||||
'tenant' => $tenant->slug,
|
||||
'name' => $this->request->name,
|
||||
'identifier' => Str::random(10),
|
||||
'location' => $this->request->location,
|
||||
@@ -49,12 +55,22 @@ class CreateEventCommand {
|
||||
'support_flat' => 0,
|
||||
// Umsatzsteuerliche Grundlage bei Anlage einfrieren (unveränderlich), damit Preisermittlung und
|
||||
// spätere Rechnungen von späteren Tenant-Änderungen unberührt bleiben.
|
||||
'tax_liable' => app('tenant')->tax_liable,
|
||||
'vat_rate' => app('tenant')->vat_rate,
|
||||
'vat_pricing_mode' => app('tenant')->vat_pricing_mode,
|
||||
'tax_exemption_reason' => app('tenant')->tax_exemption_reason,
|
||||
'tax_exemption_note' => app('tenant')->tax_exemption_note,
|
||||
]);
|
||||
'tax_liable' => $tenant->tax_liable,
|
||||
'vat_rate' => $tenant->vat_rate,
|
||||
'vat_pricing_mode' => $tenant->vat_pricing_mode,
|
||||
'tax_exemption_reason' => $tenant->tax_exemption_reason,
|
||||
'tax_exemption_note' => $tenant->tax_exemption_note,
|
||||
// Den Event-Teil der Rechnungsnummer einfrieren: Tenant-Präfix und Startdatum sind später
|
||||
// änderbar, eine herausgegebene Rechnung würde sonst zu einer anderen Nummer gehören.
|
||||
//
|
||||
// Der Rechnungssteller wird bewusst NICHT mitkopiert -- er ist der Mandant und wird beim
|
||||
// Erzeugen der Rechnung von dort gelesen, damit eine Korrektur an Name oder Anschrift auch
|
||||
// auf bestehende Veranstaltungen wirkt.
|
||||
'invoice_key' => $this->nextInvoiceKey($tenant),
|
||||
]);
|
||||
|
||||
return $event;
|
||||
});
|
||||
|
||||
if ($event !== null) {
|
||||
EventEatingHabits::create([
|
||||
@@ -90,4 +106,35 @@ class CreateEventCommand {
|
||||
|
||||
return $response;
|
||||
}
|
||||
|
||||
/**
|
||||
* Event-Teil der Rechnungsnummer, z.B. `WM-V-20260701`: Tenant-Präfix, Dokumentart „V" für
|
||||
* Veranstaltung, dann ohne Trenner Jahr, Monat des Beginns und die laufende Nummer der
|
||||
* Veranstaltungen dieses Tenants in diesem Monat.
|
||||
*
|
||||
* Gezählt wird über die bereits vergebenen Schlüssel desselben Monats. Die Sperre auf der
|
||||
* Tenant-Zeile serialisiert gleichzeitige Anlagen; der Aufruf erfolgt innerhalb der
|
||||
* Anlage-Transaktion, sodass die Sperre bis zum Schreiben des Events steht.
|
||||
*/
|
||||
private function nextInvoiceKey(Tenant $tenant): string
|
||||
{
|
||||
// Jahr und Monat ohne Trenner; die laufende Nummer haengt unmittelbar daran. Alle drei Teile
|
||||
// haben feste Laenge, der Schluessel bleibt dadurch eindeutig zerlegbar.
|
||||
$month = $this->request->begin->format('Ym');
|
||||
$prefix = sprintf('%s-V-%s', $tenant->invoice_prefix ?? strtoupper($tenant->slug), $month);
|
||||
|
||||
DB::table('tenants')->where('id', $tenant->id)->lockForUpdate()->first();
|
||||
|
||||
$used = DB::table('events')
|
||||
->where('tenant', $tenant->slug)
|
||||
->where('invoice_key', 'like', $prefix . '%')
|
||||
->pluck('invoice_key');
|
||||
|
||||
$highest = 0;
|
||||
foreach ($used as $key) {
|
||||
$highest = max($highest, (int) substr((string) $key, strlen($prefix)));
|
||||
}
|
||||
|
||||
return $prefix . str_pad((string) ($highest + 1), 2, '0', STR_PAD_LEFT);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user