ordipaco Posted November 27, 2010 Share Posted November 27, 2010 BonjourJ’ai un gros souci sur les commandes.Quand je vais voir les commandes dans le back office, je n’ai plus la possibilité de changer le statut de la commande, et je ne vois pas non plus le listing de la commande ( les articles le prix la quantité … ) voir copy écran en pièce jointeMerci pour votre aideCordialementStéphanPS : Presta 1.31 / Template monster Link to comment Share on other sites More sharing options...
ordipaco Posted November 29, 2010 Author Share Posted November 29, 2010 Alors,J'ai changer de base (j'ai essayer avec une base d'origine que j'ai sur un autre site) ca fonctionne ! Cela doit donc venir de la base ! les seules modifs que j'ai faites c'est appliquer le fichier dump.sql joint avec mon Template du coup j'ai du reconfigurer les paramètres pour la langue et la devise par défaut puisque le Template est en anglais.Si vous avez des idéesMerciStéphan Link to comment Share on other sites More sharing options...
goutbouyo Posted November 29, 2010 Share Posted November 29, 2010 Cela vient surement comme tu dis de ton fichier dump.sql.Il faudrait que tu nous donnes son contenu pour qu'on puisse t'aider.Pense à faire un backup de la base avant toute modification. Link to comment Share on other sites More sharing options...
presta38080 Posted January 29, 2011 Share Posted January 29, 2011 Bonjour,J'ai exactement le même problème.Pouvez vous m'aidez.Cordialement Link to comment Share on other sites More sharing options...
sector3 Posted January 29, 2011 Share Posted January 29, 2011 moi aussi, et je lance un sos regulier depuis plusieurs jours, mais personne ne repond et donc, personne ne semble savoir d'ou celà provient. Concernant le ficier dump, je n'ai rien changé. J'ai l'impression qu'il s'agit dun bug, mais personne ne peut confirmer ou infirmer Link to comment Share on other sites More sharing options...
presta38080 Posted January 29, 2011 Share Posted January 29, 2011 Bonsoir, J'ai trouvé le problème.Il vient du fichier dump.sqlEt plus précisement de la table ps_order_detailOuvre dump.sql et modifie ps_order_detail par sa :CREATE TABLE IF NOT EXISTS `ps_order_detail` ( `id_order_detail` int(10) unsigned NOT NULL AUTO_INCREMENT, `id_order` int(10) unsigned NOT NULL, `product_id` int(10) unsigned NOT NULL, `product_attribute_id` int(10) unsigned DEFAULT NULL, `product_name` varchar(255) NOT NULL, `product_quantity` int(10) unsigned NOT NULL DEFAULT '0', `product_quantity_in_stock` int(10) unsigned NOT NULL DEFAULT '0', `product_quantity_refunded` int(10) unsigned NOT NULL DEFAULT '0', `product_quantity_return` int(10) unsigned NOT NULL DEFAULT '0', `product_quantity_reinjected` int(10) unsigned NOT NULL DEFAULT '0', `product_price` decimal(20,6) NOT NULL DEFAULT '0.000000', `reduction_percent` decimal(10,2) NOT NULL DEFAULT '0.00', `reduction_amount` decimal(20,6) NOT NULL DEFAULT '0.000000', `group_reduction` decimal(10,2) NOT NULL DEFAULT '0.00', `product_quantity_discount` decimal(20,6) NOT NULL DEFAULT '0.000000', `product_ean13` varchar(13) DEFAULT NULL, `product_reference` varchar(32) DEFAULT NULL, `product_supplier_reference` varchar(32) DEFAULT NULL, `product_weight` float NOT NULL, `tax_name` varchar(16) NOT NULL, `tax_rate` decimal(10,3) NOT NULL DEFAULT '0.000', `ecotax` decimal(21,6) NOT NULL DEFAULT '0.000000', `ecotax_tax_rate` decimal(5,3) NOT NULL, `discount_quantity_applied` tinyint(1) NOT NULL DEFAULT '0', `download_hash` varchar(255) DEFAULT NULL, `download_nb` int(10) unsigned DEFAULT '0', `download_deadline` datetime DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id_order_detail`), KEY `order_detail_order` (`id_order`), KEY `product_id` (`product_id`), KEY `product_attribute_id` (`product_attribute_id`), KEY `id_order_id_order_detail` (`id_order`,`id_order_detail`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ; Link to comment Share on other sites More sharing options...
sector3 Posted January 29, 2011 Share Posted January 29, 2011 meci beaucoup pour cette reponse, mais tu le trouves ou le fichier dump .sql? Link to comment Share on other sites More sharing options...
presta38080 Posted January 29, 2011 Share Posted January 29, 2011 Bonsoir,Il faut que tu rajoute dans ta base de donnée ps_order_detail que je tes jointFait bien attention a tes donnée que t'avait peut etre avant moi cétait tout vierge donc je n'ai pas eu ce probléme Link to comment Share on other sites More sharing options...
presta38080 Posted January 29, 2011 Share Posted January 29, 2011 créer un fichier ps_order_detail.sql avec ceci -- phpMyAdmin SQL Dump-- version 3.1.1-- http://www.phpmyadmin.net---- Serveur: localhost-- Généré le : Sam 29 Janvier 2011 à 17:35-- Version du serveur: 5.1.30-- Version de PHP: 5.2.8SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";/*!40101 SET @OLD_CHARACTER_SET_CLIENT=[spam-filter]CHARACTER_SET_CLIENT */;/*!40101 SET @OLD_CHARACTER_SET_RESULTS=[spam-filter]CHARACTER_SET_RESULTS */;/*!40101 SET @OLD_COLLATION_CONNECTION=[spam-filter]COLLATION_CONNECTION */;/*!40101 SET NAMES utf8 */;---- Base de données: `prestashop`---- ------------------------------------------------------------ Structure de la table `ps_order_detail`--CREATE TABLE IF NOT EXISTS `ps_order_detail` ( `id_order_detail` int(10) unsigned NOT NULL AUTO_INCREMENT, `id_order` int(10) unsigned NOT NULL, `product_id` int(10) unsigned NOT NULL, `product_attribute_id` int(10) unsigned DEFAULT NULL, `product_name` varchar(255) NOT NULL, `product_quantity` int(10) unsigned NOT NULL DEFAULT '0', `product_quantity_in_stock` int(10) unsigned NOT NULL DEFAULT '0', `product_quantity_refunded` int(10) unsigned NOT NULL DEFAULT '0', `product_quantity_return` int(10) unsigned NOT NULL DEFAULT '0', `product_quantity_reinjected` int(10) unsigned NOT NULL DEFAULT '0', `product_price` decimal(20,6) NOT NULL DEFAULT '0.000000', `reduction_percent` decimal(10,2) NOT NULL DEFAULT '0.00', `reduction_amount` decimal(20,6) NOT NULL DEFAULT '0.000000', `group_reduction` decimal(10,2) NOT NULL DEFAULT '0.00', `product_quantity_discount` decimal(20,6) NOT NULL DEFAULT '0.000000', `product_ean13` varchar(13) DEFAULT NULL, `product_reference` varchar(32) DEFAULT NULL, `product_supplier_reference` varchar(32) DEFAULT NULL, `product_weight` float NOT NULL, `tax_name` varchar(16) NOT NULL, `tax_rate` decimal(10,3) NOT NULL DEFAULT '0.000', `ecotax` decimal(21,6) NOT NULL DEFAULT '0.000000', `ecotax_tax_rate` decimal(5,3) NOT NULL, `discount_quantity_applied` tinyint(1) NOT NULL DEFAULT '0', `download_hash` varchar(255) DEFAULT NULL, `download_nb` int(10) unsigned DEFAULT '0', `download_deadline` datetime DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id_order_detail`), KEY `order_detail_order` (`id_order`), KEY `product_id` (`product_id`), KEY `product_attribute_id` (`product_attribute_id`), KEY `id_order_id_order_detail` (`id_order`,`id_order_detail`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;---- Contenu de la table `ps_order_detail`-- Link to comment Share on other sites More sharing options...
sector3 Posted January 30, 2011 Share Posted January 30, 2011 merci, mais je ne vois pas vraiment comment effectuer ce que tu dis, je ne suis pas un pro des bases de données et encore moins de phpmyadmin.j'ai bien trouvé untable ps_order_detail.sql dans ma base, mais je ne sais pas si c'est celà que je dois modifier et comment Link to comment Share on other sites More sharing options...
presta38080 Posted January 30, 2011 Share Posted January 30, 2011 Bonjour Enfaite il faut que tu supprime cette table et que tu rajoute la table que je tes envoyé.Aprés je sais pas comment bien t'expliquez Link to comment Share on other sites More sharing options...
sector3 Posted January 30, 2011 Share Posted January 30, 2011 ok, merci, je vais regarder celà de plus près Link to comment Share on other sites More sharing options...
presta38080 Posted January 30, 2011 Share Posted January 30, 2011 Je te conseille d'essayer en local avant de le faire sur ton site... Link to comment Share on other sites More sharing options...
sector3 Posted January 30, 2011 Share Posted January 30, 2011 oui, de toute façon!!! Link to comment Share on other sites More sharing options...
sector3 Posted January 30, 2011 Share Posted January 30, 2011 j'ai essayé de recreer la table , mais il me met ce message d'erreur :#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '‘0’, `product_quantity_in_stock` int(10) unsigned NOT NULL DEFAULT ‘0’, ' at line 1je suis en V3.2.4 Link to comment Share on other sites More sharing options...
presta38080 Posted January 30, 2011 Share Posted January 30, 2011 Rajoute la table que je tes mes en piece jointe Link to comment Share on other sites More sharing options...
sector3 Posted January 30, 2011 Share Posted January 30, 2011 pas de pièce jointe Link to comment Share on other sites More sharing options...
presta38080 Posted January 30, 2011 Share Posted January 30, 2011 je n'arrive pas a le mettre Link to comment Share on other sites More sharing options...
presta38080 Posted January 30, 2011 Share Posted January 30, 2011 Je les mis sur megaupload, voila le lien http://www.megaupload.com/?d=J9CTQG90 Link to comment Share on other sites More sharing options...
sector3 Posted January 30, 2011 Share Posted January 30, 2011 LOLon va appeler les pompiers!!!j'essaie de t'envoyer un mail privé pour que tuy puisses le joindre Link to comment Share on other sites More sharing options...
sector3 Posted January 30, 2011 Share Posted January 30, 2011 ok merci, je le recupere Link to comment Share on other sites More sharing options...
sector3 Posted January 30, 2011 Share Posted January 30, 2011 j'ai reinstallé ta table, mais ca ne change rien, je n'ai toujours pas le menu des statuts,argghhhh, je m'arrache les cheveux!!! en tout cas, merci pour ton aide! Link to comment Share on other sites More sharing options...
presta38080 Posted January 30, 2011 Share Posted January 30, 2011 Tu a ressayer de faire un achat Link to comment Share on other sites More sharing options...
sector3 Posted January 30, 2011 Share Posted January 30, 2011 ah non, je vais essayer Link to comment Share on other sites More sharing options...
presta38080 Posted January 30, 2011 Share Posted January 30, 2011 ok, en espérant que sa marche Link to comment Share on other sites More sharing options...
sector3 Posted January 30, 2011 Share Posted January 30, 2011 je viens de passer une bnouvelle commande en local, en reglement par chèque, apparemment, ca fonctionne!!!!je vais essayer pour les virements et paypal. Si c'est ok, j'aurais plus qu'à modifier sur le serveur. En tout cas un grand merci pour le coup de main! Link to comment Share on other sites More sharing options...
presta38080 Posted January 30, 2011 Share Posted January 30, 2011 Il n'y a aucun probleme, je suis comme toi j'apprend si je peut donner un coup de main il n'y a aucun probleme Link to comment Share on other sites More sharing options...
sector3 Posted January 31, 2011 Share Posted January 31, 2011 Bon, je viens de tester en modifiant egalement le fichier adminorders afin de pouvoir supprimer les commandes. Tout est okmerci encore pour ton aide Link to comment Share on other sites More sharing options...
DavidStinson Posted April 14, 2011 Share Posted April 14, 2011 @Presta38080: Je t'aime 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