john11400

Utilisateur open source
  • Compteur de contenus

    40
  • Inscrit(e) le

  • Dernière visite


Messages posté(e)s par john11400


  1. J'ai fait cette modif mais j'obtiens une erreur

    "<div align=\"left\">construit_menu_arborescent_cat($categorie_options, $frm['parent'])</div>";

    "<div align=\"left\">echo $categorie_options</div>";

    Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/website/2057/root/boutique/modeles/haut.php on line 90

    Et si j'enleve les guilllemets, j'obtiens ceci :

    Parse error: syntax error, unexpected '<' in /home/website/2057/root/boutique/modeles/haut.php on line 90

    Je voudrais savor l'erreur que j'ai bien pu faire car j'ai bien suivi la procédure.


  2. J'ai crée un champ ecotaxe dans la table commandes-articles comme ceci : float 5,2 non nul

    voila mes modif pour le fichier facture :

    <?php

    include("../configuration.inc.php");

    /* Charge les détails d'une commande et les affiche */

    $timestamp = urldecode($_GET['timestamp']);

    $id = $_GET['id'];

    $mode = $_GET['mode'];

    switch ($mode) {

    case "proforma" :

    $libelle = "BON DE COMMANDE";

    break;

    case "facture" :

    $libelle = "FACTURE";

    break;

    }

    if (!empty($id) && !empty($timestamp)) {

    $qid_commande = mysql_query("SELECT * FROM peel_commandes WHERE id = '$id' AND o_timestamp = '$timestamp'");

    $qid_items = mysql_query("

    SELECT

    p.reference

    ,p.nom

    ,p.promotion

    ,p.prix AS curr_prix

    ,p.ecotaxe AS curr_ecotaxe

    ,oi.prix AS purchase_prix

    ,oi.ecotaxe AS purchase_ecotaxe

    ,oi.quantite

    ,oi.tva

    ,oi.promotion

    ,oi.prix * oi.quantite AS total

    FROM peel_commandes_articles oi

    LEFT JOIN peel_produits p ON (oi.produit_id = p.id)

    WHERE commande_id = '$id'

    ");

    $commande = mysql_fetch_object($qid_commande);

    ?>

    <html>

    <head>

    <TITLE><?php echo $libelle." numéro ".$id." du ".return_date_fr($commande->o_timestamp)."";?></TITLE>

    <link REL="stylesheet" type="text/css" href="<?php echo $stylefile?>">

    <script LANGUAGE="JavaScript" SRC="<?php echo $wwwroot?>/lib/js/window.js"></script>

    </head>

    <body>

    <table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%" bgcolor="white">

    <tr>

    <td valign="top">

    <div align="center">

    <center>

    <table border="0" cellspacing="0" width="90%" bgcolor="white">

    <tr>

    <td valign="top">

    <div class="titre"><?php echo $libelle." numéro ".$id." du ".return_date_fr($commande->o_timestamp)."";?></div>

    <div align="left">

    <table border="1" cellpadding="5" cellspacing="0" width="60%" bordercolor="#000000">

    <tr>

    <td bgcolor="#ffffff" align="center" class="normal">

    <?php

    print_societe();

    ?>

    </td>

    </tr>

    </table>

    </div>

    </td>

    </tr>

    </table>

    </center>

    </div>

    <p align="center" class="normal"><a class="normal" href="java script:window.print();"><b>Imprimer le Facture</b></a></p>

    <div align="center"><center>

    <table border="0" cellpadding="0" cellspacing="0" width="90%" bgcolor="white">

    <tr>

    <td valign="top" width="50%">

    <table border="1" cellpadding="5" cellspacing="1" width="100%" bordercolor="#808080">

    <tr>

    <td bgcolor="#f3e2a0" class="normal"><b>Adresse de facturation</b></td>

    </tr>

    <tr>

    <td class="normal"><?php echo nl2br(stripslashes($commande->client_info1))?></td>

    </tr>

    </table>

    </td>

    <td valign="top" width="50%">

    <table border="1" cellpadding="5" cellspacing="1" width="100%" bordercolor="#808080">

    <tr>

    <td bgcolor="#f3e2a0" class="normal"><b>Adresse de livraison</b></td>

    </tr>

    <tr>

    <td class="normal"><?php echo nl2br(stripslashes($commande->client_info2))?></td>

    </tr>

    </table>

    </td>

    </tr>

    </table>

    </center>

    </div>

    <div align="center">

    <table border="1" cellpadding="3" cellspacing="0" bordercolor="#000000" width="90%" bgcolor="white">

    <tr>

    <td align="center" bgcolor="#f3e2a0" class="label">Ref</td>

    <td align="center" bgcolor="#f3e2a0" class="label">Produit</td>

    <td align="center" bgcolor="#f3e2a0" class="label">Quantité</td>

    <td align="center" bgcolor="#f3e2a0" class="label">Prix unitaire</td>

    <td align="center" bgcolor="#f3e2a0" class="label">Prix Total</td>

    </tr>

    <?php

    $ensemble_total_ht = 0;

    $ensemble_total_ttc = 0;

    if ($qid_items) {

    if (mysql_num_rows($qid_items)) {

    while ($prod = mysql_fetch_array($qid_items)) {

    $prix = $prod['purchase_prix'] + $prod['purchase_ecotaxe'];

    $prix_ht = $prod['purchase_prix'] / (1+$prod['tva']/100);

    $ecotaxe_ht += ((($prod['purchase_prix'] * (1-$promotion/100) + $prod['purchase_ecotaxe']) - $prod['purchase_prix'] * (1-$promotion/100)) / 1.196) * $quantite;

    $total_ttc = $prod['total'] ;

    $total_ht = $total_ttc / (1+$prod['tva']/100);

    $ensemble_total_ht += $total_ht;

    $ensemble_total_ttc += $total_ttc ;

    $tva = $ensemble_total_ttc - $ensemble_total_ht - $ecotaxe_ht;

    ?>

    <tr>

    <td class="normal"><?php echo $prod['reference'] ?></td>

    <td class="normal"><?php print $prod['nom'];if ($prod['promotion'] != 0) {print "&nbsp;(-&nbsp; ".$prod['promotion']." % )";} ?>

    </td>

    <td class="normal" align="center"><?php echo $prod['quantite']?></td>

    <td class="normal" align="center">

    <?php echo fprix($prix)?></td>

    <td class="normal" align="center">

    <?php echo fprix($prod['total'])?> € T.T.C

    </td>

    </td>

    </tr>

    <?php } ?>

    </table>

    <?php

    }

    } ?>

    <br />

    <table border="1" cellpadding="3" cellspacing="0" width="90%" bordercolor="#000000">

    <tr>

    <td align="left" bgcolor="#ffffff" class="normal">Mode de paiement </td>

    <td align="right" bgcolor="#ffffff" class="normal"><?php echo $commande->paiement?></td>

    </tr>

    <tr>

    <td align="left" bgcolor="#ffffff" class="normal">TOTAL HT&nbsp; </td>

    <td align="right" bgcolor="#ffffff" class="normal"><b><?php echo fprix($ensemble_total_ht)?> € H.T.</b></td>

    </tr>

    <tr>

    <td align="left" bgcolor="#ffffff" class="normal">Ecotaxe HT&nbsp; </td>

    <td align="right" bgcolor="#ffffff" class="normal"><b><?php echo fprix($ecotaxe_ht)?> € H.T.</b></td>

    </tr>

    <tr>

    <td align="left" bgcolor="#ffffff" class="normal">TVA&nbsp;</td>

    <td align="right" bgcolor="#ffffff" class="normal"><b><?php echo fprix($tva)?> €</b></td>

    </tr>

    et j'ai modifié dans lib/fonction/fontions dans function cree_commande(&$commande)

    /* ajout des articles à la table commandes_articles */

    $qid = recupere_articles_caddie();

    if ($qid) {

    if (mysql_num_rows($qid) > 0) {

    while ($article = mysql_fetch_array($qid)) {

    $prix = $article['prix'] * (1-$article['promotion']/100);

    $requete = "INSERT INTO peel_commandes_articles (

    commande_id, produit_id, nom_produit, prix, ecotaxe, quantite, promotion, tva

    ) VALUES (

    '$commandeid'

    ,'".$article['id']."'

    ,'".addslashes($article['nom'])."'

    ,'".$prix."'

    ,'".$ecotaxe."'

    ,'".$_SESSION['caddie']->articles[$article['id']]."'

    ,'".$article['promotion']."'

    ,'".$article['tva']."'

    )";


  3. Dans achat/modele/achat_confirmatio, j'ai modifié ceci :

    while ($prod = mysql_fetch_array($qid)) {

    $quantite = $_SESSION['caddie']->articles[$prod['id']];

    $promotion = $prod['promotion'] ;

    $prix = $prod['prix'] * (1-$promotion/100)

    $prix_ht = ($prod['prix'] * (1-$promotion/100)) / (1+$prod['tva'] / 100);

    $total_ttc = $prix * $quantite;

    $total_ht = $prix_ht * $quantite;

    $ensemble_total_ht += $total_ht;

    $ensemble_total_ttc += $total_ttc;

    $tva = $ensemble_total_ttc - $ensemble_total_ht;

    switch ($transport) {

    case "normal" :

    $expedition = $normal;

    break;

    case "express" :

    $expedition = $express;

    break;

    }

    ?>

    <tr>

    <td class="normal"><?php echo $prod['reference'] ?></td>

    <td class="normal">

    <?php echo $prod['nom'] ?>

    </td>

    <td class="normal" align="right">

    <?php

    echo fprix($prix)." &euro; ";

    if ($promotion != 0) { echo "(- ".$promotion." % )"; }

    ?>

    </td>

    <td class="normal" align="center"><?php echo $quantite?></td>

    <td class="normal" align="right" colspan="2">

    <?php echo fprix($total_ttc) ?> €

    </td>

    </tr>

    <?php } ?>

    <tr>

    <td colspan="4"></td>

    <td colspan="2"><hr size=1></td>

    </tr>

    <tr>

    <td colspan="4" class="label" align="right"">Total H.T. :</td>

    <td class="normal" align="right"><b><?php echo fprix($ensemble_total_ht) ?></b></td>

    <td class="normal"><b>€ </b></td>

    </tr>

    <tr>

    <td colspan="4" class="label" align="right">TVA :</td>

    <td class="normal" align="right"><b><?php echo fprix($tva) ?></b></td>

    <td class="normal"><b>&euro;</b></td>

    </tr>

    <tr>

    <td colspan="4" class="label" align="right">Frais d'expédition :</td>

    <td class="normal" align="right"><b><?php echo $expedition; ?></b></td>

    <td class="normal">&euro;</td>

    </tr>

    <tr>

    <td colspan="4" class="label" align="right">Total T.T.C :</td>

    <td class="normal" align="right"><b>

    <?php

    $caddie_total = $ensemble_total_ttc + $expedition;

    Par :

    while ($prod = mysql_fetch_array($qid)) {

    $quantite = $_SESSION['caddie']->articles[$prod['id']];

    $promotion = $prod['promotion'] ;

    $prix = $prod['prix'] * (1-$promotion/100) + $prod['ecotaxe'];

    $prix_ht = ($prod['prix'] * (1-$promotion/100)) / (1+$prod['tva'] / 100);

    $ecotaxe_ht = (($prod['prix'] * (1-$promotion/100) + $prod['ecotaxe']) - $prod['prix'] * (1-$promotion/100)) / 1.196;

    $total_ttc = $prix * $quantite;

    $total_ht = $prix_ht * $quantite;

    $ensemble_total_ht += $total_ht;

    $ensemble_total_ttc += $total_ttc;

    $tva = $ensemble_total_ttc - $ensemble_total_ht - $ecotaxe_ht;

    switch ($transport) {

    case "normal" :

    $expedition = $normal;

    break;

    case "express" :

    $expedition = $express;

    break;

    }

    ?>

    <tr>

    <td class="normal"><?php echo $prod['reference'] ?></td>

    <td class="normal">

    <?php echo $prod['nom'] ?>

    </td>

    <td class="normal" align="right">

    <?php

    echo fprix($prix)." &euro; ";

    if ($promotion != 0) { echo "(- ".$promotion." % )"; }

    ?>

    </td>

    <td class="normal" align="center"><?php echo $quantite?></td>

    <td class="normal" align="right" colspan="2">

    <?php echo fprix($total_ttc) ?> €

    </td>

    </tr>

    <?php } ?>

    <tr>

    <td colspan="4"></td>

    <td colspan="2"><hr size=1></td>

    </tr>

    <tr>

    <td colspan="4" class="label" align="right"">Total H.T. :</td>

    <td class="normal" align="right"><b><?php echo fprix($ensemble_total_ht) ?></b></td>

    <td class="normal"><b>€ </b></td>

    </tr>

    <tr>

    <td colspan="4" class="label" align="right"">Ecotaxe H.T. :</td>

    <td class="normal" align="right"><b><?php echo fprix($ecotaxe_ht) ?></b></td>

    <td class="normal"><b>€ </b></td>

    </tr>

    <tr>

    <td colspan="4" class="label" align="right">TVA :</td>

    <td class="normal" align="right"><b><?php echo fprix($tva) ?></b></td>

    <td class="normal"><b>&euro;</b></td>

    </tr>

    <tr>

    <td colspan="4" class="label" align="right">Frais d'expédition :</td>

    <td class="normal" align="right"><b><?php echo $expedition; ?></b></td>

    <td class="normal">&euro;</td>

    </tr>

    <tr>

    <td colspan="4" class="label" align="right">Total T.T.C :</td>

    <td class="normal" align="right"><b>

    <?php

    $caddie_total = $ensemble_total_ttc + $expedition;

    Mais j'ai un probleme, dans les calculs, j'ai ajouté l'ecotaxe, ca fonctionne pour un produit et seulement 1

    Si j'augmente son nombre , l'ecotaxe n'est pas multiplié

    Si j'ajoute un autre produit, c'est l'ecotaxe de ce produit qui est calculé.

    Pour voir un exemple: www.discountfolies.fr/boutique


  4. Pour que l'ecotaxe soit ajouter au montant du caddie, il faut aller dans lib/class/caddie, et modifié ceci qui se trouve dans function recalc_total:

    $this->total += $this->articles[$produit['id']] * $produit['prix'] * (1-$produit['promotion']/100)

    par

    $this->total += $this->articles[$produit['id']] * $produit['prix'] * (1-$produit['promotion']/100) + $this->articles[$produit['id']]* $produit['ecotaxe']

    Ensuite dans achat/modele/caddie, modifié :

    <?php if ($qid) {

    if (mysql_num_rows($qid) > 0) {

    $ensemble_total = 0;

    while ($prod = mysql_fetch_array($qid)) {

    $quantite = $_SESSION['caddie']->articles[$prod['id']];

    $prix = $prod['prix']*(1-$prod['promotion']/100);

    $total = $prix * $quantite ;

    $ensemble_total += $total ;

    ?>

    par :

    <?php if ($qid) {

    if (mysql_num_rows($qid) > 0) {

    $ensemble_total = 0;

    while ($prod = mysql_fetch_array($qid)) {

    $quantite = $_SESSION['caddie']->articles[$prod['id']];

    $prix = $prod['prix']*(1-$prod['promotion']/100) + $prod['ecotaxe'];

    $total = $prix * $quantite ;

    $ensemble_total += $total ;

    ?>


  5. Apres avoir modifier le fichier caddie dans achat/modele, j'obtiens cette erreur :

    Parse error: syntax error, unexpected T_STRING, expecting ']' in /home/website/2057/root/boutique/achat/modeles/caddie.php on line 60

    et je n'arrive pas à la corriger

    voici le fichier :

    <?php if ($_SESSION['caddie']->compte_elements() == 0) { ?>

    <font class="normal">Votre caddie est vide, <a class="normal" href="<?php echo $wwwroot?>/achat/index.php">consultez le catalogue</a>.</font>

    <?php return false; ?>

    <?php } ?>

    <script language="Javascript">

    function frmsubmit(func) {

    frm = document.entryform;

    frm.func.value = func;

    frm.submit();

    }

    </script>

    <form name="entryform" method="post" action="<?php echo $_SERVER['PHP_SELF']?>">

    <input type="hidden" name="func" value="" />

    <table border="0" cellspacing="0" cellpadding="0" width="100%">

    <tr valign="top">

    <td valign="top" class="normal" align="center">

    <table border="0" cellspacing="0" cellpadding="0" width="100%">

    <tr>

    <td class="tetiere">Votre panier</td></tr>

    <tr><td height="5">&nbsp;</td></tr>

    </table>

    </td>

    </tr>

    <tr valign="top">

    <td class="normal">

    <table cellspacing="1" cellpadding="0" border="0" width="100%">

    <tr><td colspan="5" bgcolor="#333366" height="1"><img src="<?php echo $wwwroot?>/images/blank.gif" height="1" alt="" /></td></tr>

    <tr bgcolor="#eeeeee">

    <td class="label">&nbsp;</td>

    <td class="label">Produit</td>

    <td class="label" align="center">Quantité</td>

    <td class="label" align="center">Prix unitaire</td>

    <td class="label" align="center">ecotaxe</td>

    <td class="label" align="center">Prix Total</td>

    </tr><br />

    <tr><td colspan="5" bgcolor="#333366" height="1">

    <img src="<?php echo $wwwroot?>/images/blank.gif" height="1" alt="" /></td></tr>

    <?php if ($qid) {

    if (mysql_num_rows($qid) > 0) {

    $ensemble_total = 0;

    while ($prod = mysql_fetch_array($qid)) {

    $quantite = $_SESSION['caddie']->articles[$prod['id']];

    $prix = $prod['prix']*(1-$prod['promotion']/100);

    $ecotaxe = $prod['ecotaxe]

    $total = ($prix*$quantite)+($ecotaxe*$quantite) ;

    $ensemble_total += $total ;

    ?>

    <tr>

    <input type="hidden" name="id[]" value="<?php echo $prod['id']]?>" />

    <td class="normal">

    <a onClick="java script:return confirm('Êtes-vous sûr de vouloir enlever ce produit du panier ?');" class="normal" href="<?php echo $_SERVER['PHP_SELF']?>?func=enleve&id=<?php echo $prod['id']?>">

    <img src="<?php echo $wwwroot?>/images/poubelle.gif" width="25" height="25" alt="" border="0" />

    </a></td>

    <td class="normal">

    <!-- affiche le nom du produit -->

    <a class="normal" href="<?php echo $wwwroot?>/achat/produit_details.php?id=<?php echo $prod['id']?>"><?php echo $prod['nom'] ?></a>

    </td>

    <td class="normal" align="center"><select name="quantite[]" class="formulaire1">

    <?php // Affiche la quantité en stock

    $i=1;

    while ($i<=$prod['stock'])

    {

    echo "<option value=\"$i\"";

    if ($i==$quantite) {echo" selected";}

    echo " >$i</option>";

    $i++;

    }

    ?>

    </select>

    </td>

    <td class="normal" align="center">

    <font color="#CC0000"><?php echo fprix($prix); ?> &euro; TTC</font>

    </td>

    <td class="normal" align="center">

    <font color="#CC0000"><?php echo fprix($total); ?> &euro; TTC</font>

    </td>

    </tr>

    <?php }

    }

    } ?>

    <tr>

    <td colspan="4">&nbsp;</td>

    <td><hr size="1" /></td>

    </tr>

    <tr>

    <td colspan="4" class="label" align="right">Total :</td>

    <td class="normal" align="center">

    <font color="#CC0000"><?php echo fprix($ensemble_total) ?>&nbsp;&euro; TTC</font>

    </td>

    </tr>

    <tr><td colspan="5" align="center">

    <a class="normal" href="java script: frmsubmit('recalc');"><b>1. METTRE A JOUR</b></a> |

    <a class="normal" href="java script: frmsubmit('commande');"><b>2. COMMANDER</b></a> |

    <a class="normal" href="<?php echo $wwwroot?>/achat">Consulter le catalogue</a> |

    <a class="normal" href="java script: frmsubmit('vide');">Vider la liste</a>

    </td></tr></table>

    </td></tr></table>

    </form>


  6. dans index.php, ajouter dans le select : ecotaxe

    $qid = mysql_query("SELECT id, nom, promotion, descriptif, image1, prix, ecotaxe, stock FROM peel_produits WHERE on_special = 1 AND etat = 1")

    et modifier la partie suivante :

    <?php

    $prix = $prod['prix'] * (1-$prod['promotion']/100);

    if ($prod['promotion'] != 0) {?>

    <font color="#CC0000"><b>Promotion : <?php echo $prod['promotion']; ?> %</b></font><br />

    <b>Prix TTC : </b><s><?php echo fprix($prod['prix']); ?></s>

    &nbsp;<font color="#CC0000"><b><?php echo fprix($prix); ?> &euro; TTC</b></font><br />

    <?php } else {?>

    <b>Prix : <font color="#CC0000"><?php echo fprix($prix); ?> € T.T.C</b></font><br />

    <?php

    par

    <?php

    echo nl2br(stripslashes($prod['descriptif']))."<br />";

    $prix = $prod['prix'] * (1-$prod['promotion']/100);

    if ($prod['promotion'] != 0) {?>

    <font color="#CC0000">Promotion : <?php echo $prod['promotion']; ?> %</font><br />

    Prix TTC : <s><?php echo fprix($prod['prix']); ?></s>&nbsp;

    <font color="#CC0000"><?php echo fprix($prix); ?> € TTC</font><br />

    plus ecotaxe : <font color="#CC0000"> <?php echo fprix($prod['ecotaxe']); ?> € T.T.C&nbsp;

    <?php } else {?>

    Prix : <font color="#CC0000"><?php echo fprix($prix); ?> € T.T.C</font><br />

    plus ecotaxe : <font color="#CC0000"> <?php echo fprix($prod['ecotaxe']); ?> € T.T.C&nbsp;

    </font><br />

    <?php } ?>

    faire la meme modif pour achat/index.php

    achat/produit_détail


  7. J'ai oublié que dans le fichier administrer/produits il faut ajouter :

    , '$frm[ecotaxe]'

    , ecotaxe

    dans

    function insere_produit($id, $img1, $img2, $img3, $img4, $pdf, $frm) {

    /* Ajoute un nouveau sous-produit sous le parent $id. Les champs sont dans la variable $frm */

    valide($frm['on_special']);

    valide($frm['etat']);

    $nom = addSlashes($frm['nom']);

    $description = addSlashes($frm['description']);

    $descriptif = addSlashes($frm['descriptif']);

    /*ajoute le produit dans la table produits */

    $qid = mysql_query("

    INSERT INTO peel_produits (

    reference

    , nom

    , description

    , prix

    , ecotaxe

    , descriptif

    , image1

    , image2

    , image3

    , image4

    , pdf

    , lang

    , promotion

    , stock

    , tva

    , etat

    , date_insere

    , date_maj

    , on_special)

    VALUES (

    '$frm[reference]'

    , '$nom'

    , '$description'

    , '$frm[prix]'

    , '$frm[ecotaxe]'

    , '$descriptif'

    , '$img1'

    , '$img2'

    , '$img3'

    , '$img4'

    , '$pdf'

    , 'fr'

    , '$frm[promotion]'

    , '$frm[stock]'

    , '$frm[tva]'

    , '$frm[etat]'

    , now()

    , now()

    , '$frm[on_special]')

    ");

    et ajouter :

    ,ecotaxe = '$frm[ecotaxe]'

    dans

    function maj_produit($id, $img1, $img2, $img3, $img4, $pdf, $frm) {

    /* Met à jour le produit $id avec de nouvelles valeurs. Les champs sont dans $frm */

    valide($frm['on_special']);

    $nom = addSlashes($frm['nom']);

    $description = addSlashes($frm['description']);

    $descriptif = addSlashes($frm['descriptif']);

    /* Met à jour la table produits */

    $qid = mysql_query("

    UPDATE peel_produits SET

    reference = '$frm[reference]'

    ,nom = '$nom'

    ,description = '$description'

    ,prix = '$frm[prix]'

    ,ecotaxe = '$frm[ecotaxe]'

    ,descriptif = '$descriptif'

    ,image1 = '$img1'

    ,image2 = '$img2'

    ,image3 = '$img3'

    ,image4 = '$img4'

    ,pdf = '$pdf'

    ,lang = 'fr'

    ,promotion = '$frm[promotion]'

    ,stock = '$frm[stock]'

    ,tva = '$frm[tva]'

    ,etat = '$frm[etat]'

    ,date_maj = now()

    ,on_special = '$frm[on_special]'

    WHERE id = $id

    ");


  8. C'est ce que j'ai fait la premiere fois mais lorsque je veux modifier les index, produits-détails etc, j'avais toujours une erreur alors qu'avec cette méthode je n'ai pas d'erreur lorsque je modifie ces fichiers

    Je mettrais le reste de la procédure en ligne ce soir

    Par contre, je n'ai pas encore trouvé pour faire apparaitre l'ecotaxe sur facture, caddie,

    J'utilise la gestion des stocks, et je voudrais quel'ecotaxe soit mutiplié automatiquement en fonction du nombre de produit

    Si quelq'un peut m'aider pour ce probleme ca serait sympa

Twitter Advisto ecommerce

Facebook PEEL Shopping