Skip to content

Commit 34f1394

Browse files
committed
Release 1.0.20
1 parent 545b4d3 commit 34f1394

File tree

10 files changed

+20
-17
lines changed

10 files changed

+20
-17
lines changed

Bootstrap.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,10 @@ private function listenFrontendHooks(Dispatcher $dispatcher, FrontendHandler $ha
150150
$order = $args['oBestellung'] ?? [];
151151
if ((int)$order->cStatus === \BESTELLUNG_STATUS_BEZAHLT) {
152152
$order = new Bestellung($args['oBestellung']->kBestellung);
153+
153154
$paymentMethodEntity = new Zahlungsart((int)$order->kZahlungsart);
154-
$paymentMethod = new Method($paymentMethodEntity->cModulId);
155+
$moduleId = $paymentMethodEntity->cModulId ?? '';
156+
$paymentMethod = new Method($moduleId);
155157
$paymentMethod->setOrderStatusToPaid($order);
156158

157159
Shop::Container()

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ account dashboard.
3636

3737
## Documentation
3838

39-
[Documentation](https://plugin-documentation.wallee.com/wallee-payment/jtl-5/1.0.19/docs/en/documentation.html)
39+
[Documentation](https://plugin-documentation.wallee.com/wallee-payment/jtl-5/1.0.20/docs/en/documentation.html)
4040

4141
## License
4242

Webhooks/Strategies/WalleeNameOrderUpdateTransactionStrategy.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public function updateOrderStatus(string $entityId): void
8181
if ($orderId > 0) {
8282
$order = new Bestellung($orderId);
8383
$paymentMethodEntity = new Zahlungsart((int)$order->kZahlungsart);
84-
$moduleId = new Method($paymentMethodEntity->cModulId) ?? '';
84+
$moduleId = $paymentMethodEntity->cModulId ?? '';
8585
$paymentMethod = new Method($moduleId);
8686
$paymentMethod->cancelOrder($orderId);
8787
}

adminmenu/AdminTabProvider.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,8 @@ public function createOrdersTab(int $menuID): string
120120
$order = new Bestellung($orderId);
121121

122122
$paymentMethodEntity = new Zahlungsart((int)$order->kZahlungsart);
123-
$paymentMethod = new Method($paymentMethodEntity->cModulId);
123+
$moduleId = $paymentMethodEntity->cModulId ?? '';
124+
$paymentMethod = new Method($moduleId);
124125
$paymentMethod->setOrderStatusToPaid($order);
125126
$incomingPayment = new stdClass();
126127
$incomingPayment->fBetrag = -1 * floatval($amount);

docs/en/documentation.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ <h2>Documentation</h2> </div>
2222
</a>
2323
</li>
2424
<li>
25-
<a href="https://github.com/wallee-payment/jtl-5/releases/tag/1.0.19/">
25+
<a href="https://github.com/wallee-payment/jtl-5/releases/tag/1.0.20/">
2626
Source
2727
</a>
2828
</li>

info.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<Icon>logo.jpg</Icon>
1010
<PluginID>jtl_wallee</PluginID>
1111
<CreateDate>2023-05-29</CreateDate>
12-
<Version>1.0.19</Version>
12+
<Version>1.0.20</Version>
1313
<Install>
1414
<Locales>
1515
<Variable>

vendor/autoload.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222

2323
require_once __DIR__ . '/composer/autoload_real.php';
2424

25-
return ComposerAutoloaderInitff306218443f315520f9659d57bce244::getLoader();
25+
return ComposerAutoloaderInitedc373967f94e5bf92545e4cb9c81cf7::getLoader();

vendor/composer/autoload_real.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
// autoload_real.php @generated by Composer
44

5-
class ComposerAutoloaderInitff306218443f315520f9659d57bce244
5+
class ComposerAutoloaderInitedc373967f94e5bf92545e4cb9c81cf7
66
{
77
private static $loader;
88

@@ -24,12 +24,12 @@ public static function getLoader()
2424

2525
require __DIR__ . '/platform_check.php';
2626

27-
spl_autoload_register(array('ComposerAutoloaderInitff306218443f315520f9659d57bce244', 'loadClassLoader'), true, true);
27+
spl_autoload_register(array('ComposerAutoloaderInitedc373967f94e5bf92545e4cb9c81cf7', 'loadClassLoader'), true, true);
2828
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
29-
spl_autoload_unregister(array('ComposerAutoloaderInitff306218443f315520f9659d57bce244', 'loadClassLoader'));
29+
spl_autoload_unregister(array('ComposerAutoloaderInitedc373967f94e5bf92545e4cb9c81cf7', 'loadClassLoader'));
3030

3131
require __DIR__ . '/autoload_static.php';
32-
call_user_func(\Composer\Autoload\ComposerStaticInitff306218443f315520f9659d57bce244::getInitializer($loader));
32+
call_user_func(\Composer\Autoload\ComposerStaticInitedc373967f94e5bf92545e4cb9c81cf7::getInitializer($loader));
3333

3434
$loader->register(true);
3535

vendor/composer/autoload_static.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace Composer\Autoload;
66

7-
class ComposerStaticInitff306218443f315520f9659d57bce244
7+
class ComposerStaticInitedc373967f94e5bf92545e4cb9c81cf7
88
{
99
public static $prefixLengthsPsr4 = array (
1010
'W' =>
@@ -32,9 +32,9 @@ class ComposerStaticInitff306218443f315520f9659d57bce244
3232
public static function getInitializer(ClassLoader $loader)
3333
{
3434
return \Closure::bind(function () use ($loader) {
35-
$loader->prefixLengthsPsr4 = ComposerStaticInitff306218443f315520f9659d57bce244::$prefixLengthsPsr4;
36-
$loader->prefixDirsPsr4 = ComposerStaticInitff306218443f315520f9659d57bce244::$prefixDirsPsr4;
37-
$loader->classMap = ComposerStaticInitff306218443f315520f9659d57bce244::$classMap;
35+
$loader->prefixLengthsPsr4 = ComposerStaticInitedc373967f94e5bf92545e4cb9c81cf7::$prefixLengthsPsr4;
36+
$loader->prefixDirsPsr4 = ComposerStaticInitedc373967f94e5bf92545e4cb9c81cf7::$prefixDirsPsr4;
37+
$loader->classMap = ComposerStaticInitedc373967f94e5bf92545e4cb9c81cf7::$classMap;
3838

3939
}, null, ClassLoader::class);
4040
}

vendor/composer/installed.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
'name' => '__root__',
44
'pretty_version' => 'dev-master',
55
'version' => 'dev-master',
6-
'reference' => 'db06ed79c3f185677bba7b74be6816d7935a67d2',
6+
'reference' => 'c4e9a8ffbdca404c956aaf4d30db0ebf05d195e0',
77
'type' => 'library',
88
'install_path' => __DIR__ . '/../../',
99
'aliases' => array(),
@@ -13,7 +13,7 @@
1313
'__root__' => array(
1414
'pretty_version' => 'dev-master',
1515
'version' => 'dev-master',
16-
'reference' => 'db06ed79c3f185677bba7b74be6816d7935a67d2',
16+
'reference' => 'c4e9a8ffbdca404c956aaf4d30db0ebf05d195e0',
1717
'type' => 'library',
1818
'install_path' => __DIR__ . '/../../',
1919
'aliases' => array(),

0 commit comments

Comments
 (0)