Compare commits
2 Commits
c95658ae65
...
ac45e0c8fa
Author | SHA1 | Date |
---|---|---|
philipp lang | ac45e0c8fa | |
philipp lang | 6f1ab73bae |
|
@ -1,5 +1,9 @@
|
|||
# Letzte Änderungen
|
||||
|
||||
### 1.10.14
|
||||
|
||||
- Fixed: Ist eine Präventionsschulung älter als 5 Jahre, so ist nur eine Auffrischungs-Schulung erforderlich
|
||||
|
||||
### 1.10.13
|
||||
|
||||
- Bei Veranstaltungs-Übersicht alle Veranstaltungen anzeigen
|
||||
|
|
|
@ -136,10 +136,15 @@ class PreventionTest extends TestCase
|
|||
];
|
||||
|
||||
yield [
|
||||
'attrs' => ['has_vk' => true, 'efz' => now(), 'ps_at' => now()->subYears(5)->subDay()],
|
||||
'attrs' => ['has_vk' => true, 'efz' => now(), 'ps_at' => null],
|
||||
'preventions' => [Prevention::PS]
|
||||
];
|
||||
|
||||
yield [
|
||||
'attrs' => ['has_vk' => true, 'efz' => now(), 'ps_at' => now()->subYears(5)->subDay()],
|
||||
'preventions' => [Prevention::MOREPS]
|
||||
];
|
||||
|
||||
yield [
|
||||
'attrs' => ['has_vk' => true, 'efz' => now(), 'ps_at' => now()->subYears(5)->subDay(), 'more_ps_at' => now()],
|
||||
'preventions' => []
|
||||
|
|
Loading…
Reference in New Issue