Jump to content

Bug dans le module Loyalty Prestashop version 1.7.7.4


Recommended Posts

Bonjour 

J'ai corrigé 2 bugs dans le module loyalty de Prestashop version 1.7.7.4

Dans le fichier /modules/loyalty/controllers/front/default.php

Dans la fonction public function processTransformPoints()

Remplacer

$customer = new Customer((int)$context->customer->id);

par 
   $customer = new Customer((int)$this->context->customer->id);

car $context n'est pas défini

 

ET remplacer le bloc

if (Configuration::get('PS_LOYALTY_TAX')
                && in_array((int)$country->zone, $allowedTaxZones)
            ) {
                $cartRule->reduction_tax = 1;
            } else {
                $cartRule->reduction_tax = 0;
            }

PAR
            if (Configuration::get('PS_LOYALTY_TAX')
                && in_array((int)$country->zone, $allowedTaxZones)
            ) {
                $cart_rule->reduction_tax = 1;
            } else {
                $cart_rule->reduction_tax = 0;
            }

car $cartRule n'est pas défini

 

Patrice Ruault

https://www.ubimedia.fr

 

Link to comment
Share on other sites

  • 3 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...