i solved it with preg_replace
I use magmi to update my Magento catalog, since i have in the import.csv file some product in stock with negative quantity (-2 for example) i noticed that magento make the sum of the actual quantity in the database with the negative quantity in the csv file. Let's say i have in the DB a quantity of 4 and when i go to update i have in the csv file for this product a qty of -2 i would expect to update the catalog qty to 0 but it doesn't happen cause it makes 4-2=2 and this is an error for me. I'm wondering...
I've been able to make it. Thanks Sebastien
Hi Sebastien, thank you very much for your help i was trying quickly the second method but may be i didn't understand well because i have been able to create the new category but it has been named A025 and not the full name (clothes). I created the categories.csv like you suggest (A025;CLOTHES) and saved it in the magmi/plugins/itemprocessors/genericmapper/mappings directory. I added a column CATEGORIES in the import csv file with the value A025 and did the import, but the result is what i wrote...
I need to import a 3rd part catalog in a magento store. In this catalog the only reference for category assignment is their category id that unfortunately is a string like A025 and not an integer. And i have only the last subcategory id, not the full path. Is it possible to create a new category attribute and use Magmi to import products and assign them to sub/categories based on the new category attribute( which is A025 for example) or magmi can assign products to category only based on categor...
Hi, i have the same issue, can you please explain me how did you fix it if you did....