From 8383ed15db64151b2645d55c9d7de0e7c431a322 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20M=C3=BCller?= <p.mueller@pcsg.de> Date: Wed, 24 Aug 2022 14:16:09 +0200 Subject: [PATCH] feat: read paid status data from linked order when saving a temporary invoice --- .../Accounting/Invoice/InvoiceTemporary.php | 29 ++++++++++++++++--- 1 file changed, 25 insertions(+), 4 deletions(-) diff --git a/src/QUI/ERP/Accounting/Invoice/InvoiceTemporary.php b/src/QUI/ERP/Accounting/Invoice/InvoiceTemporary.php index 02d7fda..b49ec1f 100644 --- a/src/QUI/ERP/Accounting/Invoice/InvoiceTemporary.php +++ b/src/QUI/ERP/Accounting/Invoice/InvoiceTemporary.php @@ -12,6 +12,7 @@ use QUI\ERP\Accounting\Invoice\Utils\Invoice as InvoiceUtils; use QUI\ERP\Customer\CustomerFiles; use QUI\Utils\Security\Orthos; +use QUI\ERP\Order\Handler as OrderHandler; use function array_flip; use function class_exists; @@ -912,6 +913,26 @@ public function update($PermissionUser = null) $orderDate = $this->getAttribute('order_date'); } + // Determine payment status by order (if an order is linked to the invoice) + $paidStatus = QUI\ERP\Constants::PAYMENT_STATUS_OPEN; + $paidDate = null; + $paidData = ''; + $orderId = $this->getAttribute('order_id'); + + if (!empty($orderId)) { + $Orders = OrderHandler::getInstance(); + + try { + $Order = $Orders->getOrderById($orderId); + $orderPaidStatusData = $Order->getPaidStatusInformation(); + + $paidStatus = $Order->getAttribute('paid_status'); + $paidDate = $orderPaidStatusData['paid_date']; + $paidData = \json_encode($orderPaidStatusData['paid_data']); + } catch (\Exception $Exception) { + QUI\System\Log::writeDebugException($Exception); + } + } QUI::getEvents()->fireEvent( 'quiqqerInvoiceTemporaryInvoiceSave', @@ -927,7 +948,7 @@ public function update($PermissionUser = null) 'customer_id' => (int)$this->getAttribute('customer_id'), 'editor_id' => $editorId, 'editor_name' => $editorName, - 'order_id' => (int)$this->getAttribute('order_id'), + 'order_id' => $orderId, 'ordered_by' => $orderedBy, 'order_date' => $orderDate, 'ordered_by_name' => $orderedByName, @@ -946,9 +967,9 @@ public function update($PermissionUser = null) // processing 'time_for_payment' => $timeForPayment, - 'paid_status' => QUI\ERP\Constants::PAYMENT_STATUS_OPEN, // nicht in gui - 'paid_date' => null, // nicht in gui - 'paid_data' => '', // nicht in gui + 'paid_status' => $paidStatus, + 'paid_date' => $paidDate, + 'paid_data' => $paidData, 'processing_status' => $processingStatus, 'customer_data' => '', // nicht in gui -- GitLab