diff --git a/src/QUI/ERP/Accounting/Invoice/Output/OutputProviderInvoice.php b/src/QUI/ERP/Accounting/Invoice/Output/OutputProviderInvoice.php index a1b08af16b1f9381b1c9887019a54a158256eede..aec04aa61545eee003874043a33ff80db01e7362 100644 --- a/src/QUI/ERP/Accounting/Invoice/Output/OutputProviderInvoice.php +++ b/src/QUI/ERP/Accounting/Invoice/Output/OutputProviderInvoice.php @@ -176,6 +176,17 @@ public static function getTemplateData($entityId) $globalInvoiceText = QUI::getLocale()->get('quiqqer/invoice', 'global.invoice.text'); } + // order number + $orderNumber = ''; + + if ($InvoiceView->getAttribute('order_id')) { + try { + $Order = QUI\ERP\Order\Handler::getInstance()->getOrderById($InvoiceView->getAttribute('order_id')); + $orderNumber = $Order->getPrefixedId(); + } catch (QUI\Exception $Exception) { + } + } + return [ 'this' => $InvoiceView, 'ArticleList' => $Articles, @@ -187,7 +198,8 @@ public static function getTemplateData($entityId) 'transaction' => $InvoiceView->getTransactionText(), 'projectName' => $Invoice->getAttribute('project_name'), 'useShipping' => QUI::getPackageManager()->isInstalled('quiqqer/shipping'), - 'globalInvoiceText' => $globalInvoiceText + 'globalInvoiceText' => $globalInvoiceText, + 'orderNumber' => $orderNumber ]; }