Skumbabs
Members-
Posts
45 -
Joined
-
Last visited
Profile Information
-
Location
Luxembourg
-
First Name
Bastien
-
Last Name
Braux
Skumbabs's Achievements
Newbie (1/14)
1
Reputation
-
Bonjour, J'ai eu un problème du genre. Peux-tu vérifier dans ton administration dans le Menu "Commandes" => "Etats" que pour l'état "En attente de paiement par chèque" et pour la langue que tu souhaites que le modèle de mail est bien "cheque". J'ai eu cette erreur lorsque je passais mes commandes en "En cours de préparation" lorsque la commande se faisait en allemand.
-
I have Prestashop 1.6.1.6 and I ave the same problem only on Ipad. Did you solve your problem paddockplants ?
-
Cannot Edit Product [Save or Save and Stay] not work
Skumbabs replied to gulaly's topic in Configuring and using PrestaShop
I have the same problem on one of my website... Still no fix? -
Bonjour, dans un de mes modules, dans le backoffice j'ai un formulaire on ne peut plus simple où je peux entrer un certains nombres de données. Une fois que je clique sur enregistrer, tout s'enregistre correctement dans ma base de données. Ce que j'aimerais faire c'est une fois que l'ajout se fait, créer un objet via une API, et ensuite ajouter une valeur de retour de l'API dans la table de mon module. J'ai déjà réalisé plusieurs test en utilisant les fonctions processSave et postProcess, mais je n'arrive pas à trouver l'endroit où placer mon code de l'UPDATE car il semble que l'ajout dans la DB se fait tout à la fin du processus. J'espère avoir été assez clair, Merci pour toute aide à venir
-
Hello, I would like to update a column after I have add a new line in my module table(with module form) and don't really know how to do it. The thing is that in my processSave I create an other object with an Api and I would like to add my object ID in a column of my module table by updating the new line I just added via my module form. I dont know If I'm really clear. Dont hesitate to ask question to understand. Thanks in advance for any help, Edit --- Well I htink I need to use function postProcess instead of adding code at the end of processSave(). However, can you please help me getting value of submitted form ? Thanks ! Edit --- After some tests, I figured out that postProcess function seems to be executed before the insert in the database...
- 1 reply
-
- processSave
- module
-
(and 1 more)
Tagged with:
-
Hello, I'm developping a module which is kind of simple. I just get information for an object in BO and I show them on FO. To get all the information, I created an AdminClassController with basic function (renderForm, renderList, renderView). It's working great. My problem: I would like to add the possibility to upload image for each object. So in my Class.php file I created a var string which is the path of my image and in the renderForm I added the file type input. Then I use the postProcess function to upload the file on FTP : public function postProcess() { if(Tools::isSubmit('saveAction')) { if (!($obj = $this->loadObject(true))) return; $path = $_FILES['logo']['name']; $path2 = $_FILES['image']['name']; $ext = pathinfo($path, PATHINFO_EXTENSION); $ext2 = pathinfo($path2, PATHINFO_EXTENSION); if ($ext == 'jpg' || $ext == 'png' || $ext == 'jpeg') { Db::getInstance()->Execute("UPDATE `"._DB_PREFIX_."annuaire` SET logo_path = 'logo_".$obj->id.'.'.$ext."' WHERE id_annuaire = ".$obj->id.""); move_uploaded_file($_FILES["logo"]["tmp_name"], _PS_MODULE_DIR_.'annuaire/img/logo_'.$obj->id.'.'.$ext); } if ($ext2 == 'jpg' || $ext2 == 'png' || $ext == 'jpeg') { Db::getInstance()->Execute("UPDATE `"._DB_PREFIX_."annuaire` SET image1_path = 'image_".$obj->id.'.'.$ext2."' WHERE id_annuaire = ".$obj->id.""); move_uploaded_file($_FILES["image"]["tmp_name"], _PS_MODULE_DIR_.'annuaire/img/image_'.$obj->id.'.'.$ext2); } } // !!!! return parent::postProcess(); !!!! // The issue is when I wrtie the line "return parent::postProcess();", I can update all passed input (text, select,...) and when I don't write it, my DB doesn't update and the file isn't uploaded. Have you an hint top help me with this ? Thanks for any help, Regards
-
Did you see something wrong with this changes ? Thanks
- 9 replies
-
- mysql
- prestashop
-
(and 2 more)
Tagged with:
-
Bonjour, sur plusieurs boutiques nous avons le module Kiala (Point relais). Tout fonctionnait parfaitement -> automatisation des commandes vers le compte Kiala(kiala.fr) du client, avec les adresses insérées automatiquement. Jusqu'à aujourd'hui où nos clients ne peuvent plus se connecter sur kiala.fr mais sont redirigés vers le site d'UPS. Comme le module Kiala Prestashop est lié au site kiala.fr, nos clients n'ont plus rien d'automatisé, ce qui est très contraignant ! Quelqu'un a-t-il trouvé une solution rapide et efficace à ce problème ? Sachant qu'aucun de nos clients n'a été prévenu par Kiala... Merci beaucoup
-
Bonjour, Je pense avoir un problème dans mon backoffice. Aucun module offre la possibilité d'être mis à jour. Par exemple mon module paypal est à la version 3.8.0 et le bouton de mise à jour ne s'affiche pas alors qu'une version 3.10.10 est disponible. J'ai vérifié dans les Administration -> Préférences et l'option : "Vérifier automatiquement les mises à jour de modules" est bien active. De plus quand je clique sur le bouton "Vérifier les mises à jour", Prestashop me met : "Tout est bien à jour" Est-ce un bug "courant" ou non ? Et comment puis-je régler ca au plus vite ? Merci d'avance pour l'aide à venir Cordialement
-
[SOLVED] How to Add extra HTML text beside each Attribute's value ?
Skumbabs replied to gigamax's topic in Core developers
When using your code I got exactly the same result. Maybe I didnt explain myself really good because it set <ul> and <li> in my code. I need only one information by attribute the desc i added in value. In example I have a select which is "Color" (Attribute), in the select I have 2 values : Red and Blue. For the value red I added a desc which is : "Red like beautiful flames,..." I would like behind the short_description when I choose "Red" -> "Red like beautiful flames,..." shows. To compare my needs to something existing, it's the same as the price changing when the combination change. I hope, I'm clearer now :/ And thanks for your help !