fix betrag

This commit is contained in:
Philipp Lang 2023-08-07 21:53:31 +02:00
parent 6325f5817b
commit f4c57c3fa7
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ class Event extends Model
? data_get($konto, $input['group'])
: 'Das Bezirkskonto';
$input['zweck'] = 'Bezirkslager '.data_get($input, 'firstname').' '.data_get($input, 'lastname');
$input['betrag'] = 'Leiter*in' === $input['agegroup'] ? '50,00 €' : '150,00 €';
$input['betrag'] = 'Leiter*in' === $input['agegroup'] ? '25,00 €' : '100,00 €';
return $input;
}