FireGento_FastSimpleImport2
FireGento_FastSimpleImport2 copied to clipboard
When importing product category with pipe, create wrong category name
Related to issue #13
When importing product category with pipe "|", create wrong category name.
My fields categories is "CATALOGO/Felpe/Basic|MARCHI/GILDAN/Felpe/Basic", and create this categories:
- CATALOGO
- Felpe
- Basic|MARCHI
- GILDAN - Felpe Why?
- Basic|MARCHI
- Felpe
But if concat the categories path with comma "," instead of pipe "|", work perfectly!! Why?
I fix this issue in this mode:
$importerModel = $this->objectManager->create('FireGento\FastSimpleImport\Model\Importer');
$importerModel->setMultipleValueSeparator('|');