aquadiscount Posted September 9, 2014 Share Posted September 9, 2014 Bonjour, je suis débutant dans le dev presta et j'avance petit à petit ... J'ai besoin de récupérer les informations d'une adresse à partir de l'ID de celle-ci, je modifie un module de paiement car je dois envoyer l'adresse du client au serveur. Comment faire, c'est certainement tout bête mais .... Merci ! Link to comment Share on other sites More sharing options...
Fernand WAFO Posted September 9, 2014 Share Posted September 9, 2014 Bjr Il faut faudra faire ceci si vous ne pouvez pas faire la requête directement $customerAddressId = Address::getFirstCustomerAddressId($id_customer, $active = true); $customerAddress = new Address($customerAddressId, $id_lang); Et $customerAddress contient tous les éléments donc vous avez besoin. Vous pouvez faire var_dump($customerAddress); pour voir les champs Cdt, Link to comment Share on other sites More sharing options...
aquadiscount Posted September 9, 2014 Author Share Posted September 9, 2014 merci ! 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