Skip to content
Code-Schnipsel Gruppen Projekte
Bestätigt Commit 5d7edbd3 erstellt von Henning Leutz's avatar Henning Leutz :martial_arts_uniform:
Dateien durchsuchen

fix: argument #1 () must be of type PaymentInterface, null given

Übergeordneter 10befd86
No related branches found
No related tags found
2 Merge Requests!130fix(Order): get parameters get lost,!117Update 'next-3.x' with latest changes from 'main'
Pipeline #12151 mit Warnungen bestanden mit Phase
in 4 Minuten und 9 Sekunden
......@@ -8,6 +8,7 @@
use QUI;
use QUI\Database\Exception;
use QUI\ERP\Accounting\Payments\Types\PaymentInterface;
use QUI\ERP\Products\Field\Types\BasketConditions;
use QUI\Projects\Project;
......@@ -252,12 +253,16 @@ public static function getOrderPrefix(): string
/**
* Can another payment method be chosen if the payment method does not work in an order?
*
* @param QUI\ERP\Accounting\Payments\Types\PaymentInterface $Payment
* @param PaymentInterface|null $Payment
* @return bool
*/
public static function isPaymentChangeable(
QUI\ERP\Accounting\Payments\Types\PaymentInterface $Payment
?QUI\ERP\Accounting\Payments\Types\PaymentInterface $Payment
): bool {
if (!$Payment) {
return true;
}
$Settings = QUI\ERP\Order\Settings::getInstance();
return (bool)$Settings->get('paymentChangeable', $Payment->getId());
......
0% oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren