* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ class DiscountControllerCore extends FrontController { /** @var bool */ public $auth = true; /** @var string */ public $php_self = 'discount'; /** @var string */ public $authRedirection = 'discount'; /** @var bool */ public $ssl = true; /** * Assign template vars related to page content. * * @see FrontController::initContent() */ public function initContent() { if (Configuration::isCatalogMode()) { Tools::redirect('index.php'); } $this->context->smarty->assign([ 'cart_rules' => $this->getTemplateVarCartRules(), ]); parent::initContent(); $this->setTemplate('customer/discount'); } public function getTemplateVarCartRules() { $cart_rules = []; $customerId = $this->context->customer->id; $languageId = $this->context->language->id; $vouchers = CartRule::getCustomerCartRules( $languageId, $customerId, true, false ); foreach ($vouchers as $key => $voucher) { $voucherCustomerId = (int) $voucher['id_customer']; $voucherIsRestrictedToASingleCustomer = ($voucherCustomerId !== 0); if ($voucherIsRestrictedToASingleCustomer && $customerId !== $voucherCustomerId) { continue; } if ($voucher['quantity'] === 0 || $voucher['quantity_for_user'] === 0) { continue; } $cart_rule = $this->buildCartRuleFromVoucher($voucher); $cart_rules[$key] = $cart_rule; } return $cart_rules; } public function getBreadcrumbLinks() { $breadcrumb = parent::getBreadcrumbLinks(); $breadcrumb['links'][] = $this->addMyAccountToBreadcrumb(); $breadcrumb['links'][] = [ 'title' => $this->trans('Your vouchers', [], 'Shop.Theme.Customeraccount'), 'url' => $this->context->link->getPageLink('discount'), ]; return $breadcrumb; } /** * @param array $voucher * * @return mixed */ protected function getCombinableVoucherTranslation($voucher) { if ($voucher['cart_rule_restriction']) { $combinableVoucherTranslation = $this->trans('No', [], 'Shop.Theme.Global'); } else { $combinableVoucherTranslation = $this->trans('Yes', [], 'Shop.Theme.Global'); } return $combinableVoucherTranslation; } /** * @param bool $hasTaxIncluded * @param float $amount * @param int $currencyId * * @return string */ protected function formatReductionAmount($hasTaxIncluded, $amount, $currencyId) { if ($hasTaxIncluded) { $taxTranslation = $this->trans('Tax included', [], 'Shop.Theme.Checkout'); } else { $taxTranslation = $this->trans('Tax excluded', [], 'Shop.Theme.Checkout'); } return sprintf( '%s ' . $taxTranslation, $this->context->getCurrentLocale()->formatPrice($amount, Currency::getIsoCodeById((int) $currencyId)) ); } /** * @param float $percentage * * @return string */ protected function formatReductionInPercentage($percentage) { return sprintf('%s%%', $percentage); } /** * @param array $voucher * * @return array */ protected function accumulateCartRuleValue($voucher) { $cartRuleValue = []; if ($voucher['reduction_percent'] > 0) { $cartRuleValue[] = $this->formatReductionInPercentage($voucher['reduction_percent']); } if ($voucher['reduction_amount'] > 0) { $cartRuleValue[] = $this->formatReductionAmount( $voucher['reduction_tax'], $voucher['reduction_amount'], $voucher['reduction_currency'] ); } if ($voucher['free_shipping']) { $cartRuleValue[] = $this->trans('Free shipping', [], 'Shop.Theme.Checkout'); } if ($voucher['gift_product'] > 0) { $cartRuleValue[] = Product::getProductName( $voucher['gift_product'], $voucher['gift_product_attribute'] ); } return $cartRuleValue; } /** * @param array $voucher * * @return array */ protected function buildCartRuleFromVoucher(array $voucher): array { $voucher['voucher_date'] = Tools::displayDate($voucher['date_to'], false); if ((int) $voucher['minimum_amount'] === 0) { $voucher['voucher_minimal'] = $this->trans('None', [], 'Shop.Theme.Global'); } else { $voucher['voucher_minimal'] = $this->context->getCurrentLocale()->formatPrice( $voucher['minimum_amount'], Currency::getIsoCodeById((int) $voucher['minimum_amount_currency']) ); } $voucher['voucher_cumulable'] = $this->getCombinableVoucherTranslation($voucher); $cartRuleValues = $this->accumulateCartRuleValue($voucher); if (0 === count($cartRuleValues)) { $voucher['value'] = '-'; } else { $voucher['value'] = implode(' + ', $cartRuleValues); } return $voucher; } }