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

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

fix: update `getCustomerFiles` method signature in `AbstractOrder`

See merge request !146
Übergeordnete 3dbfb938 97b6e8eb
No related branches found
Tags 2.7.23
2 Merge Requests!146fix: update `getCustomerFiles` method signature in `AbstractOrder`,!145Update 'next-3.x' with latest changes from 'main'
Pipeline #15570 mit Warnungen bestanden mit Phase
in 48 Sekunden
werden angezeigt mit 415 Ergänzungen und 758 Löschungen
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<phive xmlns="https://phar.io/phive"> <phive xmlns="https://phar.io/phive">
<phar name="phpstan" version="1.11.8" installed="1.11.8" location="./tools/phpstan" copy="false"/> <phar name="phpstan" version="1.*" installed="1.12.13" location="./tools/phpstan" copy="false"/>
<phar name="phpunit" version="^10.5.20" installed="10.5.20" location="./tools/phpunit" copy="false"/> <phar name="phpunit" version="^10.5.20" installed="10.5.20" location="./tools/phpunit" copy="false"/>
<phar name="phpcs" version="^3.10.1" installed="3.10.1" location="./tools/phpcs" copy="false"/> <phar name="phpcs" version="^3.10.1" installed="3.10.1" location="./tools/phpcs" copy="false"/>
<phar name="phpcbf" version="^3.10.1" installed="3.10.1" location="./tools/phpcbf" copy="false"/> <phar name="phpcbf" version="^3.10.1" installed="3.10.1" location="./tools/phpcbf" copy="false"/>
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
function ($basketId, $pos) { function ($basketId, $pos) {
$User = QUI::getUserBySession(); $User = QUI::getUserBySession();
$Basket = new QUI\ERP\Order\Basket\Basket($basketId, $User); $Basket = new QUI\ERP\Order\Basket\Basket($basketId, $User);
$Basket->getProducts()?->removePos($pos); $Basket->getProducts()->removePos($pos);
QUI::getEvents()->fireEvent( QUI::getEvents()->fireEvent(
'quiqqerOrderBasketRemovePos', 'quiqqerOrderBasketRemovePos',
......
...@@ -20,10 +20,15 @@ function ($orderHash) { ...@@ -20,10 +20,15 @@ function ($orderHash) {
$Output = new QUI\Output(); $Output = new QUI\Output();
$result = $OrderProcess->create(); $result = $OrderProcess->create();
$css = QUI\Control\Manager::getCSS(); $css = QUI\Control\Manager::getCSS();
$View = null;
if (method_exists($OrderProcess->getOrder(), 'getView')) {
$View = $OrderProcess->getOrder()->getView();
}
return [ return [
'html' => $Output->parse($css . $result), 'html' => $Output->parse($css . $result),
'data' => $OrderProcess->getOrder()->getView()->toArray() 'data' => $View?->toArray()
]; ];
}, },
['orderHash'] ['orderHash']
......
...@@ -28,11 +28,6 @@ function ($orderId, $step, $orderHash, $basketEditable) { ...@@ -28,11 +28,6 @@ function ($orderId, $step, $orderHash, $basketEditable) {
]); ]);
$Current = $OrderProcess->getCurrentStep(); $Current = $OrderProcess->getCurrentStep();
if (!$Current) {
$Current = $OrderProcess->getFirstStep();
}
$OrderProcess->setAttribute('step', $Current->getName()); $OrderProcess->setAttribute('step', $Current->getName());
$html = $OrderProcess->create(); $html = $OrderProcess->create();
......
...@@ -22,12 +22,13 @@ function ($orderHash, $payment) { ...@@ -22,12 +22,13 @@ function ($orderHash, $payment) {
'step' => $Processing->getName() 'step' => $Processing->getName()
]); ]);
/* @var $Processing Processing */
$Processing = $OrderProcess->getCurrentStep(); $Processing = $OrderProcess->getCurrentStep();
$Order = $OrderProcess->getOrder(); $Order = $OrderProcess->getOrder();
$Processing->setAttribute('Order', $Order); $Processing->setAttribute('Order', $Order);
$Processing->savePayment($payment);
if (method_exists($Processing, 'savePayment')) {
$Processing->savePayment($payment);
}
}, },
['orderHash', 'payment'] ['orderHash', 'payment']
); );
...@@ -25,10 +25,6 @@ function ($orderId, $step, $orderHash, $basketEditable) { ...@@ -25,10 +25,6 @@ function ($orderId, $step, $orderHash, $basketEditable) {
$Order = $OrderProcess->getOrder(); $Order = $OrderProcess->getOrder();
$Current = $OrderProcess->getCurrentStep(); $Current = $OrderProcess->getCurrentStep();
if (!$Current) {
$Current = $OrderProcess->getFirstStep();
}
$OrderProcess->setAttribute('step', $Current->getName()); $OrderProcess->setAttribute('step', $Current->getName());
$OrderProcess->setAttribute('orderHash', $Order->getUUID()); $OrderProcess->setAttribute('orderHash', $Order->getUUID());
......
...@@ -32,11 +32,7 @@ function ($current, $orderHash, $formData) { ...@@ -32,11 +32,7 @@ function ($current, $orderHash, $formData) {
]); ]);
$result = $OrderProcess->create(); $result = $OrderProcess->create();
$current = false; $current = $OrderProcess->getCurrentStep()->getName();
if ($OrderProcess->getCurrentStep()) {
$current = $OrderProcess->getCurrentStep()->getName();
}
return [ return [
'html' => $result, 'html' => $result,
......
...@@ -30,7 +30,7 @@ function ($orderHash, $pos, $quantity) { ...@@ -30,7 +30,7 @@ function ($orderHash, $pos, $quantity) {
$Products = $Basket->getProducts(); $Products = $Basket->getProducts();
$products = $Products->getProducts(); // get as array $products = $Products->getProducts(); // get as array
if (isset($products[$pos])) { if (isset($products[$pos]) && method_exists($products[$pos], 'setQuantity')) {
$products[$pos]->setQuantity($quantity); $products[$pos]->setQuantity($quantity);
} }
......
...@@ -63,9 +63,10 @@ define('package/quiqqer/order/bin/frontend/controls/frontendusers/Orders', [ ...@@ -63,9 +63,10 @@ define('package/quiqqer/order/bin/frontend/controls/frontendusers/Orders', [
*/ */
$onImport: function () { $onImport: function () {
var self = this, var self = this,
Elm = this.getElm(); Elm = this.getElm(),
SectionContainer = Elm.querySelector('[data-ref="section-container"]');
this.$List = Elm.getElement('.quiqqer-order-profile-orders-list'); this.$List = Elm.getElement('[data-ref="order-list"]');
this.$OrderContainer = new Element('div', { this.$OrderContainer = new Element('div', {
'class': 'quiqqer-order-profile-orders-order-container', 'class': 'quiqqer-order-profile-orders-order-container',
...@@ -74,9 +75,16 @@ define('package/quiqqer/order/bin/frontend/controls/frontendusers/Orders', [ ...@@ -74,9 +75,16 @@ define('package/quiqqer/order/bin/frontend/controls/frontendusers/Orders', [
opacity : 0, opacity : 0,
position: 'relative' position: 'relative'
} }
}).inject(this.getElm()); });
if (SectionContainer) {
this.$OrderContainer.inject(SectionContainer);
this.Loader.inject(SectionContainer);
} else {
this.$OrderContainer.inject(Elm);
this.Loader.inject(Elm);
}
this.Loader.inject(Elm);
this.$setEvents(); this.$setEvents();
// pagination events // pagination events
...@@ -179,6 +187,11 @@ define('package/quiqqer/order/bin/frontend/controls/frontendusers/Orders', [ ...@@ -179,6 +187,11 @@ define('package/quiqqer/order/bin/frontend/controls/frontendusers/Orders', [
onLoad: function () { onLoad: function () {
self.Loader.hide(); self.Loader.hide();
self.$hideList().then(function () { self.$hideList().then(function () {
self.$OrderContainer.scrollIntoView({
behavior: "smooth",
block: "start"
});
return self.$showOrderContainer(); return self.$showOrderContainer();
}); });
} }
...@@ -245,9 +258,7 @@ define('package/quiqqer/order/bin/frontend/controls/frontendusers/Orders', [ ...@@ -245,9 +258,7 @@ define('package/quiqqer/order/bin/frontend/controls/frontendusers/Orders', [
*/ */
$setEvents: function () { $setEvents: function () {
var self = this; var self = this;
var orderLinks = this.getElm().getElements( var orderLinks = this.getElm().getElements('[data-ref="order-link"]');
'.quiqqer-order-profile-orders-order-header-orderId a'
);
orderLinks.addEvent('click', function (event) { orderLinks.addEvent('click', function (event) {
var Target = event.target; var Target = event.target;
...@@ -298,6 +309,7 @@ define('package/quiqqer/order/bin/frontend/controls/frontendusers/Orders', [ ...@@ -298,6 +309,7 @@ define('package/quiqqer/order/bin/frontend/controls/frontendusers/Orders', [
); );
elements.push(self.$List); elements.push(self.$List);
elements.push(...this.getElm().querySelectorAll('[data-ref="order-text"]'))
return new Promise(function (resolve) { return new Promise(function (resolve) {
elements.setStyle('position', 'relative'); elements.setStyle('position', 'relative');
...@@ -328,6 +340,7 @@ define('package/quiqqer/order/bin/frontend/controls/frontendusers/Orders', [ ...@@ -328,6 +340,7 @@ define('package/quiqqer/order/bin/frontend/controls/frontendusers/Orders', [
); );
elements.push(self.$List); elements.push(self.$List);
elements.push(...this.getElm().querySelectorAll('[data-ref="order-text"]'))
elements.setStyle('display', null); elements.setStyle('display', null);
......
...@@ -357,10 +357,18 @@ ...@@ -357,10 +357,18 @@
<de><![CDATA[Meine Bestellungen]]></de> <de><![CDATA[Meine Bestellungen]]></de>
<en><![CDATA[My orders]]></en> <en><![CDATA[My orders]]></en>
</locale> </locale>
<locale name="control.frontendUsers.orders.title">
<de><![CDATA[Bestellungen]]></de>
<en><![CDATA[Orders]]></en>
</locale>
<locale name="profile.opened.orders.title"> <locale name="profile.opened.orders.title">
<de><![CDATA[Meine offene Bestellungen]]></de> <de><![CDATA[Meine offenen Bestellungen]]></de>
<en><![CDATA[My open orders]]></en> <en><![CDATA[My open orders]]></en>
</locale> </locale>
<locale name="control.frontendUsers.opened.orders.title">
<de><![CDATA[Offene Bestellungen]]></de>
<en><![CDATA[Open orders]]></en>
</locale>
<locale name="message.orders.panel.empty.articles"> <locale name="message.orders.panel.empty.articles">
<de><![CDATA[Die Bestellung besitzt keine Artikel.]]></de> <de><![CDATA[Die Bestellung besitzt keine Artikel.]]></de>
<en><![CDATA[The order does not own any articles.]]></en> <en><![CDATA[The order does not own any articles.]]></en>
...@@ -833,6 +841,28 @@ ...@@ -833,6 +841,28 @@
<de><![CDATA[Vorgehen bei gescheiterter Zahlung]]></de> <de><![CDATA[Vorgehen bei gescheiterter Zahlung]]></de>
<en><![CDATA[Procedure for failed payment]]></en> <en><![CDATA[Procedure for failed payment]]></en>
</locale> </locale>
<locale name="order.settings.userProfile.title">
<de><![CDATA[Benutezrprofil]]></de>
<en><![CDATA[User profile]]></en>
</locale>
<locale name="order.settings.userProfile.showArticleImage">
<de><![CDATA[Artikelbilder anzeigen]]></de>
<en><![CDATA[Show article images]]></en>
</locale>
<locale name="order.settings.userProfile.showArticleImage.desc">
<de><![CDATA[Wenn aktiviert, werden Artikelbilder im Benutzerprofil im Bereich "Bestellungen" und "Offene Bestellungen" angezeigt.]]></de>
<en><![CDATA[When enabled, product images are displayed in the user profile's order history and open orders section.]]></en>
</locale>
<locale name="order.settings.userProfile.disableProductLinks">
<de><![CDATA[Keine Prodeuktlinks]]></de>
<en><![CDATA[Disable product links]]></en>
</locale>
<locale name="order.settings.userProfile.disableProductLinks.desc">
<de><![CDATA[Wenn aktiviert, werden keine Links zu den Produkten im Benutzerprofil angezeigt.]]></de>
<en><![CDATA[When enabled, no links to products will be displayed in the user profile.]]></en>
</locale>
<locale name="order.settings.mails.attachments"> <locale name="order.settings.mails.attachments">
<de><![CDATA[Automatische Mailanhänge]]></de> <de><![CDATA[Automatische Mailanhänge]]></de>
<en><![CDATA[Automatic mail attachments]]></en> <en><![CDATA[Automatic mail attachments]]></en>
...@@ -1090,10 +1120,18 @@ ...@@ -1090,10 +1120,18 @@
<de><![CDATA[Bestellstatus]]></de> <de><![CDATA[Bestellstatus]]></de>
<en><![CDATA[Order status]]></en> <en><![CDATA[Order status]]></en>
</locale> </locale>
<locale name="control.profile.orders.order.invoice"> <locale name="control.profile.orders.order.invoice.label">
<de><![CDATA[Rechnung]]></de> <de><![CDATA[Rechnung]]></de>
<en><![CDATA[Invoice]]></en> <en><![CDATA[Invoice]]></en>
</locale> </locale>
<locale name="control.profile.orders.order.invoice">
<de><![CDATA[Rechnung herunterladen]]></de>
<en><![CDATA[Download invoice]]></en>
</locale>
<locale name="control.profile.orders.order.continuePayment.label">
<de><![CDATA[Benötigte Aktion]]></de>
<en><![CDATA[Required action]]></en>
</locale>
<locale name="control.profile.orders.order.continuePayment"> <locale name="control.profile.orders.order.continuePayment">
<de><![CDATA[Bezahlung fortführen]]></de> <de><![CDATA[Bezahlung fortführen]]></de>
<en><![CDATA[Continue payment]]></en> <en><![CDATA[Continue payment]]></en>
......
parameters: parameters:
ignoreErrors: ignoreErrors:
- -
message: "#^Parameter \\#6 \\$User of static method QUI\\\\ERP\\\\Accounting\\\\Payments\\\\Transactions\\\\Factory\\:\\:createPaymentTransaction\\(\\) expects null, QUI\\\\Interfaces\\\\Users\\\\User given\\.$#" message: "#^Call to method getUUID\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Invoice\\.$#"
count: 1 path: ajax/backend/createInvoice.php
path: ajax/backend/addPayment.php -
message: "#^Call to method getUUID\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary\\.$#"
- path: ajax/backend/createInvoice.php
message: "#^Call to method getUUID\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Invoice\\.$#" -
count: 1 message: "#^Call to method getUUID\\(\\) on an unknown class QUI\\\\ERP\\\\SalesOrders\\\\SalesOrder\\.$#"
path: ajax/backend/createInvoice.php path: ajax/backend/createSalesOrder.php
-
- message: "#^Call to method getUUID\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Invoice\\.$#"
message: "#^Call to method getUUID\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary\\.$#" path: ajax/backend/post.php
count: 1 -
path: ajax/backend/createInvoice.php message: "#^Call to method getUUID\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary\\.$#"
path: ajax/backend/post.php
- -
message: "#^Call to method getUUID\\(\\) on an unknown class QUI\\\\ERP\\\\SalesOrders\\\\SalesOrder\\.$#" message: "#^Property QUI\\\\ERP\\\\Order\\\\AbstractOrder::\\$ShippingStatus has unknown class QUI\\\\ERP\\\\Shipping\\\\ShippingStatus\\\\Status as its type\\.$#"
count: 1 path: src/QUI/ERP/Order/AbstractOrder.php
path: ajax/backend/createSalesOrder.php -
message: "#^Call to method getType\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Invoice\\.$#"
- path: src/QUI/ERP/Order/AbstractOrder.php
message: "#^Call to method getUUID\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Invoice\\.$#" -
count: 1 message: "#^Call to method getType\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary\\.$#"
path: ajax/backend/post.php path: src/QUI/ERP/Order/AbstractOrder.php
-
- message: "#^Method QUI\\\\ERP\\\\Order\\\\AbstractOrder::getShipping\\(\\) has invalid return type QUI\\\\ERP\\\\Shipping\\\\Types\\\\ShippingEntry\\.$#"
message: "#^Call to method getUUID\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary\\.$#" path: src/QUI/ERP/Order/AbstractOrder.php
count: 1 -
path: ajax/backend/post.php message: "#^Parameter \\$Shipping of method QUI\\\\ERP\\\\Order\\\\AbstractOrder::setShipping\\(\\) has invalid type QUI\\\\ERP\\\\Shipping\\\\Api\\\\ShippingInterface\\.$#"
path: src/QUI/ERP/Order/AbstractOrder.php
- -
message: "#^Parameter \\#2 \\$User of class QUI\\\\ERP\\\\Order\\\\Basket\\\\BasketOrder constructor expects QUI\\\\Users\\\\User\\|null, QUI\\\\Interfaces\\\\Users\\\\User given\\.$#" message: "#^Call to method getId\\(\\) on an unknown class QUI\\\\ERP\\\\Shipping\\\\Api\\\\ShippingInterface\\.$#"
count: 1 path: src/QUI/ERP/Order/AbstractOrder.php
path: ajax/frontend/basket/controls/basket.php -
message: "#^Parameter \\$Shipping of method QUI\\\\ERP\\\\Order\\\\AbstractOrder::validateShipping\\(\\) has invalid type QUI\\\\ERP\\\\Shipping\\\\Api\\\\ShippingInterface\\.$#"
- path: src/QUI/ERP/Order/AbstractOrder.php
message: "#^Using nullsafe method call on non\\-nullable type QUI\\\\ERP\\\\Products\\\\Product\\\\ProductList\\. Use \\-\\> instead\\.$#" -
count: 1 message: "#^Call to method setErpEntity\\(\\) on an unknown class QUI\\\\ERP\\\\Shipping\\\\Api\\\\ShippingInterface\\.$#"
path: ajax/frontend/basket/removePos.php path: src/QUI/ERP/Order/AbstractOrder.php
-
- message: "#^Call to method isValid\\(\\) on an unknown class QUI\\\\ERP\\\\Shipping\\\\Api\\\\ShippingInterface\\.$#"
message: "#^Parameter \\#2 \\$User of class QUI\\\\ERP\\\\Order\\\\Basket\\\\BasketOrder constructor expects QUI\\\\Users\\\\User\\|null, QUI\\\\Interfaces\\\\Users\\\\User given\\.$#" path: src/QUI/ERP/Order/AbstractOrder.php
count: 1 -
path: ajax/frontend/basket/save.php message: "#^Call to method canUsedInErpEntity\\(\\) on an unknown class QUI\\\\ERP\\\\Shipping\\\\Api\\\\ShippingInterface\\.$#"
path: src/QUI/ERP/Order/AbstractOrder.php
- -
message: "#^Call to an undefined method QUI\\\\ERP\\\\Order\\\\AbstractOrder\\:\\:getView\\(\\)\\.$#" message: "#^Call to method canUsedBy\\(\\) on an unknown class QUI\\\\ERP\\\\Shipping\\\\Api\\\\ShippingInterface\\.$#"
count: 1 path: src/QUI/ERP/Order/AbstractOrder.php
path: ajax/frontend/order/getOrderControl.php -
message: "#^Method QUI\\\\ERP\\\\Order\\\\AbstractOrder::getShippingStatus\\(\\) has invalid return type QUI\\\\ERP\\\\Shipping\\\\ShippingStatus\\\\Status\\.$#"
- path: src/QUI/ERP/Order/AbstractOrder.php
message: "#^Negated boolean expression is always false\\.$#" -
count: 1 message: "#^Parameter \\$status of method QUI\\\\ERP\\\\Order\\\\AbstractOrder::setShippingStatus\\(\\) has invalid type QUI\\\\ERP\\\\Shipping\\\\ShippingStatus\\\\Status\\.$#"
path: ajax/frontend/order/getStep.php path: src/QUI/ERP/Order/AbstractOrder.php
-
- message: "#^Class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary not found\\.$#"
message: "#^Call to an undefined method QUI\\\\ERP\\\\Order\\\\Controls\\\\AbstractOrderingStep\\:\\:savePayment\\(\\)\\.$#" path: src/QUI/ERP/Order/Controls/Order/Order.php
count: 1 -
path: ajax/frontend/order/processing/savePayment.php message: "#^Parameter \\$InvoiceTemporary of method QUI\\\\ERP\\\\Order\\\\EventHandling::onQuiqqerInvoiceTemporaryInvoicePostEnd\\(\\) has invalid type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary\\.$#"
path: src/QUI/ERP/Order/EventHandling.php
- -
message: "#^Negated boolean expression is always false\\.$#" message: "#^Parameter \\$Invoice of method QUI\\\\ERP\\\\Order\\\\EventHandling::onQuiqqerInvoiceTemporaryInvoicePostEnd\\(\\) has invalid type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Invoice\\.$#"
count: 1 path: src/QUI/ERP/Order/EventHandling.php
path: ajax/frontend/order/reload.php -
message: "#^Parameter \\$SalesOrder of method QUI\\\\ERP\\\\Order\\\\EventHandling::onQuiqqerSalesOrdersSaveEnd\\(\\) has invalid type QUI\\\\ERP\\\\SalesOrders\\\\SalesOrder\\.$#"
- path: src/QUI/ERP/Order/EventHandling.php
message: "#^If condition is always true\\.$#" -
count: 1 message: "#^Call to method getData\\(\\) on an unknown class QUI\\\\ERP\\\\SalesOrders\\\\SalesOrder\\.$#"
path: ajax/frontend/order/send.php path: src/QUI/ERP/Order/EventHandling.php
-
- message: "#^Call to method getShipping\\(\\) on an unknown class QUI\\\\ERP\\\\SalesOrders\\\\SalesOrder\\.$#"
message: "#^Call to an undefined method QUI\\\\ERP\\\\Products\\\\Interfaces\\\\ProductInterface\\:\\:setQuantity\\(\\)\\.$#" path: src/QUI/ERP/Order/EventHandling.php
count: 1 -
path: ajax/frontend/order/setQuantity.php message: "#^Call to method getShippingStatus\\(\\) on an unknown class QUI\\\\ERP\\\\SalesOrders\\\\SalesOrder\\.$#"
path: src/QUI/ERP/Order/EventHandling.php
- -
message: "#^Call to method canUsedBy\\(\\) on an unknown class QUI\\\\ERP\\\\Shipping\\\\Api\\\\ShippingInterface\\.$#" message: "#^Call to static method getInstance\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Handler\\.$#"
count: 1 path: src/QUI/ERP/Order/EventHandling.php
path: src/QUI/ERP/Order/AbstractOrder.php -
message: "#^Call to method getAttribute\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Invoice\\.$#"
- path: src/QUI/ERP/Order/FrontendUsers/Controls/UserOpenedOrders.php
message: "#^Call to method canUsedInErpEntity\\(\\) on an unknown class QUI\\\\ERP\\\\Shipping\\\\Api\\\\ShippingInterface\\.$#" -
count: 1 message: "#^Call to method getAttribute\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary\\.$#"
path: src/QUI/ERP/Order/AbstractOrder.php path: src/QUI/ERP/Order/FrontendUsers/Controls/UserOpenedOrders.php
-
- message: "#^Call to method getAttribute\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Invoice\\.$#"
message: "#^Call to method getId\\(\\) on an unknown class QUI\\\\ERP\\\\Shipping\\\\Api\\\\ShippingInterface\\.$#" path: src/QUI/ERP/Order/FrontendUsers/Controls/UserOrders.php
count: 1 -
path: src/QUI/ERP/Order/AbstractOrder.php message: "#^Call to method getAttribute\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary\\.$#"
path: src/QUI/ERP/Order/FrontendUsers/Controls/UserOrders.php
- -
message: "#^Call to method getId\\(\\) on an unknown class QUI\\\\ERP\\\\Shipping\\\\Types\\\\ShippingEntry\\.$#" message: "#^Method QUI\\\\ERP\\\\Order\\\\Order::getInvoice\\(\\) has invalid return type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Invoice\\.$#"
count: 1 path: src/QUI/ERP/Order/Order.php
path: src/QUI/ERP/Order/AbstractOrder.php -
message: "#^Method QUI\\\\ERP\\\\Order\\\\Order::getInvoice\\(\\) has invalid return type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary\\.$#"
- path: src/QUI/ERP/Order/Order.php
message: "#^Call to method getType\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Invoice\\.$#" -
count: 1 message: "#^PHPDoc tag @throws with type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Exception\\|QUI\\\\Exception is not subtype of Throwable$#"
path: src/QUI/ERP/Order/AbstractOrder.php path: src/QUI/ERP/Order/Order.php
-
- message: "#^Call to static method getInstance\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Handler\\.$#"
message: "#^Call to method getType\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary\\.$#" path: src/QUI/ERP/Order/Order.php
count: 1 -
path: src/QUI/ERP/Order/AbstractOrder.php message: "#^Instantiated class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Exception not found\\.$#"
path: src/QUI/ERP/Order/Order.php
- -
message: "#^Call to method isValid\\(\\) on an unknown class QUI\\\\ERP\\\\Shipping\\\\Api\\\\ShippingInterface\\.$#" message: "#^Throwing object of an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Exception\\.$#"
count: 1 path: src/QUI/ERP/Order/Order.php
path: src/QUI/ERP/Order/AbstractOrder.php -
message: "#^Method QUI\\\\ERP\\\\Order\\\\Order::createInvoice\\(\\) has invalid return type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Invoice\\.$#"
- path: src/QUI/ERP/Order/Order.php
message: "#^Call to method setErpEntity\\(\\) on an unknown class QUI\\\\ERP\\\\Shipping\\\\Api\\\\ShippingInterface\\.$#" -
count: 1 message: "#^Method QUI\\\\ERP\\\\Order\\\\Order::createInvoice\\(\\) has invalid return type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary\\.$#"
path: src/QUI/ERP/Order/AbstractOrder.php path: src/QUI/ERP/Order/Order.php
-
- message: "#^Call to static method addressRequirement\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Utils\\\\Invoice\\.$#"
message: "#^Cannot call method getId\\(\\) on QUI\\\\ERP\\\\Shipping\\\\ShippingStatus\\\\Status\\|true\\.$#" path: src/QUI/ERP/Order/Order.php
count: 1 -
path: src/QUI/ERP/Order/AbstractOrder.php message: "#^Call to static method addressRequirementThreshold\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Utils\\\\Invoice\\.$#"
path: src/QUI/ERP/Order/Order.php
- -
message: "#^Method QUI\\\\ERP\\\\Order\\\\AbstractOrder\\:\\:getShipping\\(\\) has invalid return type QUI\\\\ERP\\\\Shipping\\\\Types\\\\ShippingEntry\\.$#" message: "#^Call to static method getInstance\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Factory\\.$#"
count: 2 path: src/QUI/ERP/Order/Order.php
path: src/QUI/ERP/Order/AbstractOrder.php -
message: "#^Method QUI\\\\ERP\\\\Order\\\\Order::createSalesOrder\\(\\) has invalid return type QUI\\\\ERP\\\\SalesOrders\\\\SalesOrder\\.$#"
- path: src/QUI/ERP/Order/Order.php
message: "#^Method QUI\\\\ERP\\\\Order\\\\AbstractOrder\\:\\:getShippingStatus\\(\\) has invalid return type QUI\\\\ERP\\\\Shipping\\\\ShippingStatus\\\\Status\\.$#" -
count: 2 message: "#^Call to static method createSalesOrder\\(\\) on an unknown class QUI\\\\ERP\\\\SalesOrders\\\\Handler\\.$#"
path: src/QUI/ERP/Order/AbstractOrder.php path: src/QUI/ERP/Order/Order.php
-
- message: "#^Method QUI\\\\ERP\\\\Order\\\\Order::post\\(\\) has invalid return type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Invoice\\.$#"
message: "#^Parameter \\#1 \\$Shipping of method QUI\\\\ERP\\\\Order\\\\AbstractOrder\\:\\:validateShipping\\(\\) expects QUI\\\\ERP\\\\Shipping\\\\Api\\\\ShippingInterface\\|null, QUI\\\\ERP\\\\Shipping\\\\Types\\\\ShippingEntry\\|null given\\.$#" path: src/QUI/ERP/Order/Order.php
count: 1 -
path: src/QUI/ERP/Order/AbstractOrder.php message: "#^Method QUI\\\\ERP\\\\Order\\\\Order::post\\(\\) has invalid return type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary\\.$#"
path: src/QUI/ERP/Order/Order.php
- -
message: "#^Parameter \\#2 \\$User of class QUI\\\\ERP\\\\Order\\\\Basket\\\\BasketOrder constructor expects QUI\\\\Users\\\\User\\|null, QUI\\\\ERP\\\\User\\|null given\\.$#" message: "#^Method QUI\\\\ERP\\\\Order\\\\OrderInProcess::getInvoice\\(\\) has invalid return type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Invoice\\.$#"
count: 1 path: src/QUI/ERP/Order/OrderInProcess.php
path: src/QUI/ERP/Order/AbstractOrder.php -
message: "#^Method QUI\\\\ERP\\\\Order\\\\OrderInProcess::getInvoice\\(\\) has invalid return type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary\\.$#"
- path: src/QUI/ERP/Order/OrderInProcess.php
message: "#^Parameter \\$Shipping of method QUI\\\\ERP\\\\Order\\\\AbstractOrder\\:\\:setShipping\\(\\) has invalid type QUI\\\\ERP\\\\Shipping\\\\Api\\\\ShippingInterface\\.$#" -
count: 2 message: "#^PHPDoc tag @throws with type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Exception\\|QUI\\\\Exception is not subtype of Throwable$#"
path: src/QUI/ERP/Order/AbstractOrder.php path: src/QUI/ERP/Order/OrderInProcess.php
-
- message: "#^Instantiated class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Exception not found\\.$#"
message: "#^Parameter \\$Shipping of method QUI\\\\ERP\\\\Order\\\\AbstractOrder\\:\\:validateShipping\\(\\) has invalid type QUI\\\\ERP\\\\Shipping\\\\Api\\\\ShippingInterface\\.$#" path: src/QUI/ERP/Order/OrderInProcess.php
count: 2 -
path: src/QUI/ERP/Order/AbstractOrder.php message: "#^Throwing object of an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Exception\\.$#"
path: src/QUI/ERP/Order/OrderInProcess.php
- -
message: "#^Parameter \\$status of method QUI\\\\ERP\\\\Order\\\\AbstractOrder\\:\\:setShippingStatus\\(\\) has invalid type QUI\\\\ERP\\\\Shipping\\\\ShippingStatus\\\\Status\\.$#" message: "#^Method QUI\\\\ERP\\\\Order\\\\OrderInterface::getInvoice\\(\\) has invalid return type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Invoice\\.$#"
count: 2 path: src/QUI/ERP/Order/OrderInterface.php
path: src/QUI/ERP/Order/AbstractOrder.php -
message: "#^Method QUI\\\\ERP\\\\Order\\\\OrderInterface::getInvoice\\(\\) has invalid return type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary\\.$#"
- path: src/QUI/ERP/Order/OrderInterface.php
message: "#^Property QUI\\\\ERP\\\\Order\\\\AbstractOrder\\:\\:\\$ShippingStatus has unknown class QUI\\\\ERP\\\\Shipping\\\\ShippingStatus\\\\Status as its type\\.$#" -
count: 2 message: "#^PHPDoc tag @throws with type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Exception is not subtype of Throwable$#"
path: src/QUI/ERP/Order/AbstractOrder.php path: src/QUI/ERP/Order/OrderInterface.php
-
- message: "#^Method QUI\\\\ERP\\\\Order\\\\OrderInterface::getShipping\\(\\) has invalid return type QUI\\\\ERP\\\\Shipping\\\\Types\\\\ShippingEntry\\.$#"
message: "#^Call to an undefined method QUI\\\\ERP\\\\Products\\\\Interfaces\\\\ProductInterface\\:\\:getProductSetParentUuid\\(\\)\\.$#" path: src/QUI/ERP/Order/OrderInterface.php
count: 2 -
path: src/QUI/ERP/Order/Basket/Basket.php message: "#^Parameter \\$Shipping of method QUI\\\\ERP\\\\Order\\\\OrderInterface::setShipping\\(\\) has invalid type QUI\\\\ERP\\\\Shipping\\\\Api\\\\ShippingInterface\\.$#"
path: src/QUI/ERP/Order/OrderInterface.php
- -
message: "#^Call to an undefined method QUI\\\\ERP\\\\Products\\\\Interfaces\\\\ProductInterface\\:\\:getQuantity\\(\\)\\.$#" message: "#^Method QUI\\\\ERP\\\\Order\\\\OrderView::getShippingStatus\\(\\) has invalid return type QUI\\\\ERP\\\\Shipping\\\\ShippingStatus\\\\Status\\.$#"
count: 2 path: src/QUI/ERP/Order/OrderView.php
path: src/QUI/ERP/Order/Basket/Basket.php -
message: "#^Method QUI\\\\ERP\\\\Order\\\\OrderView::getInvoice\\(\\) has invalid return type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Invoice\\.$#"
- path: src/QUI/ERP/Order/OrderView.php
message: "#^Call to an undefined method QUI\\\\ERP\\\\Products\\\\Interfaces\\\\ProductInterface\\:\\:getUuid\\(\\)\\.$#" -
count: 2 message: "#^Method QUI\\\\ERP\\\\Order\\\\OrderView::getInvoice\\(\\) has invalid return type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary\\.$#"
path: src/QUI/ERP/Order/Basket/Basket.php path: src/QUI/ERP/Order/OrderView.php
-
- message: "#^PHPDoc tag @throws with type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Exception\\|QUI\\\\Exception is not subtype of Throwable$#"
message: "#^Call to an undefined method QUI\\\\ERP\\\\Products\\\\Interfaces\\\\ProductInterface\\:\\:toArticle\\(\\)\\.$#" path: src/QUI/ERP/Order/OrderView.php
count: 1 -
path: src/QUI/ERP/Order/Basket/Basket.php message: "#^Parameter \\$Shipping of method QUI\\\\ERP\\\\Order\\\\OrderView::setShipping\\(\\) has invalid type QUI\\\\ERP\\\\Shipping\\\\Api\\\\ShippingInterface\\.$#"
path: src/QUI/ERP/Order/OrderView.php
- -
message: "#^Class QUI\\\\ERP\\\\Order\\\\Exception referenced with incorrect case\\: QUI\\\\Erp\\\\Order\\\\Exception\\.$#" message: "#^Method QUI\\\\ERP\\\\Order\\\\OrderView::getShipping\\(\\) has invalid return type QUI\\\\ERP\\\\Shipping\\\\Types\\\\ShippingEntry\\.$#"
count: 1 path: src/QUI/ERP/Order/OrderView.php
path: src/QUI/ERP/Order/Basket/Basket.php -
message: "#^Instantiated class chillerlan\\\\QRCode\\\\QROptions not found\\.$#"
- path: src/QUI/ERP/Order/Output/OutputProviderOrder.php
message: "#^Call to an undefined method QUI\\\\ERP\\\\Products\\\\Interfaces\\\\ProductInterface\\:\\:getQuantity\\(\\)\\.$#" -
count: 1 message: "#^Access to constant VERSION_AUTO on an unknown class chillerlan\\\\QRCode\\\\QRCode\\.$#"
path: src/QUI/ERP/Order/Basket/BasketGuest.php path: src/QUI/ERP/Order/Output/OutputProviderOrder.php
-
- message: "#^Access to constant OUTPUT_IMAGE_PNG on an unknown class chillerlan\\\\QRCode\\\\QRCode\\.$#"
message: "#^Call to an undefined method QUI\\\\ERP\\\\Products\\\\Interfaces\\\\ProductInterface\\:\\:getQuantity\\(\\)\\.$#" path: src/QUI/ERP/Order/Output/OutputProviderOrder.php
count: 2 -
path: src/QUI/ERP/Order/Basket/BasketOrder.php message: "#^Access to constant ECC_M on an unknown class chillerlan\\\\QRCode\\\\QRCode\\.$#"
path: src/QUI/ERP/Order/Output/OutputProviderOrder.php
- -
message: "#^Call to an undefined method QUI\\\\ERP\\\\Products\\\\Interfaces\\\\ProductInterface\\:\\:setQuantity\\(\\)\\.$#" message: "#^Instantiated class chillerlan\\\\QRCode\\\\QRCode not found\\.$#"
count: 1 path: src/QUI/ERP/Order/Output/OutputProviderOrder.php
path: src/QUI/ERP/Order/Basket/BasketOrder.php -
message: "#^Call to method render\\(\\) on an unknown class chillerlan\\\\QRCode\\\\QRCode\\.$#"
- path: src/QUI/ERP/Order/Output/OutputProviderOrder.php
message: "#^Call to an undefined method QUI\\\\ERP\\\\Products\\\\Interfaces\\\\ProductInterface\\:\\:toArray\\(\\)\\.$#" -
count: 1 message: "#^Call to method getUUID\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Invoice\\.$#"
path: src/QUI/ERP/Order/Basket/BasketOrder.php path: src/QUI/ERP/Order/Search.php
-
- message: "#^Call to method getUUID\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary\\.$#"
message: "#^Call to an undefined method QUI\\\\ERP\\\\Products\\\\Interfaces\\\\ProductInterface\\:\\:toArticle\\(\\)\\.$#" path: src/QUI/ERP/Order/Search.php
count: 1 -
path: src/QUI/ERP/Order/Basket/BasketOrder.php message: "#^Call to method getAttribute\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Invoice\\.$#"
path: src/QUI/ERP/Order/Search.php
- -
message: "#^Call to an undefined method QUI\\\\ERP\\\\Products\\\\Interfaces\\\\FieldInterface\\:\\:getAttributesForUniqueField\\(\\)\\.$#" message: "#^Call to method getAttribute\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary\\.$#"
count: 1 path: src/QUI/ERP/Order/Search.php
path: src/QUI/ERP/Order/Basket/Product.php -
message: "#^Class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Articles\\\\Text not found\\.$#"
- path: src/QUI/ERP/Order/Utils/Utils.php
message: "#^Class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary not found\\.$#"
count: 2 \ No newline at end of file
path: src/QUI/ERP/Order/Controls/Order/Order.php
-
message: "#^Instanceof between null and QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary will always evaluate to false\\.$#"
count: 1
path: src/QUI/ERP/Order/Controls/Order/Order.php
-
message: "#^Call to an undefined method QUI\\\\ERP\\\\Order\\\\AbstractOrder\\:\\:save\\(\\)\\.$#"
count: 1
path: src/QUI/ERP/Order/Controls/OrderProcess/Checkout.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
path: src/QUI/ERP/Order/Controls/OrderProcess/Checkout.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
path: src/QUI/ERP/Order/Controls/OrderProcess/CustomerData.php
-
message: "#^Parameter \\#2 \\$Step of method QUI\\\\ERP\\\\Order\\\\AbstractOrderProcessProvider\\:\\:getDisplay\\(\\) expects null, \\$this\\(QUI\\\\ERP\\\\Order\\\\Controls\\\\OrderProcess\\\\Processing\\) given\\.$#"
count: 1
path: src/QUI/ERP/Order/Controls/OrderProcess/Processing.php
-
message: "#^Call to method getData\\(\\) on an unknown class QUI\\\\ERP\\\\SalesOrders\\\\SalesOrder\\.$#"
count: 2
path: src/QUI/ERP/Order/EventHandling.php
-
message: "#^Call to method getShipping\\(\\) on an unknown class QUI\\\\ERP\\\\SalesOrders\\\\SalesOrder\\.$#"
count: 2
path: src/QUI/ERP/Order/EventHandling.php
-
message: "#^Call to method getShippingStatus\\(\\) on an unknown class QUI\\\\ERP\\\\SalesOrders\\\\SalesOrder\\.$#"
count: 2
path: src/QUI/ERP/Order/EventHandling.php
-
message: "#^Call to static method getInstance\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Handler\\.$#"
count: 1
path: src/QUI/ERP/Order/EventHandling.php
-
message: "#^Instanceof between \\*NEVER\\* and QUI\\\\ERP\\\\Products\\\\Product\\\\Types\\\\VariantChild will always evaluate to false\\.$#"
count: 1
path: src/QUI/ERP/Order/EventHandling.php
-
message: "#^Parameter \\$Invoice of method QUI\\\\ERP\\\\Order\\\\EventHandling\\:\\:onQuiqqerInvoiceTemporaryInvoicePostEnd\\(\\) has invalid type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Invoice\\.$#"
count: 2
path: src/QUI/ERP/Order/EventHandling.php
-
message: "#^Parameter \\$InvoiceTemporary of method QUI\\\\ERP\\\\Order\\\\EventHandling\\:\\:onQuiqqerInvoiceTemporaryInvoicePostEnd\\(\\) has invalid type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary\\.$#"
count: 2
path: src/QUI/ERP/Order/EventHandling.php
-
message: "#^Parameter \\$SalesOrder of method QUI\\\\ERP\\\\Order\\\\EventHandling\\:\\:onQuiqqerSalesOrdersSaveEnd\\(\\) has invalid type QUI\\\\ERP\\\\SalesOrders\\\\SalesOrder\\.$#"
count: 1
path: src/QUI/ERP/Order/EventHandling.php
-
message: "#^Result of \\|\\| is always true\\.$#"
count: 1
path: src/QUI/ERP/Order/EventHandling.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
path: src/QUI/ERP/Order/EventHandling.php
-
message: "#^Comparison operation \"\\!\\=\" between ''\\|'0'\\|array\\{\\}\\|false and 0 results in an error\\.$#"
count: 1
path: src/QUI/ERP/Order/Factory.php
-
message: "#^Call to method getAttribute\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Invoice\\.$#"
count: 1
path: src/QUI/ERP/Order/FrontendUsers/Controls/UserOpenedOrders.php
-
message: "#^Call to method getAttribute\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary\\.$#"
count: 1
path: src/QUI/ERP/Order/FrontendUsers/Controls/UserOpenedOrders.php
-
message: "#^Call to an undefined method QUI\\\\ERP\\\\Products\\\\Interfaces\\\\ProductTypeInterface\\:\\:getImage\\(\\)\\.$#"
count: 1
path: src/QUI/ERP/Order/FrontendUsers/Controls/UserOrders.php
-
message: "#^Call to method getAttribute\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Invoice\\.$#"
count: 2
path: src/QUI/ERP/Order/FrontendUsers/Controls/UserOrders.php
-
message: "#^Call to method getAttribute\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary\\.$#"
count: 2
path: src/QUI/ERP/Order/FrontendUsers/Controls/UserOrders.php
-
message: "#^Cannot call method getTitle\\(\\) on QUI\\\\ERP\\\\Shipping\\\\ShippingStatus\\\\Status\\|true\\.$#"
count: 1
path: src/QUI/ERP/Order/FrontendUsers/Controls/UserOrders.php
-
message: "#^Call to an undefined method QUI\\\\ERP\\\\Order\\\\OrderInterface\\:\\:getAttribute\\(\\)\\.$#"
count: 2
path: src/QUI/ERP/Order/Mail.php
-
message: "#^Call to method createPDF\\(\\) on an unknown class QUI\\\\HtmlToPdf\\\\Document\\.$#"
count: 1
path: src/QUI/ERP/Order/Mail.php
-
message: "#^Call to method setContentHTML\\(\\) on an unknown class QUI\\\\HtmlToPdf\\\\Document\\.$#"
count: 1
path: src/QUI/ERP/Order/Mail.php
-
message: "#^Instantiated class QUI\\\\HtmlToPdf\\\\Document not found\\.$#"
count: 1
path: src/QUI/ERP/Order/Mail.php
-
message: "#^Method QUI\\\\Interfaces\\\\Users\\\\User\\:\\:getAddress\\(\\) invoked with 0 parameters, 1 required\\.$#"
count: 1
path: src/QUI/ERP/Order/Mail.php
-
message: "#^Call to method getId\\(\\) on an unknown class QUI\\\\ERP\\\\Shipping\\\\Types\\\\ShippingEntry\\.$#"
count: 1
path: src/QUI/ERP/Order/Order.php
-
message: "#^Call to method toJSON\\(\\) on an unknown class QUI\\\\ERP\\\\Shipping\\\\Types\\\\ShippingEntry\\.$#"
count: 1
path: src/QUI/ERP/Order/Order.php
-
message: "#^Call to static method addressRequirement\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Utils\\\\Invoice\\.$#"
count: 1
path: src/QUI/ERP/Order/Order.php
-
message: "#^Call to static method addressRequirementThreshold\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Utils\\\\Invoice\\.$#"
count: 1
path: src/QUI/ERP/Order/Order.php
-
message: "#^Call to static method createSalesOrder\\(\\) on an unknown class QUI\\\\ERP\\\\SalesOrders\\\\Handler\\.$#"
count: 1
path: src/QUI/ERP/Order/Order.php
-
message: "#^Call to static method getInstance\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Factory\\.$#"
count: 1
path: src/QUI/ERP/Order/Order.php
-
message: "#^Call to static method getInstance\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Handler\\.$#"
count: 6
path: src/QUI/ERP/Order/Order.php
-
message: "#^Cannot call method getId\\(\\) on QUI\\\\ERP\\\\Shipping\\\\ShippingStatus\\\\Status\\|true\\.$#"
count: 1
path: src/QUI/ERP/Order/Order.php
-
message: "#^If condition is always true\\.$#"
count: 2
path: src/QUI/ERP/Order/Order.php
-
message: "#^Instantiated class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Exception not found\\.$#"
count: 1
path: src/QUI/ERP/Order/Order.php
-
message: "#^Method QUI\\\\ERP\\\\Order\\\\Order\\:\\:createInvoice\\(\\) has invalid return type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Invoice\\.$#"
count: 2
path: src/QUI/ERP/Order/Order.php
-
message: "#^Method QUI\\\\ERP\\\\Order\\\\Order\\:\\:createInvoice\\(\\) has invalid return type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary\\.$#"
count: 2
path: src/QUI/ERP/Order/Order.php
-
message: "#^Method QUI\\\\ERP\\\\Order\\\\Order\\:\\:createSalesOrder\\(\\) has invalid return type QUI\\\\ERP\\\\SalesOrders\\\\SalesOrder\\.$#"
count: 2
path: src/QUI/ERP/Order/Order.php
-
message: "#^Method QUI\\\\ERP\\\\Order\\\\Order\\:\\:getInvoice\\(\\) has invalid return type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Invoice\\.$#"
count: 2
path: src/QUI/ERP/Order/Order.php
-
message: "#^Method QUI\\\\ERP\\\\Order\\\\Order\\:\\:getInvoice\\(\\) has invalid return type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary\\.$#"
count: 2
path: src/QUI/ERP/Order/Order.php
-
message: "#^Method QUI\\\\ERP\\\\Order\\\\Order\\:\\:post\\(\\) has invalid return type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Invoice\\.$#"
count: 2
path: src/QUI/ERP/Order/Order.php
-
message: "#^Method QUI\\\\ERP\\\\Order\\\\Order\\:\\:post\\(\\) has invalid return type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary\\.$#"
count: 2
path: src/QUI/ERP/Order/Order.php
-
message: "#^PHPDoc tag @throws with type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Exception\\|QUI\\\\Exception is not subtype of Throwable$#"
count: 1
path: src/QUI/ERP/Order/Order.php
-
message: "#^Throwing object of an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Exception\\.$#"
count: 1
path: src/QUI/ERP/Order/Order.php
-
message: "#^Call to an undefined method QUI\\\\ERP\\\\Products\\\\Interfaces\\\\ProductInterface\\:\\:toArticle\\(\\)\\.$#"
count: 1
path: src/QUI/ERP/Order/OrderInProcess.php
-
message: "#^Call to method getId\\(\\) on an unknown class QUI\\\\ERP\\\\Shipping\\\\Types\\\\ShippingEntry\\.$#"
count: 1
path: src/QUI/ERP/Order/OrderInProcess.php
-
message: "#^Call to method toArray\\(\\) on an unknown class QUI\\\\ERP\\\\Shipping\\\\Types\\\\ShippingEntry\\.$#"
count: 1
path: src/QUI/ERP/Order/OrderInProcess.php
-
message: "#^Cannot call method getId\\(\\) on QUI\\\\ERP\\\\Shipping\\\\ShippingStatus\\\\Status\\|true\\.$#"
count: 1
path: src/QUI/ERP/Order/OrderInProcess.php
-
message: "#^Instantiated class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Exception not found\\.$#"
count: 1
path: src/QUI/ERP/Order/OrderInProcess.php
-
message: "#^Method QUI\\\\ERP\\\\Order\\\\OrderInProcess\\:\\:getInvoice\\(\\) has invalid return type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Invoice\\.$#"
count: 2
path: src/QUI/ERP/Order/OrderInProcess.php
-
message: "#^Method QUI\\\\ERP\\\\Order\\\\OrderInProcess\\:\\:getInvoice\\(\\) has invalid return type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary\\.$#"
count: 2
path: src/QUI/ERP/Order/OrderInProcess.php
-
message: "#^PHPDoc tag @throws with type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Exception\\|QUI\\\\Exception is not subtype of Throwable$#"
count: 1
path: src/QUI/ERP/Order/OrderInProcess.php
-
message: "#^Parameter \\#2 \\$User of class QUI\\\\ERP\\\\Order\\\\Basket\\\\BasketOrder constructor expects QUI\\\\Users\\\\User\\|null, QUI\\\\ERP\\\\User\\|null given\\.$#"
count: 1
path: src/QUI/ERP/Order/OrderInProcess.php
-
message: "#^Throwing object of an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Exception\\.$#"
count: 1
path: src/QUI/ERP/Order/OrderInProcess.php
-
message: "#^Method QUI\\\\ERP\\\\Order\\\\OrderInterface\\:\\:getInvoice\\(\\) has invalid return type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Invoice\\.$#"
count: 2
path: src/QUI/ERP/Order/OrderInterface.php
-
message: "#^Method QUI\\\\ERP\\\\Order\\\\OrderInterface\\:\\:getInvoice\\(\\) has invalid return type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary\\.$#"
count: 2
path: src/QUI/ERP/Order/OrderInterface.php
-
message: "#^Method QUI\\\\ERP\\\\Order\\\\OrderInterface\\:\\:getShipping\\(\\) has invalid return type QUI\\\\ERP\\\\Shipping\\\\Types\\\\ShippingEntry\\.$#"
count: 2
path: src/QUI/ERP/Order/OrderInterface.php
-
message: "#^PHPDoc tag @throws with type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Exception is not subtype of Throwable$#"
count: 1
path: src/QUI/ERP/Order/OrderInterface.php
-
message: "#^Parameter \\$Shipping of method QUI\\\\ERP\\\\Order\\\\OrderInterface\\:\\:setShipping\\(\\) has invalid type QUI\\\\ERP\\\\Shipping\\\\Api\\\\ShippingInterface\\.$#"
count: 2
path: src/QUI/ERP/Order/OrderInterface.php
-
message: "#^Class QUI\\\\ERP\\\\Order\\\\Exception referenced with incorrect case\\: QUI\\\\Erp\\\\Order\\\\Exception\\.$#"
count: 2
path: src/QUI/ERP/Order/OrderProcess.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
path: src/QUI/ERP/Order/OrderProcess.php
-
message: "#^Parameter \\#2 \\$User of class QUI\\\\ERP\\\\Order\\\\Basket\\\\BasketOrder constructor expects QUI\\\\Users\\\\User\\|null, QUI\\\\Interfaces\\\\Users\\\\User given\\.$#"
count: 1
path: src/QUI/ERP/Order/OrderProcess.php
-
message: "#^Method QUI\\\\ERP\\\\Order\\\\OrderView\\:\\:getInvoice\\(\\) has invalid return type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Invoice\\.$#"
count: 2
path: src/QUI/ERP/Order/OrderView.php
-
message: "#^Method QUI\\\\ERP\\\\Order\\\\OrderView\\:\\:getInvoice\\(\\) has invalid return type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary\\.$#"
count: 2
path: src/QUI/ERP/Order/OrderView.php
-
message: "#^Method QUI\\\\ERP\\\\Order\\\\OrderView\\:\\:getShipping\\(\\) has invalid return type QUI\\\\ERP\\\\Shipping\\\\Types\\\\ShippingEntry\\.$#"
count: 2
path: src/QUI/ERP/Order/OrderView.php
-
message: "#^Method QUI\\\\ERP\\\\Order\\\\OrderView\\:\\:getShippingStatus\\(\\) has invalid return type QUI\\\\ERP\\\\Shipping\\\\ShippingStatus\\\\Status\\.$#"
count: 2
path: src/QUI/ERP/Order/OrderView.php
-
message: "#^Method QUI\\\\ERP\\\\Order\\\\OrderView\\:\\:toPDF\\(\\) has invalid return type QUI\\\\HtmlToPdf\\\\Document\\.$#"
count: 2
path: src/QUI/ERP/Order/OrderView.php
-
message: "#^PHPDoc tag @throws with type QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Exception\\|QUI\\\\Exception is not subtype of Throwable$#"
count: 1
path: src/QUI/ERP/Order/OrderView.php
-
message: "#^Parameter \\$Shipping of method QUI\\\\ERP\\\\Order\\\\OrderView\\:\\:setShipping\\(\\) has invalid type QUI\\\\ERP\\\\Shipping\\\\Api\\\\ShippingInterface\\.$#"
count: 2
path: src/QUI/ERP/Order/OrderView.php
-
message: "#^Access to constant ECC_M on an unknown class chillerlan\\\\QRCode\\\\QRCode\\.$#"
count: 1
path: src/QUI/ERP/Order/Output/OutputProviderOrder.php
-
message: "#^Access to constant OUTPUT_IMAGE_PNG on an unknown class chillerlan\\\\QRCode\\\\QRCode\\.$#"
count: 1
path: src/QUI/ERP/Order/Output/OutputProviderOrder.php
-
message: "#^Access to constant VERSION_AUTO on an unknown class chillerlan\\\\QRCode\\\\QRCode\\.$#"
count: 1
path: src/QUI/ERP/Order/Output/OutputProviderOrder.php
-
message: "#^Call to method render\\(\\) on an unknown class chillerlan\\\\QRCode\\\\QRCode\\.$#"
count: 1
path: src/QUI/ERP/Order/Output/OutputProviderOrder.php
-
message: "#^Instantiated class chillerlan\\\\QRCode\\\\QRCode not found\\.$#"
count: 1
path: src/QUI/ERP/Order/Output/OutputProviderOrder.php
-
message: "#^Instantiated class chillerlan\\\\QRCode\\\\QROptions not found\\.$#"
count: 1
path: src/QUI/ERP/Order/Output/OutputProviderOrder.php
-
message: "#^Parameter \\#2 \\$key of method QUI\\\\Config\\:\\:setValue\\(\\) expects string\\|null, int given\\.$#"
count: 1
path: src/QUI/ERP/Order/ProcessingStatus/Factory.php
-
message: "#^Parameter \\#2 \\$key of method QUI\\\\Config\\:\\:del\\(\\) expects string\\|null, int given\\.$#"
count: 1
path: src/QUI/ERP/Order/ProcessingStatus/Handler.php
-
message: "#^Parameter \\#2 \\$key of method QUI\\\\Config\\:\\:setValue\\(\\) expects string\\|null, int given\\.$#"
count: 2
path: src/QUI/ERP/Order/ProcessingStatus/Handler.php
-
message: "#^Call to method getAttribute\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Invoice\\.$#"
count: 1
path: src/QUI/ERP/Order/Search.php
-
message: "#^Call to method getAttribute\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary\\.$#"
count: 1
path: src/QUI/ERP/Order/Search.php
-
message: "#^Call to method getUUID\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Invoice\\.$#"
count: 1
path: src/QUI/ERP/Order/Search.php
-
message: "#^Call to method getUUID\\(\\) on an unknown class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\InvoiceTemporary\\.$#"
count: 1
path: src/QUI/ERP/Order/Search.php
-
message: "#^Cannot call method getColor\\(\\) on QUI\\\\ERP\\\\Shipping\\\\ShippingStatus\\\\Status\\|true\\.$#"
count: 1
path: src/QUI/ERP/Order/Search.php
-
message: "#^Cannot call method getId\\(\\) on QUI\\\\ERP\\\\Shipping\\\\ShippingStatus\\\\Status\\|true\\.$#"
count: 1
path: src/QUI/ERP/Order/Search.php
-
message: "#^Cannot call method getTitle\\(\\) on QUI\\\\ERP\\\\Shipping\\\\ShippingStatus\\\\Status\\|true\\.$#"
count: 1
path: src/QUI/ERP/Order/Search.php
-
message: "#^Result of closure \\(void\\) is used\\.$#"
count: 1
path: src/QUI/ERP/Order/Search.php
-
message: "#^Call to method getPrice\\(\\) on an unknown class QUI\\\\ERP\\\\Shipping\\\\Types\\\\ShippingEntry\\.$#"
count: 1
path: src/QUI/ERP/Order/Utils/DataLayer.php
-
message: "#^Class QUI\\\\ERP\\\\Accounting\\\\Invoice\\\\Articles\\\\Text not found\\.$#"
count: 1
path: src/QUI/ERP/Order/Utils/Utils.php
-
message: "#^Empty array passed to foreach\\.$#"
count: 1
path: src/QUI/ERP/Order/Utils/Utils.php
...@@ -37,6 +37,17 @@ ...@@ -37,6 +37,17 @@
</conf> </conf>
</section> </section>
<section name="userProfile">
<conf name="showArticleImage">
<type><![CDATA[bool]]></type>
<defaultvalue><![CDATA[1]]></defaultvalue>
</conf>
<conf name="disableProductLinks">
<type><![CDATA[bool]]></type>
<defaultvalue><![CDATA[0]]></defaultvalue>
</conf>
</section>
<section name="mails"> <section name="mails">
<!-- Datenschutz --> <!-- Datenschutz -->
<conf name="privacyPolicy"> <conf name="privacyPolicy">
...@@ -234,6 +245,36 @@ ...@@ -234,6 +245,36 @@
</input> </input>
</settings> </settings>
<settings>
<title>
<locale group="quiqqer/order" var="order.settings.userProfile.title"/>
</title>
<input type="checkbox" conf="userProfile.showArticleImage">
<text>
<locale group="quiqqer/order"
var="order.settings.userProfile.showArticleImage"/>
</text>
<description>
<locale group="quiqqer/order"
var="order.settings.userProfile.showArticleImage.desc"
/>
</description>
</input>
<input type="checkbox" conf="userProfile.disableProductLinks">
<text>
<locale group="quiqqer/order"
var="order.settings.userProfile.disableProductLinks"/>
</text>
<description>
<locale group="quiqqer/order"
var="order.settings.userProfile.disableProductLinks.desc"
/>
</description>
</input>
</settings>
<settings> <settings>
<title> <title>
<locale group="quiqqer/order" var="order.settings.mails.attachments"/> <locale group="quiqqer/order" var="order.settings.mails.attachments"/>
......
...@@ -85,7 +85,7 @@ abstract class AbstractOrder extends QUI\QDOM implements OrderInterface, ErpEnti ...@@ -85,7 +85,7 @@ abstract class AbstractOrder extends QUI\QDOM implements OrderInterface, ErpEnti
/** /**
* @var Status|StatusUnknown|null * @var Status|StatusUnknown|null
*/ */
protected Status|StatusUnknown|null $Status = null; protected Status | StatusUnknown | null $Status = null;
/** /**
* @var null|QUI\ERP\Shipping\ShippingStatus\Status * @var null|QUI\ERP\Shipping\ShippingStatus\Status
...@@ -102,12 +102,12 @@ abstract class AbstractOrder extends QUI\QDOM implements OrderInterface, ErpEnti ...@@ -102,12 +102,12 @@ abstract class AbstractOrder extends QUI\QDOM implements OrderInterface, ErpEnti
* *
* @var int|bool|string * @var int|bool|string
*/ */
protected string|int|bool|null $invoiceId = false; protected string | int | bool | null $invoiceId = false;
/** /**
* @var string|int|null * @var string|int|null
*/ */
protected null|int|string $customerId; protected null | int | string $customerId;
/** /**
* @var array|null * @var array|null
...@@ -153,7 +153,7 @@ abstract class AbstractOrder extends QUI\QDOM implements OrderInterface, ErpEnti ...@@ -153,7 +153,7 @@ abstract class AbstractOrder extends QUI\QDOM implements OrderInterface, ErpEnti
* *
* @var integer|string * @var integer|string
*/ */
protected int|string $cUser; protected int | string $cUser;
/** /**
* @var ArticleList|null * @var ArticleList|null
...@@ -439,6 +439,7 @@ protected function setDataBaseData(array $data): void ...@@ -439,6 +439,7 @@ protected function setDataBaseData(array $data): void
// validate shipping // validate shipping
try { try {
// @phpstan-ignore-next-line
$this->validateShipping($this->getShipping()); $this->validateShipping($this->getShipping());
} catch (QUI\Exception) { } catch (QUI\Exception) {
$this->shippingId = null; $this->shippingId = null;
...@@ -473,7 +474,7 @@ protected function setDataBaseData(array $data): void ...@@ -473,7 +474,7 @@ protected function setDataBaseData(array $data): void
* @param QUI\Interfaces\Users\User|null $PermissionUser * @param QUI\Interfaces\Users\User|null $PermissionUser
* @return ErpEntityInterface|null * @return ErpEntityInterface|null
*/ */
public function reversal(string $reason = '', QUI\Interfaces\Users\User $PermissionUser = null): ?ErpEntityInterface public function reversal(string $reason = '', null | QUI\Interfaces\Users\User $PermissionUser = null): ?ErpEntityInterface
{ {
$this->delete($PermissionUser); $this->delete($PermissionUser);
return null; return null;
...@@ -609,7 +610,7 @@ public function recalculate($Basket = null): void ...@@ -609,7 +610,7 @@ public function recalculate($Basket = null): void
* *
* @param QUI\Interfaces\Users\User|null $PermissionUser - optional, permission user, default = session user * @param QUI\Interfaces\Users\User|null $PermissionUser - optional, permission user, default = session user
*/ */
abstract public function clear(QUI\Interfaces\Users\User $PermissionUser = null); abstract public function clear(null | QUI\Interfaces\Users\User $PermissionUser = null);
/** /**
* Refresh the order data * Refresh the order data
...@@ -623,14 +624,14 @@ abstract public function refresh(); ...@@ -623,14 +624,14 @@ abstract public function refresh();
* @param QUI\Interfaces\Users\User|null $PermissionUser - optional, permission user, default = session user * @param QUI\Interfaces\Users\User|null $PermissionUser - optional, permission user, default = session user
* @throws QUI\Exception * @throws QUI\Exception
*/ */
abstract public function update(QUI\Interfaces\Users\User $PermissionUser = null); abstract public function update(null | QUI\Interfaces\Users\User $PermissionUser = null);
/** /**
* Delete the order * Delete the order
* *
* @param QUI\Interfaces\Users\User|null $PermissionUser - optional, permission user, default = session user * @param QUI\Interfaces\Users\User|null $PermissionUser - optional, permission user, default = session user
*/ */
abstract public function delete(QUI\Interfaces\Users\User $PermissionUser = null); abstract public function delete(null | QUI\Interfaces\Users\User $PermissionUser = null);
/** /**
* Is the order posted / submitted * Is the order posted / submitted
...@@ -673,13 +674,13 @@ public function toArray(): array ...@@ -673,13 +674,13 @@ public function toArray(): array
QUI\System\Log::writeDebugException($Exception); QUI\System\Log::writeDebugException($Exception);
} }
if ($this->getShippingStatus()) { if (class_exists('QUI\ERP\Shipping\ShippingStatus\Status') && $this->getShippingStatus()) {
$shippingStatus = $this->getShippingStatus()->getId(); $shippingStatus = $this->getShippingStatus()->getId();
} }
$shipping = ''; $shipping = '';
if ($this->getShipping()) { if (class_exists('QUI\ERP\Shipping\Types\ShippingEntry') && $this->getShipping()) {
$shipping = $this->getShipping()->getId(); $shipping = $this->getShipping()->getId();
} }
...@@ -1074,7 +1075,7 @@ public function hasDeliveryAddress(): bool ...@@ -1074,7 +1075,7 @@ public function hasDeliveryAddress(): bool
* *
* @param array|QUI\ERP\Address $address * @param array|QUI\ERP\Address $address
*/ */
public function setDeliveryAddress(array|QUI\ERP\Address $address): void public function setDeliveryAddress(array | QUI\ERP\Address $address): void
{ {
if ($address instanceof QUI\ERP\Address) { if ($address instanceof QUI\ERP\Address) {
$this->addressDelivery = $address->getAttributes(); $this->addressDelivery = $address->getAttributes();
...@@ -1097,7 +1098,7 @@ public function removeDeliveryAddress(): void ...@@ -1097,7 +1098,7 @@ public function removeDeliveryAddress(): void
* *
* @param array|QUI\ERP\Address|QUI\Users\Address $address * @param array|QUI\ERP\Address|QUI\Users\Address $address
*/ */
public function setInvoiceAddress(array|QUI\ERP\Address|QUI\Users\Address $address): void public function setInvoiceAddress(array | QUI\ERP\Address | QUI\Users\Address $address): void
{ {
if ($address instanceof QUI\Users\Address) { if ($address instanceof QUI\Users\Address) {
$this->addressInvoice = $address->getAttributes(); $this->addressInvoice = $address->getAttributes();
...@@ -1170,7 +1171,7 @@ public function setCurrency(QUI\ERP\Currency\Currency $Currency): void ...@@ -1170,7 +1171,7 @@ public function setCurrency(QUI\ERP\Currency\Currency $Currency): void
* @throws QUI\Exception * @throws QUI\Exception
* @throws ExceptionStack * @throws ExceptionStack
*/ */
public function setCustomer(QUI\Interfaces\Users\User|array|User $User): void public function setCustomer(QUI\Interfaces\Users\User | array | User $User): void
{ {
$oldCustomerId = $this->customerId; $oldCustomerId = $this->customerId;
...@@ -1429,7 +1430,7 @@ public function isPaid(): bool ...@@ -1429,7 +1430,7 @@ public function isPaid(): bool
* *
* @todo Payment->canBeUsed() noch implementieren * @todo Payment->canBeUsed() noch implementieren
*/ */
public function setPayment(int|string $paymentId): void public function setPayment(int | string $paymentId): void
{ {
$Payments = Payments::getInstance(); $Payments = Payments::getInstance();
...@@ -2193,7 +2194,7 @@ public function getProcessingStatus(): ?ProcessingStatus\Status ...@@ -2193,7 +2194,7 @@ public function getProcessingStatus(): ?ProcessingStatus\Status
* *
* @param int|ProcessingStatus\Status $status * @param int|ProcessingStatus\Status $status
*/ */
public function setProcessingStatus(ProcessingStatus\Status|int $status): void public function setProcessingStatus(ProcessingStatus\Status | int $status): void
{ {
if ($status instanceof ProcessingStatus\Status) { if ($status instanceof ProcessingStatus\Status) {
$Status = $status; $Status = $status;
...@@ -2228,15 +2229,15 @@ public function setProcessingStatus(ProcessingStatus\Status|int $status): void ...@@ -2228,15 +2229,15 @@ public function setProcessingStatus(ProcessingStatus\Status|int $status): void
* Return the shipping status * Return the shipping status
* -> This method only works if shipping is installed * -> This method only works if shipping is installed
* *
* @return bool|QUI\ERP\Shipping\ShippingStatus\Status|null * @return QUI\ERP\Shipping\ShippingStatus\Status|null
*/ */
public function getShippingStatus(): bool|QUI\ERP\Shipping\ShippingStatus\Status|null public function getShippingStatus(): QUI\ERP\Shipping\ShippingStatus\Status | null
{ {
if ( if (
!QUI::getPackageManager()->isInstalled('quiqqer/shipping') !QUI::getPackageManager()->isInstalled('quiqqer/shipping')
|| !class_exists('QUI\ERP\Shipping\ShippingStatus\Handler') || !class_exists('QUI\ERP\Shipping\ShippingStatus\Handler')
) { ) {
return false; return null;
} }
if ($this->ShippingStatus !== null) { if ($this->ShippingStatus !== null) {
...@@ -2251,7 +2252,7 @@ public function getShippingStatus(): bool|QUI\ERP\Shipping\ShippingStatus\Status ...@@ -2251,7 +2252,7 @@ public function getShippingStatus(): bool|QUI\ERP\Shipping\ShippingStatus\Status
// use default status // use default status
if ($this->ShippingStatus === null) { if ($this->ShippingStatus === null) {
return false; return null;
} }
return $this->ShippingStatus; return $this->ShippingStatus;
...@@ -2265,7 +2266,7 @@ public function getShippingStatus(): bool|QUI\ERP\Shipping\ShippingStatus\Status ...@@ -2265,7 +2266,7 @@ public function getShippingStatus(): bool|QUI\ERP\Shipping\ShippingStatus\Status
* @param int|QUI\ERP\Shipping\ShippingStatus\Status $status * @param int|QUI\ERP\Shipping\ShippingStatus\Status $status
* @throws QUI\Exception * @throws QUI\Exception
*/ */
public function setShippingStatus(int|QUI\ERP\Shipping\ShippingStatus\Status $status): void public function setShippingStatus(int | QUI\ERP\Shipping\ShippingStatus\Status $status): void
{ {
if (!QUI::getPackageManager()->isInstalled('quiqqer/shipping')) { if (!QUI::getPackageManager()->isInstalled('quiqqer/shipping')) {
return; return;
...@@ -2330,7 +2331,7 @@ public function clearCustomerFiles(): void ...@@ -2330,7 +2331,7 @@ public function clearCustomerFiles(): void
// TODO: Implement clearCustomerFiles() method. // TODO: Implement clearCustomerFiles() method.
} }
public function getCustomerFiles(): array public function getCustomerFiles(bool $parsing = false): array
{ {
// TODO: Implement getCustomerFiles() method. // TODO: Implement getCustomerFiles() method.
return []; return [];
......
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,7 @@
namespace QUI\ERP\Order; namespace QUI\ERP\Order;
use QUI\ERP\Order\Controls\AbstractOrderingStep;
use QUI\ERP\Order\Utils\OrderProcessSteps; use QUI\ERP\Order\Utils\OrderProcessSteps;
/** /**
...@@ -45,10 +46,10 @@ public function initSteps(OrderProcessSteps $OrderProcessSteps, OrderProcess $Or ...@@ -45,10 +46,10 @@ public function initSteps(OrderProcessSteps $OrderProcessSteps, OrderProcess $Or
* The processing order provider can display a separate step in the order processing * The processing order provider can display a separate step in the order processing
* *
* @param AbstractOrder $Order * @param AbstractOrder $Order
* @param null $Step * @param AbstractOrderingStep|null $Step
* @return string * @return string
*/ */
public function getDisplay(AbstractOrder $Order, $Step = null): string public function getDisplay(AbstractOrder $Order, null | AbstractOrderingStep $Step = null): string
{ {
return ''; return '';
} }
......
...@@ -237,10 +237,17 @@ public function save(): void ...@@ -237,10 +237,17 @@ public function save(): void
$products = $this->List->getProducts(); $products = $this->List->getProducts();
foreach ($products as $Product) { foreach ($products as $Product) {
/* @var $Product Product */ if (
!method_exists($Product, 'getUuid')
|| !method_exists($Product, 'getProductSetParentUuid')
|| !method_exists($Product, 'getQuantity')
|| !method_exists($Product, 'toArticle')
) {
continue;
}
$fields = $Product->getFields(); $fields = $Product->getFields();
/* @var $Field UniqueField */
foreach ($fields as $Field) { foreach ($fields as $Field) {
$Field->setChangeableStatus(false); $Field->setChangeableStatus(false);
} }
...@@ -255,7 +262,6 @@ public function save(): void ...@@ -255,7 +262,6 @@ public function save(): void
'fields' => [] 'fields' => []
]; ];
/* @var $Field UniqueField */
foreach ($fields as $Field) { foreach ($fields as $Field) {
if ($Field->isCustomField()) { if ($Field->isCustomField()) {
$productData['fields'][] = $Field->getAttributes(); $productData['fields'][] = $Field->getAttributes();
...@@ -293,11 +299,17 @@ public function toArray(): array ...@@ -293,11 +299,17 @@ public function toArray(): array
$products = $Products->getProducts(); $products = $Products->getProducts();
$result = []; $result = [];
/* @var $Product Product */
foreach ($products as $Product) { foreach ($products as $Product) {
if (
!method_exists($Product, 'getUuid')
|| !method_exists($Product, 'getProductSetParentUuid')
|| !method_exists($Product, 'getQuantity')
) {
continue;
}
$fields = []; $fields = [];
/* @var $Field UniqueField */
foreach ($Product->getFields() as $Field) { foreach ($Product->getFields() as $Field) {
if (!$Field->isPublic() && !$Field->isCustomField()) { if (!$Field->isPublic() && !$Field->isCustomField()) {
continue; continue;
...@@ -456,8 +468,11 @@ public function toOrder(QUI\ERP\Order\AbstractOrder $Order): void ...@@ -456,8 +468,11 @@ public function toOrder(QUI\ERP\Order\AbstractOrder $Order): void
$Order->clear(); $Order->clear();
foreach ($products as $Product) { foreach ($products as $Product) {
if (!method_exists($Product, 'toArticle')) {
continue;
}
try { try {
/* @var QUI\ERP\Order\Basket\Product $Product */
$Order->addArticle($Product->toArticle(null, false)); $Order->addArticle($Product->toArticle(null, false));
} catch (QUI\Users\Exception $Exception) { } catch (QUI\Users\Exception $Exception) {
QUI\System\Log::writeDebugException($Exception); QUI\System\Log::writeDebugException($Exception);
...@@ -503,7 +518,7 @@ protected function createNewOrder(): QUI\ERP\Order\OrderInProcess ...@@ -503,7 +518,7 @@ protected function createNewOrder(): QUI\ERP\Order\OrderInProcess
try { try {
// select the last order in processing // select the last order in processing
return $Orders->getLastOrderInProcessFromUser($User); return $Orders->getLastOrderInProcessFromUser($User);
} catch (QUI\Erp\Order\Exception) { } catch (QUI\ERP\Order\Exception) {
} }
return QUI\ERP\Order\Factory::getInstance()->createOrderInProcess(); return QUI\ERP\Order\Factory::getInstance()->createOrderInProcess();
......
...@@ -84,13 +84,13 @@ public function addProduct(Product $Product): void ...@@ -84,13 +84,13 @@ public function addProduct(Product $Product): void
//endregion //endregion
/** /**
* Import the products to the basket * Import the products to the basket
* *
* @param array|null $products * @param array|null $products
* @throws ExceptionStack * @throws ExceptionStack
*/ */
public function import(array|null $products = []): void public function import(array | null $products = []): void
{ {
$this->clear(); $this->clear();
...@@ -164,11 +164,13 @@ public function toArray(): array ...@@ -164,11 +164,13 @@ public function toArray(): array
$products = $Products->getProducts(); $products = $Products->getProducts();
$result = []; $result = [];
/* @var $Product Product */
foreach ($products as $Product) { foreach ($products as $Product) {
if (!method_exists($Product, 'getQuantity')) {
continue;
}
$fields = []; $fields = [];
/* @var $Field UniqueField */
foreach ($Product->getFields() as $Field) { foreach ($Product->getFields() as $Field) {
if (!$Field->isPublic()) { if (!$Field->isPublic()) {
continue; continue;
......
...@@ -61,7 +61,7 @@ class BasketOrder ...@@ -61,7 +61,7 @@ class BasketOrder
* Basket constructor. * Basket constructor.
* *
* @param string $orderHash - ID of the order * @param string $orderHash - ID of the order
* @param ?QUI\Users\User $User * @param ?QUI\Interfaces\Users\User $User
* *
* @throws Exception * @throws Exception
* @throws QUI\Exception * @throws QUI\Exception
...@@ -212,6 +212,16 @@ public function addProduct(Product $Product): void ...@@ -212,6 +212,16 @@ public function addProduct(Product $Product): void
$foundProduct = false; $foundProduct = false;
foreach ($Products as $P) { foreach ($Products as $P) {
if (
!method_exists($Product, 'toArray')
|| !method_exists($Product, 'getQuantity')
|| !method_exists($P, 'toArray')
|| !method_exists($P, 'getQuantity')
|| !method_exists($P, 'setQuantity')
) {
continue;
}
$p1 = OrderProductUtils::getCompareProductArray($Product->toArray()); $p1 = OrderProductUtils::getCompareProductArray($Product->toArray());
$p2 = OrderProductUtils::getCompareProductArray($P->toArray()); $p2 = OrderProductUtils::getCompareProductArray($P->toArray());
...@@ -352,7 +362,6 @@ public function toArray(): array ...@@ -352,7 +362,6 @@ public function toArray(): array
$products = $Products->getProducts(); $products = $Products->getProducts();
$result = []; $result = [];
/* @var $Product Product */
foreach ($products as $Product) { foreach ($products as $Product) {
$fields = []; $fields = [];
...@@ -371,7 +380,7 @@ public function toArray(): array ...@@ -371,7 +380,7 @@ public function toArray(): array
$attributes = [ $attributes = [
'id' => $Product->getId(), 'id' => $Product->getId(),
'quantity' => $Product->getQuantity(), 'quantity' => method_exists($Product, 'getQuantity') ? $Product->getQuantity() : 1,
'fields' => $fields 'fields' => $fields
]; ];
...@@ -457,8 +466,9 @@ public function updateOrder(): void ...@@ -457,8 +466,9 @@ public function updateOrder(): void
foreach ($products as $Product) { foreach ($products as $Product) {
try { try {
/* @var QUI\ERP\Order\Basket\Product $Product */ if (method_exists($Product, 'toArticle')) {
$this->Order->addArticle($Product->toArticle(null, false)); $this->Order->addArticle($Product->toArticle(null, false));
}
} catch (QUI\Users\Exception $Exception) { } catch (QUI\Users\Exception $Exception) {
QUI\System\Log::writeDebugException($Exception); QUI\System\Log::writeDebugException($Exception);
} }
......
...@@ -90,9 +90,8 @@ public function __construct(int $pid, array $attributes = []) ...@@ -90,9 +90,8 @@ public function __construct(int $pid, array $attributes = [])
// set missing fields // set missing fields
$productFields = $Product->getFields(); $productFields = $Product->getFields();
/* @var $Field QUI\ERP\Products\Field\Field */
foreach ($productFields as $Field) { foreach ($productFields as $Field) {
if (!isset($fieldList[$Field->getId()])) { if (!isset($fieldList[$Field->getId()]) && method_exists($Field, 'getAttributesForUniqueField')) {
$fieldList[$Field->getId()] = $Field->getAttributesForUniqueField(); $fieldList[$Field->getId()] = $Field->getAttributesForUniqueField();
} }
} }
...@@ -108,7 +107,7 @@ public function __construct(int $pid, array $attributes = []) ...@@ -108,7 +107,7 @@ public function __construct(int $pid, array $attributes = [])
* @param $fieldValue * @param $fieldValue
* @return null|QUI\ERP\Products\Field\Field|UniqueField * @return null|QUI\ERP\Products\Field\Field|UniqueField
*/ */
protected function importFieldData($fieldId, $fieldValue): QUI\ERP\Products\Field\Field|UniqueField|null protected function importFieldData($fieldId, $fieldValue): QUI\ERP\Products\Field\Field | UniqueField | null
{ {
try { try {
if (is_array($fieldValue) && isset($fieldValue['identifier'])) { if (is_array($fieldValue) && isset($fieldValue['identifier'])) {
......
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
namespace QUI\ERP\Order\Controls; namespace QUI\ERP\Order\Controls;
use QUI; use QUI;
use QUI\ERP\Order\AbstractOrder;
use QUI\Locale; use QUI\Locale;
use ReflectionClass; use ReflectionClass;
...@@ -48,11 +49,15 @@ public function getIcon(): string ...@@ -48,11 +49,15 @@ public function getIcon(): string
/** /**
* Return the current order * Return the current order
* *
* @return QUI\ERP\Order\AbstractOrder * @return AbstractOrder|null
*/ */
public function getOrder(): QUI\ERP\Order\AbstractOrder public function getOrder(): ?QUI\ERP\Order\AbstractOrder
{ {
return $this->getAttribute('Order'); if ($this->getAttribute('Order') instanceof QUI\ERP\Order\AbstractOrder) {
return $this->getAttribute('Order');
}
return null;
} }
/** /**
......
...@@ -21,7 +21,7 @@ class Order extends QUI\Control ...@@ -21,7 +21,7 @@ class Order extends QUI\Control
/** /**
* @var null|QUI\ERP\Order\AbstractOrder * @var null|QUI\ERP\Order\AbstractOrder
*/ */
protected QUI\ERP\Order\AbstractOrder|null $Order = null; protected QUI\ERP\Order\AbstractOrder | null $Order = null;
/** /**
* Order constructor. * Order constructor.
...@@ -83,16 +83,12 @@ public function getBody(): string ...@@ -83,16 +83,12 @@ public function getBody(): string
if ($Order->hasInvoice()) { if ($Order->hasInvoice()) {
$Invoice = $Order->getInvoice(); $Invoice = $Order->getInvoice();
} }
if ($Invoice instanceof QUI\ERP\Accounting\Invoice\InvoiceTemporary) {
$View->setAttribute('downloadLink', false);
}
} catch (QUI\Exception $Exception) { } catch (QUI\Exception $Exception) {
QUI\System\Log::writeDebugException($Exception); QUI\System\Log::writeDebugException($Exception);
}
if ($Invoice instanceof QUI\ERP\Accounting\Invoice\InvoiceTemporary) { if ($Invoice instanceof QUI\ERP\Accounting\Invoice\InvoiceTemporary) {
$View->setAttribute('downloadLink', false); $View->setAttribute('downloadLink', false);
}
} }
switch ($this->getAttribute('template')) { switch ($this->getAttribute('template')) {
......
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