Такая проблема.
Переношу товары с другого сайта, там сделал экспорт с помощью данного модуля, как тут писали настроил форму поставщика под добавление из полученного ex.xml.
Все отлично за исключением того, что сползает описание. В ех есть столбец описание, в нем оно с html разметкой
<p>Светильник встраиваемый со светодиодной подсветкой, 15LED*2835 SMD 4000K, MR16 50W G5.3, желтый, серебро, 8585-2</p> <table class="product_info_table"> <tbody> <tr class="product_info_row"> <th class="product_info_name">Артикул</th> <td class="product_info_value">28577</td> </tr> <tr class="product_info_row"> <th class="product_info_name">Мощность, Вт</th> <td class="product_info_value">50</td> </tr> <tr class="product_info_row"> <th class="product_info_name">Напряжение, Вольт</th> <td class="product_info_value">12</td> </tr> <tr class="product_info_row"> <th class="product_info_name">Производитель</th> <td class="product_info_value">Feron</td> </tr> <tr class="product_info_row"> <th class="product_info_name">Тип</th> <td class="product_info_value">декоративный с LED подсветкой</td> </tr> <tr class="product_info_row"> <th class="product_info_name">Цвет 1</th> <td class="product_info_value">желтый</td> </tr> <tr class="product_info_row"> <th class="product_info_name">Группа</th> <td class="product_info_value">Точечные декоративные светильники</td> </tr> <tr class="product_info_row"> <th class="product_info_name">Высота изделия, мм</th> <td class="product_info_value">26</td> </tr> <tr class="product_info_row"> <th class="product_info_name">Длина изделия, мм</th> <td class="product_info_value">92</td> </tr> <tr class="product_info_row"> <th class="product_info_name">Ширина изделия, мм</th> <td class="product_info_value">92</td> </tr> <tr class="product_info_row"> <th class="product_info_name">Наличие LED</th> <td class="product_info_value">да</td> </tr> <tr class="product_info_row"> <th class="product_info_name">Монтажный диаметр</th> <td class="product_info_value">57</td> </tr> <tr class="product_info_row"> <th class="product_info_name">Страна происхождения</th> <td class="product_info_value"></td> </tr> </tbody></table>
когда в описание товара забиваешь этот столбик, модуль вырезает некоторые теги и получается
<p>Светильник встраиваемый со светодиодной подсветкой 15LED*2835 SMD 4000K, MR16 50W G5.3, черный, серебро, 8585-2</p> Артикул Мощность, Вт Напряжение, Вольт Производитель Тип Цвет 1 Группа Высота изделия, мм Длина изделия, мм Ширина изделия, мм Наличие LED Монтажный диаметр Страна происхождения <table class="product_info_table"> <tbody> <tr class="product_info_row"><td class="product_info_value">28579</td> </tr> <tr class="product_info_row"><td class="product_info_value">50</td> </tr> <tr class="product_info_row"><td class="product_info_value">12</td> </tr> <tr class="product_info_row"><td class="product_info_value">Feron</td> </tr> <tr class="product_info_row"><td class="product_info_value">декоративный с LED подсветкой</td> </tr> <tr class="product_info_row"><td class="product_info_value">черный</td> </tr> <tr class="product_info_row"><td class="product_info_value">Точечные декоративные светильники</td> </tr> <tr class="product_info_row"><td class="product_info_value">26</td> </tr> <tr class="product_info_row"><td class="product_info_value">92</td> </tr> <tr class="product_info_row"><td class="product_info_value">92</td> </tr> <tr class="product_info_row"><td class="product_info_value">да</td> </tr> <tr class="product_info_row"><td class="product_info_value">57</td> </tr> <tr class="product_info_row"><td class="product_info_value"></td> </tr> </tbody></table>
насколько я понял, строка параметры парсинга для экспорта описания из ячейки не работает.
Есть ли способы обхода?