Search the Community
Showing results for tags 'carrierModule'.
-
Kedves fórum tagok! Elérhető az Addons-on az Foxpost szállítási mód integrálásához szükséges modul, amely támogatja a házhozszállítás és a csomagpont szállítási módokat egyaránt https://addons.prestashop.com/en/shipping-carriers/51873-foxpost-hungary-parcel-locker-and-home-delivery.html PrestaShop 1.7.x kompatibilis.
-
- 1
-
- prestashop
- foxpost
-
(and 7 more)
Tagged with:
-
Hi, I'm new in prestashop development and I'm trying to develop a carrier module. I would like to send me an email through this hook actionOrderStatusPostUpdate but nothing happens. I put the code below : public function install() { return parent::install() && $this->registerHook('actionCarrierUpdate') && $this->registerHook('actionOrderStatusPostUpdate'); } public function hookActionOrderStatusPostUpdate($params) { Mail::Send((int)Configuration::get('PS_LANG_DEFAULT'),'testmail', 'test email', array('{customer_firstname}' => 'Manu'), '[email protected]', null, null, null, null, null, dirname(__FILE__).'/mails/'); } I create the directory /mails/ and inside /fr/, /en/ with testmail.php and testmail.txt. I put the code below : Hello {customer_firstname} I don't know why I don't receive an email when an order is confirmed and paid. Is it wrong that I use the mail function or use of the hook is not good ? Thks Manu
- 10 replies
-
- actionorderstatuspostupdate
-
(and 3 more)
Tagged with:
-
Bonjour, J'ai créé un module de transporteur en suivant la documentation de prestashop et je souhaiterais envoyer un email quand l'état de la commande passe en paiement accepté. Pour ce faire j'utilise donc le hook actionOrderStatusPostUpdate pour qu'une fois que le statut change faire un appel à ma fonction d'envoi d'email (celle-ci fonctionne j'ai testé l'appel dans le hook getOrderShippingCost pour m'assurer que le problème ne vient pas de là) Je vous met les parties de code qui font référence au hook : public function install() { return parent::install() && $this->registerHook('actionCarrierUpdate') && $this->registerHook('actionOrderStatusPostUpdate'); } public function hookActionOrderStatusPostUpdate($params) { $this->sendMessage($params); } public function sendMessage($params) { //#code de traitement $params et envoi par mail() } Comme vous pouvez le voir, pour le moment mon hook ne sert qu'à faire un appel à ma fonction et m'envoyer un mail qui me dit coucou (pour le moment). Mes questions sont donc les suivantes : Est-ce que j'utilise mal ce hook ? Y a-t-il des erreurs dans mon appel de fonction ? Merci de votre aide Manu
- 1 reply
-
- carrierModule
-
(and 2 more)
Tagged with:
-
I had a lot of problems while doing some basic work on a CarrierModule. The documentation doesn't seem to really exist and I suspect I am not the only one having these issues. I wrote up a quick troubleshooting guide. If you guys are having trouble with writing a carrier module or can add common pitfalls that would be great. Feel free to move this into the doc or use it to start a doc page on carrier modules. Am I missing some documentation somewhere that describes how external carriers work? http://krisives.github.io/2014/01/02/CarrierModule/ Cheers, Kris
- 3 replies
-
- carrier
- carriermodule
-
(and 1 more)
Tagged with: