mod beitrag

This commit is contained in:
philipp lang 2023-04-01 11:05:57 +02:00
parent c9eb8adc03
commit a0e95989df
1 changed files with 1 additions and 1 deletions

View File

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