Skip to content
Code-Schnipsel Gruppen Projekte
Commit 17a5476d erstellt von Henning Leutz's avatar Henning Leutz :martial_arts_uniform:
Dateien durchsuchen

Merge branch 'next-2.x' into 'main'

fix(Handler): no internal instance cache

See merge request !123
Übergeordnete d069e806 c276c1a8
No related branches found
No related tags found
2 Merge Requests!123fix(Handler): no internal instance cache,!117Update 'next-3.x' with latest changes from 'main'
Pipeline #11727 mit Warnungen bestanden mit Phase
in 54 Sekunden
......@@ -689,8 +689,3 @@ parameters:
message: "#^Empty array passed to foreach\\.$#"
count: 1
path: src/QUI/ERP/Order/Utils/Utils.php
-
message: "#^Class QUI\\\\Database\\\\Exception referenced with incorrect case\\: QUI\\\\DataBase\\\\Exception\\.$#"
count: 1
path: types/shoppingCart.php
......@@ -42,11 +42,6 @@ class Handler extends Singleton
*/
protected array $cache = [];
/**
* @var array
*/
protected array $orders = [];
/**
* Return all order process Provider
*
......@@ -103,22 +98,6 @@ public function getOrderProcessProvider(): array
return $result;
}
/**
* Remove an order instance
*
* @param $orderId
*/
public function removeFromInstanceCache($orderId): void
{
if (isset($this->orders[$orderId])) {
unset($this->orders[$orderId]);
}
if (isset($this->cache[$orderId])) {
unset($this->cache[$orderId]);
}
}
//region Order
/**
......@@ -142,11 +121,7 @@ public function table(): string
*/
public function get(int|string $orderId): Order
{
if (!isset($this->orders[$orderId])) {
$this->orders[$orderId] = new Order($orderId);
}
return $this->orders[$orderId];
return new Order($orderId);
}
/**
......@@ -615,11 +590,7 @@ public function tableOrderProcess(): string
*/
public function getOrderInProcess($orderId): OrderInProcess
{
if (!isset($this->cache[$orderId])) {
$this->cache[$orderId] = new OrderInProcess($orderId);
}
return $this->cache[$orderId];
return new OrderInProcess($orderId);
}
/**
......
......@@ -71,7 +71,6 @@ public function refresh(): void
}
try {
Handler::getInstance()->removeFromInstanceCache($this->orderId);
$Order = Handler::getInstance()->get($this->orderId);
if (!$Order->isSuccessful()) {
......
......@@ -9,8 +9,6 @@
**/
use QUI\ERP\Order\Basket\BasketGuest;
use QUI\ERP\Order\Handler;
use QUI\System\Log;
try {
$BasketControl = null;
......
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