Jluis Posted March 1, 2019 Share Posted March 1, 2019 Bonjour , je suis sur prestashop 1.7 , en utilisant la fonctionalité comamnder en tant q'un invité je voudrais exécuter la fonction processGuestToCustomer() automatiqement depuis le front,quie se trouve au niveau AdminCustomersController ,quand je suis à l'étape de commande " CheckoutPersonalInformationSteps.php" : càd un client commande en tat q'un inivité , à l'étape il vient de remplir son mail et les autres infos : je voudrais exectuer la fonction processGuestToCustomer public function processGuestToCustomer() { $customer = new Customer((int)Tools::getValue('id_customer')); if (!Validate::isLoadedObject($customer)) { $this->errors[] = $this->trans('This customer does not exist.', array(), 'Admin.Orderscustomers.Notification'); } if (Customer::customerExists($customer->email)) { $this->errors[] = $this->trans('This customer already exists as a non-guest.', array(), 'Admin.Orderscustomers.Notification'); } elseif ($customer->transformToCustomer(Tools::getValue('id_lang', $this->context->language->id))) { if ($id_order = (int)Tools::getValue('id_order')) { Tools::redirectAdmin($this->context->link->getAdminLink('AdminOrders').'&id_order='.$id_order.'&vieworder&conf=3'); } else { Tools::redirectAdmin(self::$currentIndex.'&'.$this->identifier.'='.$customer->id.'&viewcustomer&conf=3&token='.$this->token); } } else { $this->errors[] = $this->trans('An error occurred while updating customer information.', array(), 'Admin.Orderscustomers.Notification'); } } une idée comment pourrais l'éxécuter niveau front sans passer par le BO? Link to comment Share on other sites More sharing options...
Eolia Posted March 1, 2019 Share Posted March 1, 2019 Juste pour info, en utilisant cette option "Commander en tant qu'invité" vous vous mettez hors la loi depuis la mise en application de la loi RGPD. En effet, bien que le compte client soit quand même créé et que toutes les données personnelles soient stockées, le client n'y a pas accès. La seule différence entre un compte classique et un compte invité c'est l'existence d'un mot de passe. Link to comment Share on other sites More sharing options...
Jluis Posted March 1, 2019 Author Share Posted March 1, 2019 d'accord merci @Eolia Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now