Newer
Older
<?php
/**
* This file contains QUI\ERP\Order\Controls\OrderProcess\Processing
*/
namespace QUI\ERP\Order\Controls\OrderProcess;
use QUI\Locale;
use ReflectionClass;
use ReflectionException;
use function class_exists;
use function dirname;
/**
* Class ProcessingStep
* - payment processing, if needed
*
* @package QUI\ERP\Order\Controls
*/
class Processing extends QUI\ERP\Order\Controls\AbstractOrderingStep
{
/**
* @var string|null
*/
protected ?string $content = null;
/**
* @var string|null
*/
protected ?string $title = null;
/**
* @var null|QUI\ERP\Order\AbstractOrderProcessProvider
*/
protected ?QUI\ERP\Order\AbstractOrderProcessProvider $ProcessingProvider = null;
/**
* Basket constructor.
*
* @param array $attributes
*/
public function __construct(array $attributes = [])

Henning Leutz
committed
$this->setAttribute('nodeName', 'section');
$this->addCSSClass('quiqqer-order-step-processing');
$this->addCSSClass('default-content');

Henning Leutz
committed
$this->addCSSClass('quiqqer-order-step-processing-gateway');
$this->addCSSFile(dirname(__FILE__) . '/Processing.css');
public function getBody(): string
{
if ($this->ProcessingProvider === null) {
return '';
}
$Engine = QUI::getTemplateManager()->getEngine();

Henning Leutz
committed
try {
$display = $this->ProcessingProvider->getDisplay($this->getOrder(), $this);

Henning Leutz
committed
$hasErrors = $this->ProcessingProvider->hasErrors();
} catch (Exception $Exception) {

Henning Leutz
committed
QUI\System\Log::write($Exception->getMessage());
$hasErrors = true;
$display = '<div class="message-error">' .
QUI::getLocale()->get('quiqqer/order', 'exception.processing.error') .
'</div>';

Henning Leutz
committed
}

Henning Leutz
committed

Henning Leutz
committed
'hasErrors' => $hasErrors,
return $Engine->fetch(dirname(__FILE__) . '/Processing.html');

Henning Leutz
committed
/**
* Return the processing payments, if the current payment does not work
* This method checks if the payment can be changed
*
* @return string
*/
public function getProcessingPayments(): string

Henning Leutz
committed
{
if (!class_exists('\QUI\ERP\Accounting\Payments\Order\Payment')) {

Henning Leutz
committed
return '';
}
// check if payment can be changed

Henning Leutz
committed
$Payment = $Order->getPayment();

Patrick Müller
committed
if ($Payment && QUI\ERP\Order\Utils\Utils::isPaymentChangeable($Payment) === false) {

Henning Leutz
committed
return '';
}
try {
$Engine = QUI::getTemplateManager()->getEngine();
$PaymentStep = new QUI\ERP\Accounting\Payments\Order\Payment([

Henning Leutz
committed
'Order' => $this->getOrder()
]);
$Engine->assign([

Henning Leutz
committed
'PaymentStep' => $PaymentStep
]);
} catch (Exception $Exception) {

Henning Leutz
committed
QUI\System\Log::writeDebugException($Exception);
return '';
}
return $Engine->fetch(dirname(__FILE__) . '/ProcessingPayments.html');

Henning Leutz
committed
}
/**
* @param QUI\ERP\Order\AbstractOrderProcessProvider $ProcessingProvider
*/
public function setProcessingProvider(QUI\ERP\Order\AbstractOrderProcessProvider $ProcessingProvider): void
{
$this->ProcessingProvider = $ProcessingProvider;
}
/**
* @param null|QUI\Locale $Locale
* @return string
*/
public function getName(null | QUI\Locale $Locale = null): string
{
return 'Processing';
}
/**
* @return string
*/
public function getIcon(): string
public function validate(): void
public function save(): void

Henning Leutz
committed
/**
* Save the payment to the order
*
* @param $payment
* @return void
*
* @throws QUI\ERP\Order\Exception
* @throws QUI\Exception
* @throws QUI\Permissions\Exception
*/
public function savePayment($payment): void

Henning Leutz
committed
{
if (!class_exists('\QUI\ERP\Accounting\Payments\Order\Payment')) {

Henning Leutz
committed
return;
}
// check if payment can be changed

Henning Leutz
committed
$Payment = $Order->getPayment();
if (QUI\ERP\Order\Utils\Utils::isPaymentChangeable($Payment) === false) {
return;
}
$PaymentStep = new QUI\ERP\Accounting\Payments\Order\Payment([

Henning Leutz
committed
'payment' => $payment
]);
$PaymentStep->save();
}
public function getTitle(null | QUI\Locale $Locale = null): string
{
if (!empty($this->title)) {
return $this->title;
}
if ($Locale === null) {
$Locale = QUI::getLocale();
}

Henning Leutz
committed
try {
$Reflection = new ReflectionClass($this);
} catch (ReflectionException) {

Henning Leutz
committed
$className = 'Processing';
}
return $Locale->get(
'quiqqer/order',
);
}
/**
* Set the step title
*
* @param string $title
*/
public function setTitle(string $title): void
{
$this->title = $title;
}
//endregion
//region content
/**
* Set the step content
*
* @param string $content
*/
public function setContent(string $content): void
{
$this->content = $content;
}
/**
* @param Locale|null $Locale
* @return string|null
public function getContent(null | QUI\Locale $Locale = null): ?string
{
if ($Locale === null) {
$Locale = QUI::getLocale();
}
$header = $Locale->get('quiqqer/order', 'ordering.step.title.CheckoutPayment');
$description = $Locale->get('quiqqer/order', 'ordering.step.checkoutPayment.text');
$content = '
<header>
<div class="quiqqer-order-step-processing-description">' . $description . '</div>';
if (!empty($this->content)) {
$content = $this->content;
}
return $content;
}
//endregion