Skip to content
Code-Schnipsel Gruppen Projekte
Processing.php 6,53 KiB
Newer Older
Henning Leutz's avatar
Henning Leutz committed
<?php

/**
 * This file contains QUI\ERP\Order\Controls\OrderProcess\Processing
 */

namespace QUI\ERP\Order\Controls\OrderProcess;

use Exception;
Henning Leutz's avatar
Henning Leutz committed
use QUI;
use QUI\Locale;
use ReflectionClass;
use ReflectionException;

use function class_exists;
use function dirname;
Henning Leutz's avatar
Henning Leutz committed

/**
 * 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;
Henning Leutz's avatar
Henning Leutz committed
    /**
     * @var null|QUI\ERP\Order\AbstractOrderProcessProvider
     */
    protected ?QUI\ERP\Order\AbstractOrderProcessProvider $ProcessingProvider = null;
Henning Leutz's avatar
Henning Leutz committed

    /**
     * Basket constructor.
     *
     * @param array $attributes
     */
    public function __construct(array $attributes = [])
Henning Leutz's avatar
Henning Leutz committed
    {
        parent::__construct($attributes);

        $this->setAttribute('nodeName', 'section');

        $this->addCSSClass('quiqqer-order-step-processing');
        $this->addCSSClass('default-content');
        $this->addCSSClass('quiqqer-order-step-processing-gateway');
        $this->addCSSFile(dirname(__FILE__) . '/Processing.css');
Henning Leutz's avatar
Henning Leutz committed
    }

    /**
     * @return string
     */
    public function getBody(): string
Henning Leutz's avatar
Henning Leutz committed
    {
        if ($this->ProcessingProvider === null) {
            return '';
        }

        $Engine = QUI::getTemplateManager()->getEngine();
Henning Leutz's avatar
Henning Leutz committed

            $display = $this->ProcessingProvider->getDisplay($this->getOrder(), $this);
            $hasErrors = $this->ProcessingProvider->hasErrors();
        } catch (Exception $Exception) {
            QUI\System\Log::write($Exception->getMessage());

            $hasErrors = true;
            $display = '<div class="message-error">' .
                QUI::getLocale()->get('quiqqer/order', 'exception.processing.error') .
                '</div>';
Henning Leutz's avatar
Henning Leutz committed
        $Engine->assign([
            'display' => $display,
            'this' => $this
Henning Leutz's avatar
Henning Leutz committed
        ]);

        return $Engine->fetch(dirname(__FILE__) . '/Processing.html');
Henning Leutz's avatar
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
        if (!class_exists('\QUI\ERP\Accounting\Payments\Order\Payment')) {
        $Order = $this->getOrder();
        if ($Payment && QUI\ERP\Order\Utils\Utils::isPaymentChangeable($Payment) === false) {
            return '';
        }

        try {
            $Engine = QUI::getTemplateManager()->getEngine();

Henning Leutz's avatar
Henning Leutz committed
            $PaymentStep = new QUI\ERP\Accounting\Payments\Order\Payment([
                'this' => $this,
        } catch (Exception $Exception) {
            QUI\System\Log::writeDebugException($Exception);

            return '';
        }

        return $Engine->fetch(dirname(__FILE__) . '/ProcessingPayments.html');
Henning Leutz's avatar
Henning Leutz committed
    /**
     * @param QUI\ERP\Order\AbstractOrderProcessProvider $ProcessingProvider
     */
    public function setProcessingProvider(QUI\ERP\Order\AbstractOrderProcessProvider $ProcessingProvider): void
Henning Leutz's avatar
Henning Leutz committed
    {
        $this->ProcessingProvider = $ProcessingProvider;
    }

    /**
     * @param null|QUI\Locale $Locale
     * @return string
     */
    public function getName(null | QUI\Locale $Locale = null): string
Henning Leutz's avatar
Henning Leutz committed
    {
        return 'Processing';
    }

    /**
     * @return string
     */
    public function getIcon(): string
Henning Leutz's avatar
Henning Leutz committed
    {
        return 'fa-check';
    }

    /**
     *
     */
    public function validate(): void
Henning Leutz's avatar
Henning Leutz committed
    {
    }

    /**
     * placeholder
     */
    public function save(): void
Henning Leutz's avatar
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
        if (!class_exists('\QUI\ERP\Accounting\Payments\Order\Payment')) {
        $Order = $this->getOrder();
        $Payment = $Order->getPayment();

        if (QUI\ERP\Order\Utils\Utils::isPaymentChangeable($Payment) === false) {
            return;
        }

        $PaymentStep = new QUI\ERP\Accounting\Payments\Order\Payment([
            'Order' => $this->getOrder(),
     * @param Locale|null $Locale
     * @return string
     */
    public function getTitle(null | QUI\Locale $Locale = null): string
    {
        if (!empty($this->title)) {
            return $this->title;
        }

        if ($Locale === null) {
            $Locale = QUI::getLocale();
        }

            $Reflection = new ReflectionClass($this);
            $className = $Reflection->getShortName();
        } catch (ReflectionException) {

        return $Locale->get(
            'quiqqer/order',
            'ordering.step.title.' . $className
        );
    }

    /**
     * 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>
            <h1>' . $header . '</h1>
        <div class="quiqqer-order-step-processing-description">' . $description . '</div>';

        if (!empty($this->content)) {
            $content = $this->content;
        }

        return $content;
    }

    //endregion
Henning Leutz's avatar
Henning Leutz committed
}