Regaton Posted April 18, 2016 Share Posted April 18, 2016 Bonjour, Une fois qu'un client vient de s'enregistrer, j'ai du code qui en fonction de sa fiche client, des réponses à certains formulaires et tout... me donne le groupe auquel il doit appartenir. A la fin de ce code, je fais (lignes trouvées sur le forum) $customer->addGroups(7); J'ai aussi essayé : $this->context->customer->addGroups(7); Et cela ne rajoute pas le groupe ID 7 au client. J'ai rajouté ces lignes de codes dans la fonction updateContext(Customer $customer) dans AuthController.php. Où est-ce que je me trompe ?? Merci pour votre aide. Link to comment Share on other sites More sharing options...
Regaton Posted April 18, 2016 Author Share Posted April 18, 2016 J'ai essayé : $this->context->customer->cleanGroups(); $this->context->customer->addGroups(array("3","7")); $this->context->customer->id_default_group = "7"; $this->context->customer->update(); et encore : $customer->cleanGroups(); $customer->addGroups(array("3","7")); $customer->id_default_group = "7"; $customer->update(); Aucun ne fonctionne... Link to comment Share on other sites More sharing options...
Regaton Posted April 18, 2016 Author Share Posted April 18, 2016 C'est bon mon code fonctionne, c'était la faute à un module tiers qui intervenait apres mon code. 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