Moved bank transfer logic to special module

This commit is contained in:
2026-08-05 10:00:02 +02:00
parent d1ef092bc3
commit e55cdd1988
22 changed files with 669 additions and 165 deletions
+3 -2
View File
@@ -52,8 +52,9 @@ class PaymentMethodOptionsTest extends TestCase
$this->assertTrue(PaymentMethod::isConfigurationComplete($slug, ['iban' => 'DE123', 'account_owner' => 'Kasse']));
}
public function test_slug_without_options_is_always_complete(): void
public function test_unknown_slug_is_always_complete(): void
{
$this->assertTrue(PaymentMethod::isConfigurationComplete(PaymentMethod::PAYMENT_NOT_DEFINED, []));
// Kein Modul -> keine Pflichtfelder -> stets vollständig.
$this->assertTrue(PaymentMethod::isConfigurationComplete('NO_MODULE', []));
}
}