-
Posts
295 -
Joined
-
Last visited
About Agostini Julien
- Birthday 08/25/1985
Profile Information
-
Location
France
-
First Name
Julien
-
Last Name
Agostini
-
Activity
Web Development Agency
Recent Profile Visitors
7,121,485 profile views
Agostini Julien's Achievements
-
Agostini Julien changed their profile photo
-
Bonjour chiff-chaff, Il y a deux modules pour les logos de paiement natifs sur Prestashop : Blockpaymentlogo et Productpaymentlogos. Dans votre cas c'est effectivement Blockpaymentlogo. Il vous suffit de modifier ce fichier dans votresite/themes/votretheme/modules/blockpaymentlogo/blockpaymentlogo.tpl Bonne continuation
-
Bonjour BackTee, Oui c'est tout à fait faisable. Il est nécessaire de passer par la création d'un module spécifique à moins qu'un module équivalent soit déjà disponible sur la plateforme Addons. Mais rien de bien compliqué en cas de création de module avec intégration d'une vidéo (.mp4, .ogg et webm) dans la fiche produit via HTML5. Bonne continuation
-
Bonsoir le tonton, En ce qui concerne l'oublie des catégories, cela à été modifié sur la dernière version téléchargé à le sur ce topic. Pour le code langue il vous suffit de modifié le ou les codes souhaités directement depuis votre interface d'administration (B.O). {$lang.language_code} est juste la syntaxe smarty nécessaire pour afficher le code langage situé dans l'objet "lang" Bonne continuation à vous
-
Ok donc nous sommes sur la bonne piste l'auto incrément était bien manquant pour la table `orders` bizarre qu'il est pu sauter comme ça.. Une nouvelle erreur apparaît mais la commande est cette fois-ci générée.. Lors du passage d'une commande avec paiement accepté à préparation en cours celle-ci génère un id_order_invoice et number et delivery_number à 0
-
Bien sûr le voici.. -- phpMyAdmin SQL Dump -- version 4.4.15.7 -- http://www.phpmyadmin.net -- -- Client : ************** -- Généré le : Lun 22 Mai 2017 à 11:47 -- Version du serveur : 5.5.55-0+deb7u1-log -- Version de PHP : 5.6.30-0+deb8u1 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!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 utf8mb4 */; -- -- Base de données : `*************` -- -- -------------------------------------------------------- -- -- Structure de la table `ps_orders` -- CREATE TABLE IF NOT EXISTS `ps_orders` ( `id_order` int(10) unsigned NOT NULL, `reference` varchar(9) DEFAULT NULL, `id_shop_group` int(11) unsigned NOT NULL DEFAULT '1', `id_shop` int(11) unsigned NOT NULL DEFAULT '1', `id_carrier` int(10) unsigned NOT NULL, `id_lang` int(10) unsigned NOT NULL, `id_customer` int(10) unsigned NOT NULL, `id_cart` int(10) unsigned NOT NULL, `id_currency` int(10) unsigned NOT NULL, `id_address_delivery` int(10) unsigned NOT NULL, `id_address_invoice` int(10) unsigned NOT NULL, `current_state` int(10) unsigned NOT NULL, `secure_key` varchar(32) NOT NULL DEFAULT '-1', `payment` varchar(255) NOT NULL, `conversion_rate` decimal(13,6) NOT NULL DEFAULT '1.000000', `module` varchar(255) DEFAULT NULL, `recyclable` tinyint(1) unsigned NOT NULL DEFAULT '0', `gift` tinyint(1) unsigned NOT NULL DEFAULT '0', `gift_message` text, `mobile_theme` tinyint(1) NOT NULL DEFAULT '0', `shipping_number` varchar(64) DEFAULT NULL, `total_discounts` decimal(20,6) NOT NULL DEFAULT '0.000000', `total_discounts_tax_incl` decimal(20,6) NOT NULL DEFAULT '0.000000', `total_discounts_tax_excl` decimal(20,6) NOT NULL DEFAULT '0.000000', `total_paid` decimal(20,6) NOT NULL DEFAULT '0.000000', `total_paid_tax_incl` decimal(20,6) NOT NULL DEFAULT '0.000000', `total_paid_tax_excl` decimal(20,6) NOT NULL DEFAULT '0.000000', `total_paid_real` decimal(20,6) NOT NULL DEFAULT '0.000000', `total_products` decimal(20,6) NOT NULL DEFAULT '0.000000', `total_products_wt` decimal(20,6) NOT NULL DEFAULT '0.000000', `total_shipping` decimal(20,6) NOT NULL DEFAULT '0.000000', `total_shipping_tax_incl` decimal(20,6) NOT NULL DEFAULT '0.000000', `total_shipping_tax_excl` decimal(20,6) NOT NULL DEFAULT '0.000000', `carrier_tax_rate` decimal(10,3) NOT NULL DEFAULT '0.000', `total_wrapping` decimal(20,6) NOT NULL DEFAULT '0.000000', `total_wrapping_tax_incl` decimal(20,6) NOT NULL DEFAULT '0.000000', `total_wrapping_tax_excl` decimal(20,6) NOT NULL DEFAULT '0.000000', `round_mode` tinyint(1) NOT NULL DEFAULT '2', `round_type` tinyint(1) NOT NULL DEFAULT '1', `invoice_number` int(10) unsigned NOT NULL DEFAULT '0', `delivery_number` int(10) unsigned NOT NULL DEFAULT '0', `invoice_date` datetime NOT NULL, `delivery_date` datetime NOT NULL, `valid` int(1) unsigned NOT NULL DEFAULT '0', `date_add` datetime NOT NULL, `date_upd` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Index pour les tables exportées -- -- -- Index pour la table `ps_orders` -- ALTER TABLE `ps_orders` ADD PRIMARY KEY (`id_order`), ADD KEY `reference` (`reference`), ADD KEY `id_customer` (`id_customer`), ADD KEY `id_cart` (`id_cart`), ADD KEY `invoice_number` (`invoice_number`), ADD KEY `id_carrier` (`id_carrier`), ADD KEY `id_lang` (`id_lang`), ADD KEY `id_currency` (`id_currency`), ADD KEY `id_address_delivery` (`id_address_delivery`), ADD KEY `id_address_invoice` (`id_address_invoice`), ADD KEY `id_shop_group` (`id_shop_group`), ADD KEY `current_state` (`current_state`), ADD KEY `id_shop` (`id_shop`), ADD KEY `date_add` (`date_add`); /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;