Jump to content

Import CSv hauteur, largeur; profondeur


Recommended Posts

Bonjour tout le monde ,

 

 

Dans un produit je vois qu'il y a 3 champs (hauteur, largeur, profondeur) supplémentaires directement dans la fiche.

 

Quand je génére un exemple CSV j'aperçois à la fin du fichier "hauteur" mais déclarer en caractéristique.

 

 

Dans import csv y à t'il des champs réservés ou faut t'ils les déclarer en caractéristique ?

 

 

 

PS: ne pas oublier de sauter 1 ligne quand on importe j'avais complétement zapé cette ligne avec le nom des colonnes et elle ma pourris 30min de mon temps.

Link to comment
Share on other sites

Bon je ne pensé pas dériver en dev mais voici les modifs que j'ai effectué sur mon fichier "adminImport.php"

 

'height' => array('label' => $this->l('Height')), ligne 98
'height' => 0,   lign 115
'height' => array('label' => $this->l('Height')), ligne167

 

J'ai l'erreur "Les colonnes ne peuvent avoir des valeurs du même type".

 

J'ai oublier certainement quelque chose mais je continue de chercher

Link to comment
Share on other sites

Donc voici la solution final pour debloquer les mensurations du produit, Hauteur, Largeur, Profondeur. pour une importation csv.

 

Modification à apporter au fichier AdminImport.php contenu dans Admin/tabs/ Ajoutez les lignes

 

 

A inserer a partir de ligne 97

 

'height' => array('label' => $this->l('Height')),
'width' => array('label' => $this->l('Width')),
'depth' => array('label' => $this->l('Depth')),

 

 

Ligne 116

 

'height' => 0,
'width' => 0,
'depth' => 0,

 

 

 

Ligne 171

 

'height' => array('label' => $this->l('Height')),
'width' => array('label' => $this->l('Width')),
'depth' => array('label' => $this->l('Depth')),

 

 

Je vous joint mon csv il contient la plupart des champs obtenu en exemple dans prestashop dans import avec les champs HxLxP

 

 

Attention n'oublier pas de mettre un saut à la ligne à cause des noms de colonnes.

produit.csv.zip

  • Like 2
Link to comment
Share on other sites

  • 3 months later...
  • 2 months later...

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...