We will be off on April 7th (Monday) for public holiday in our country

  • Ángel Campos's avatar
    [PW-2029] Configuration to charge orders based on storeview or global currency (#851) · c74eff91
    Ángel Campos authored
    * [PW-2029] New charged currency config field
    
    * [PW-2029] Charged currency default value
    
    * [PW-2029] Charged currency config getter
    
    * [PW-2029] Removing unused setOpenInvoiceData() in Redirect block class
    
    * [PW-2029] New charged currency column for sales_order table
    
    * [PW-2029] Event observer to save order's charged currency for future use in refunds
    
    * [PW-2029] ChargedCurrency.php helper class for orders, quotes, stores and refunds
    
    * [PW-2029] Using the ChargedRefund helper
    
    * [PW-2029] Fix broken unit test because of new AdyenInitiateTerminalApi dependency
    
    * [PW-2029] AdyenAmountCurrency model
    
    * [PW-2029] Using AdyenAmountCurrency model
    
    * [PW-2029] Adding discount and tax amount for items in ChargedCurrency model
    
    * [PW-2029] Setting discount and tax amount for items
    
    * [PW-2029] Getting tax and discount amount for items in CheckoutDataBuilder
    
    * [PW-2029] Adjusting CaptureDataBuilder to use new AmountCurrency model
    
    * [PW-2029] ChargedCurrency php docs
    
    * [PW-2029] Removing use statements from AdyenSalesOrderChargedCurrencyObserver
    
    * [PW-2029] Saving base or display in adyen_charged_currency instead of currency code on order placement
    
    * [PW-2029] Using new AdyenAmountCurrency model
    
    * [PW-2029] AdyenAmountCurrency for partial PBM
    
    * [PW-2029] AdyenAmountCurrency in Capture and Refund builders
    
    * [PW-2029] Renaming orderAmount var for code smell
    
    * [PW-2029] Removing redundant boolean literal
    
    * Version 7.0.0 bump
    
    * [PW-2029] Extra usages of ChargedCurrency helper
    
    * [PW-2029] Removed charged currency config field from admin panel
    
    * [PW-2029] Adjusting usage of currency in Cron.php
    
    * [PW-2029] Code styling
    
    * Fix phpcs
    Co-authored-by: default avatarattilak <attila.kiss@adyen.com>
    Unverified
    c74eff91
PaymentLink.php 3.17 KB
<?php
/**
 *                       ######
 *                       ######
 * ############    ####( ######  #####. ######  ############   ############
 * #############  #####( ######  #####. ######  #############  #############
 *        ######  #####( ######  #####. ######  #####  ######  #####  ######
 * ###### ######  #####( ######  #####. ######  #####  #####   #####  ######
 * ###### ######  #####( ######  #####. ######  #####          #####  ######
 * #############  #############  #############  #############  #####  ######
 *  ############   ############  #############   ############  #####  ######
 *                                      ######
 *                               #############
 *                               ############
 *
 * Adyen Payment module (https://www.adyen.com/)
 *
 * Copyright (c) 2018 Adyen BV (https://www.adyen.com/)
 * See LICENSE.txt for license details.
 *
 * Author: Adyen <magento@adyen.com>
 */

namespace Adyen\Payment\Block\Info;

use Adyen\Payment\Helper\ChargedCurrency;
use Magento\Framework\View\Element\Template;

class PaymentLink extends AbstractInfo
{
    /**
     * @var \Magento\Framework\Registry
     */
    private $registry;

    /**
     * @var \Adyen\Payment\Gateway\Command\PayByMailCommand
     */
    private $payByMail;

    /**
     * @var ChargedCurrency
     */
    private $chargedCurrency;

    public function __construct(
        \Adyen\Payment\Helper\Data $adyenHelper,
        \Adyen\Payment\Model\ResourceModel\Order\Payment\CollectionFactory $adyenOrderPaymentCollectionFactory,
        Template\Context $context,
        \Magento\Framework\Registry $registry,
        \Adyen\Payment\Gateway\Command\PayByMailCommand $payByMailCommand,
        ChargedCurrency $chargedCurrency,
        array $data = []
    ) {
        $this->registry = $registry;
        $this->payByMail = $payByMailCommand;
        $this->chargedCurrency = $chargedCurrency;

        parent::__construct($adyenHelper, $adyenOrderPaymentCollectionFactory, $context, $data);
    }

    /**
     * @return \Magento\Sales\Model\Order
     */
    public function getOrder()
    {
        return $this->registry->registry('current_order');
    }

    /**
     * @return \Magento\Sales\Model\Order\Payment
     */
    public function getPayment()
    {
        $order = $this->getOrder();

        return $order->getPayment();
    }

    /**
     * @return string
     */
    public function getPaymentLinkUrl()
    {
        $adyenAmountCurrency = $this->chargedCurrency->getOrderAmountCurrency($this->getOrder(), false);
        return $this->payByMail->generatePaymentUrl($this->getPayment(), $adyenAmountCurrency->getAmountDue());
    }

    /**
     * Check if order was placed using Adyen payment method
     * and if total due is greater than zero while one or more payments have been made
     *
     * @return string
     */
    public function _toHtml()
    {
        return strpos($this->getPayment()->getMethod(), 'adyen_') === 0
        && $this->_scopeConfig->getValue('payment/adyen_hpp/active')
        && $this->_scopeConfig->getValue('payment/adyen_pay_by_mail/active')
        && $this->getOrder()->getTotalDue() > 0
            ? parent::_toHtml()
            : '';
    }
}