Jump to content

Ajouter des champs de déclinaison


Recommended Posts

Bonjour,

J'ai besoin d'ajouter 2 ou 3 champs aux déclinaisons pour les voir apparaître dans la page product.php

1) j'ai ajouté 2 champs dans la table ps_product_attribute, le premier `CHAMP_1` de type DATE et le deuxième `CHAMP_2` de type INT(2)

2) dans classes/Product.php j'ai complété la fonction getAttributesGroups

$result = Db::getInstance()->ExecuteS('
               SELECT ag.`id_attribute_group`, ag.`is_color_group`, agl.`name` AS group_name, agl.`public_name` AS public_group_name, a.`id_attribute`, al.`name` AS attribute_name,
               a.`color` AS attribute_color, pa.`id_product_attribute`, pa.`quantity`, pa.`price`, pa.`ecotax`, pa.`weight`, pa.`default_on`, pa.`reference`

               , pa.`CHAMP_1`, pa.`CHAMP_2`


               FROM `'._DB_PREFIX_.'product_attribute` pa
.....



3) dans product.php au sein de /* Attributes / Groups & colors */ j'ai ajouté

$combinations[$row['id_product_attribute']]['ecotax'] = floatval($row['ecotax']);
/////////////////////////////////////
$combinations[$row['id_product_attribute']]['CHAMP_1'] = pSQL($row['CHAMP_1']);
$combinations[$row['id_product_attribute']]['CHAMP_2'] = intval($row['CHAMP_2']);
/////////////////////////////////////
$combinations[$row['id_product_attribute']]['weight'] = floatval($row['weight']);



4) après je suis bloqué ....
Il y a-t-il une bonne âme charitable pour me mettre sur la piste

Merci par avance.

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...