Сложный вывод элементов

#
Сложный вывод элементов
Здравствуйте, в xml карточки товара передаю два набора инфоэлементов из разных инфосистем, необходимо построить такой вывод

Инфосистема-1-Элемент-1
Инфосистема-2-Элемент-1
Инфосистема-2-Элемент-2
Инфосистема-2-Элемент-3
Инфосистема-2-Элемент-4
Инфосистема-1-Элемент-2

Подскажите как можно в xsl построить такой вывод
Пробовал так но выводятся после каждого элемента 1 инфосистемы все элементы второй

<xsl:template match="informationsystem_item" mode="reviews">
         <div class="recalls_photos_item recalls_photos_item_2">
            <a href="{url}">
               <xsl:choose>
                  <xsl:when test="image_small!=''">
                     <img src="{dir}{image_small}" alt="{name}" title="{name}" class="img-responsive"/>
                  </xsl:when>
                  <xsl:when test="property_value[tag_name='image'][1]/file != ''">
                     <img src="{dir}{property_value[tag_name='image'][1]/file}" alt="{name}" title="{name}" class="img-responsive" />
                  </xsl:when>
               </xsl:choose>
            </a>
         </div>
   <xsl:apply-templates select="/informationsystem/tovar/shop_item[position() mod 4 = 1]" mode="tovar" />
         
      </xsl:template>
   
      <!-- Вывод товаров -->
   <xsl:template mode="tovar" match="shop_item">
      
      
      <div class="shop_item_group_4">
   <xsl:for-each select=". | following-sibling::shop_item[position() &lt; 4]">
         
         <div class="shopItem item_left">
            
            <div class="item_name">
            <a href="{url}" title="{name}" target="_blank"><xsl:value-of disable-output-escaping="yes" select="name"/></a></div>
            
            <a href="{url}" class="item_photo" target="_blank">
               <xsl:choose>
                  <xsl:when test="image_small != ''">
                     <img src="{dir}{image_small}" alt="{name}" title="{name}"/>
                  </xsl:when>
                  <xsl:otherwise>
                     <img src="/images/no-image.png" alt="{name}" title="{name}"/>
                  </xsl:otherwise>
               </xsl:choose>
            </a>
            
            
            <div>
               
         <span class="price"><xsl:value-of select="format-number(price, '### ##0', 'my')"/><xsl:text> </xsl:text><xsl:value-of select="currency"/><xsl:text> </xsl:text></span>
               
               
               
            </div>
            
            <div class="clear"></div>
         </div>
         </xsl:for-each>
         </div>
      </xsl:template>

Модератор
#
Re: Сложный вывод элементов
PakoGonsalezZ писал(а):
Инфосистема-1-Элемент-1
Инфосистема-2-Элемент-1
Инфосистема-2-Элемент-2
Инфосистема-2-Элемент-3
Инфосистема-2-Элемент-4
Инфосистема-1-Элемент-2

так а в чем здесь логика? после 4 идет 2.

неясно как в XML элементы вами представлены.
#
Re: Сложный вывод элементов
В XML они добавлены выборкой по тегу. Идет один элемент одной инфосистемы, потом 4 товара, потом снова инфоэлемент и за ним 4 товара
вот так они находятся, я не понимаю как сделать выборку одного узла и в нем сделать выборку другого по 4 элемента
/informationsystem/reviews_works/informationsystem_item
/informationsystem/tovar/shop_item
Модератор
#
Re: Сложный вывод элементов
PakoGonsalezZ,
задача по прежнему не ясна
PakoGonsalezZ писал(а):
Идет один элемент одной инфосистемы, потом 4 товара, потом снова инфоэлемент и за ним 4 товара
прям в одном общем списке идут или как-то сгруппированы по тегам?
PakoGonsalezZ писал(а):
я не понимаю как сделать выборку одного узла и в нем сделать выборку другого по 4 элемента

какая связь у этих элементов между собой? Судя по описанию никакой связи нет, они просто идут друг за другом.

возможно вам поможет ось following-sibling::, но шаблон нужно будет применять не к informationsystem_item, а к *
#
Re: Сложный вывод элементов
hostcms писал(а):
прям в одном общем списке идут или как-то сгруппированы по тегам?

Тут я имел ввиду что так должно быть. Логика такая, там идут работы и товары, должна выводится работа, за ней 4 товара, потом следующая работа и за ней 4 товара и так далее
hostcms писал(а):
возможно вам поможет ось following-sibling::, но шаблон нужно будет применять не к informationsystem_item, а к *

Выше я указал код где я это использую, но у меня вот такая картина
У меня выводится 1 элемент, потом все сгрупированные товары по 4 штуки
http://joxi.ru/krDGl0ecKjLvRA
А нужно чтобы работа -блок с 4 товарами, работа - блок с 4 товарами
Помогите правильно дописать выборку, уже всю голову сломал
#
Re: Сложный вывод элементов
ВОт XML, узлы которые необходимы
/informationsystem/reviews_works/informationsystem_item
/informationsystem/tovar/shop_item

Необходимо сделать выборку один элемент informationsystem_item потом 4 shop_item, потом следующий один элемент informationsystem_item и следующие 4 shop_item

<informationsystem id="32">
   <informationsystem_dir_id>0</informationsystem_dir_id>
   <structure_id>166</structure_id>
   <site_id>1</site_id>
   <name>Украшаем самые счастливые моменты</name>
   <description></description>
   <items_sorting_direction>0</items_sorting_direction>
   <items_sorting_field>0</items_sorting_field>
   <groups_sorting_direction>0</groups_sorting_direction>
   <groups_sorting_field>1</groups_sorting_field>
   <image_large_max_width>1280</image_large_max_width>
   <image_large_max_height>1280</image_large_max_height>
   <image_small_max_width>10</image_small_max_width>
   <image_small_max_height>10</image_small_max_height>
   <siteuser_group_id>0</siteuser_group_id>
   <use_captcha>1</use_captcha>
   <watermark_file></watermark_file>
   <watermark_default_use_large_image>0</watermark_default_use_large_image>
   <watermark_default_use_small_image>0</watermark_default_use_small_image>
   <watermark_default_position_x>50%</watermark_default_position_x>
   <watermark_default_position_y>100%</watermark_default_position_y>
   <user_id>30</user_id>
   <items_on_page>999</items_on_page>
   <format_date>%d.%m.%Y</format_date>
   <format_datetime>%d.%m.%Y %H:%M:%S</format_datetime>
   <url_type>0</url_type>
   <typograph_default_items>0</typograph_default_items>
   <typograph_default_groups>0</typograph_default_groups>
   <apply_tags_automatically>0</apply_tags_automatically>
   <change_filename>0</change_filename>
   <apply_keywords_automatically>0</apply_keywords_automatically>
   <group_image_large_max_width>1000</group_image_large_max_width>
   <group_image_large_max_height>1000</group_image_large_max_height>
   <group_image_small_max_width>300</group_image_small_max_width>
   <group_image_small_max_height>450</group_image_small_max_height>
   <preserve_aspect_ratio>1</preserve_aspect_ratio>
   <preserve_aspect_ratio_small>0</preserve_aspect_ratio_small>
   <preserve_aspect_ratio_group>1</preserve_aspect_ratio_group>
   <preserve_aspect_ratio_group_small>0</preserve_aspect_ratio_group_small>
   <http>//planetasharov.ru</http>
   <url>/decorate-the-happiest-moments/</url>
   <captcha_id>93768</captcha_id>
   <items_count>0</items_count>
   <items_total_count>66</items_total_count>
   <subgroups_count>3</subgroups_count>
   <subgroups_total_count>36</subgroups_total_count>
   <siteuser_id>0</siteuser_id>
   <ОтображатьСсылкуНаАрхив>0</ОтображатьСсылкуНаАрхив>
   <ОтображатьСсылкиНаСледующиеСтраницы>1</ОтображатьСсылкиНаСледующиеСтраницы>
   <ТекущаяГруппа>81</ТекущаяГруппа>
   <show_comments>0</show_comments>
   <show_add_comments>0</show_add_comments>
   <same></same>
   <tovar>
      <shop_item id="1038">
         <shortcut_id>0</shortcut_id>
         <shop_tax_id>0</shop_tax_id>
         <shop_seller_id>0</shop_seller_id>
         <shop_group_id>595</shop_group_id>
         <shop_currency_id>1</shop_currency_id>
         <shop_id>1</shop_id>
         <shop_producer_id>0</shop_producer_id>
         <shop_measure_id>0</shop_measure_id>
         <type>0</type>
         <name>Кукла ЛОЛ из воздушных шаров</name>
         <marking></marking>
         <vendorcode></vendorcode>
         <description></description>
         <text>&lt;p&gt;Кукла ЛОЛ из воздушных шаров &amp;ndash; это отличная возможность порадовать своих маленьких принцесс уникальным и оригинальным подарком, который вызовет массу ярких эмоций и незабываемых впечатлений. В последние месяцы в России и странах СНГ началась бешеная популярность кукол ЛОЛ. Они представляют собой небольшие пластиковые игрушки, которые находятся в круглом шаре и запакованы в 6 слоёв плёнки. После каждого слоя идёт определённый сюрприз: загадки-ребусы, комплекты наклеек, аксессуары, обувь и одежда для кукол.&lt;/p&gt;
            &lt;p&gt;Всего существует 100 видов таких игрушек, и каждая девочка желает собрать полный комплект. Но сделать это практически невозможно (как по цене, так и по теории вероятности), поэтому более разумный вариант &amp;ndash; найти альтернативу такой игрушке. Наша компания &amp;laquo;Планета шаров&amp;raquo; предлагает всем жителям и гостям Москвы заказать куклу ЛОЛ из шариков, которая непременно порадует любую маленькую принцессу.&lt;/p&gt;
            &lt;h2&gt;Особенности куклы ЛОЛ из шаров&lt;/h2&gt;
            &lt;p&gt;Сам подарок представляет собой скульптуру из воздушных шариков в виде куклы. Композиция имеет все необходимые отличительные черты:&lt;/p&gt;
            &lt;ul&gt;
            &lt;li&gt;красиво сформированные изящные волосы из шариков;&lt;/li&gt;
            &lt;li&gt;лицо с нанесёнными глазками, бровками, носиком и губками;&lt;/li&gt;
            &lt;li&gt;ручки и ножки;&lt;/li&gt;
            &lt;li&gt;красивейшее разноцветное платьице;&lt;/li&gt;
            &lt;li&gt;стильную обувь.&lt;/li&gt;
            &lt;/ul&gt;
            &lt;p&gt;К руке ЛОЛ можно прикрепить большой фольгированный шар, на который наносится любой поздравительный текст: &amp;laquo;Happy Birthday ИМЯ&amp;raquo;, &amp;laquo;С праздником&amp;raquo;, &amp;laquo;Любимой доченьке&amp;raquo; и т. д. Наши мастера аэродизайна обладают огромным опытом и отличными практическими навыками, при этом они старались сделать всё возможное, чтобы максимально красиво сформировать воздушные шарики в стиле куклы Lol, и у них это получилось превосходно.&lt;/p&gt;
         &lt;p&gt;Стоимость такого подарка является оптимальной и доступной для любого родителя, поэтому каждый может порадовать свою дочурку, племянницу или внучку необычным и очень красивым сувениром.&lt;/p&gt;</text>
         <image_large>shop_items_catalog_image1038.jpg</image_large>
         <image_small>small_shop_items_catalog_image1038.jpg</image_small>
         <weight>0</weight>
         <active>1</active>
         <siteuser_group_id>-1</siteuser_group_id>
         <sorting>0</sorting>
         <path>kukla-lol-iz-vozdushnyx-sharov</path>
         <seo_title>Заказ красивой куклы ЛОЛ из воздушных шаров для подарка девочке</seo_title>
         <seo_description>Кукла ЛОЛ из воздушных шаров – отличный подарок для девочки. Заказать воздушные шарики в стиле куклы Lol в Москве можно в компании «Планета шаров».</seo_description>
         <seo_keywords></seo_keywords>
         <indexing>1</indexing>
         <image_small_height>220</image_small_height>
         <image_small_width>220</image_small_width>
         <image_large_height>500</image_large_height>
         <image_large_width>500</image_large_width>
         <yandex_market>1</yandex_market>
         <yandex_market_bid>0</yandex_market_bid>
         <yandex_market_cid>0</yandex_market_cid>
         <manufacturer_warranty>0</manufacturer_warranty>
         <country_of_origin></country_of_origin>
         <yandex_market_sales_notes></yandex_market_sales_notes>
         <user_id>20</user_id>
         <siteuser_id>0</siteuser_id>
         <modification_id>0</modification_id>
         <guid>2C7FD977-6EA1-A797-0787-249FE6021807</guid>
         <showed>5482</showed>
         <length>0</length>
         <width>0</width>
         <height>0</height>
         <deleted>0</deleted>
         <url>/shop/figury-iz-sharov/kukla-lol-iz-vozdushnyx-sharov/</url>
         <date>11.04.2018</date>
         <datetime>11.04.2018 22:02:32</datetime>
         <start_datetime>0000-00-00 00:00:00</start_datetime>
         <end_datetime>0000-00-00 00:00:00</end_datetime>
         <dir>/upload/shop_1/1/0/3/item_1038/</dir>
         <rest>0</rest>
         <reserved>0</reserved>
         <price>6900.00</price>
         <discount>0.00</discount>
         <tax>0.00</tax>
         <price_tax>6900.00</price_tax>
         <currency>руб.</currency>
         <end_datetime_one_day>24.08.2019 00:00:01</end_datetime_one_day>
         <end_datetime_timestamp>00045015</end_datetime_timestamp>
      </shop_item>
      
      <shop_item id="1158">
         <shortcut_id>0</shortcut_id>
         <shop_tax_id>0</shop_tax_id>
         <shop_seller_id>0</shop_seller_id>
         <shop_group_id>595</shop_group_id>
         <shop_currency_id>1</shop_currency_id>
         <shop_id>1</shop_id>
         <shop_producer_id>0</shop_producer_id>
         <shop_measure_id>0</shop_measure_id>
         <type>0</type>
         <name>Фигура LOL из шариков</name>
         <marking></marking>
         <vendorcode></vendorcode>
         <description></description>
         <text></text>
         <image_large>shop_items_catalog_image1158.jpg</image_large>
         <image_small>small_shop_items_catalog_image1158.jpg</image_small>
         <weight>0</weight>
         <active>1</active>
         <siteuser_group_id>-1</siteuser_group_id>
         <sorting>0</sorting>
         <path>figura-lol-iz-sharikov</path>
         <seo_title>Фигура куклы LOL из воздушных шариков</seo_title>
         <seo_description>Фигура куклы LOL из воздушных шариков от компании Планета шаров!</seo_description>
         <seo_keywords></seo_keywords>
         <indexing>1</indexing>
         <image_small_height>220</image_small_height>
         <image_small_width>188</image_small_width>
         <image_large_height>586</image_large_height>
         <image_large_width>500</image_large_width>
         <yandex_market>1</yandex_market>
         <yandex_market_bid>0</yandex_market_bid>
         <yandex_market_cid>0</yandex_market_cid>
         <manufacturer_warranty>0</manufacturer_warranty>
         <country_of_origin></country_of_origin>
         <yandex_market_sales_notes></yandex_market_sales_notes>
         <user_id>20</user_id>
         <siteuser_id>0</siteuser_id>
         <modification_id>0</modification_id>
         <guid>8233D21A-67FE-669C-E355-C01C3E52B732</guid>
         <showed>2051</showed>
         <length>0</length>
         <width>0</width>
         <height>0</height>
         <deleted>0</deleted>
         <url>/shop/figury-iz-sharov/figura-lol-iz-sharikov/</url>
         <date>21.09.2018</date>
         <datetime>21.09.2018 14:13:04</datetime>
         <start_datetime>0000-00-00 00:00:00</start_datetime>
         <end_datetime>0000-00-00 00:00:00</end_datetime>
         <dir>/upload/shop_1/1/1/5/item_1158/</dir>
         <rest>0</rest>
         <reserved>0</reserved>
         <price>6900.00</price>
         <discount>0.00</discount>
         <tax>0.00</tax>
         <price_tax>6900.00</price_tax>
         <currency>руб.</currency>
         <end_datetime_one_day>24.08.2019 00:00:01</end_datetime_one_day>
         <end_datetime_timestamp>00045015</end_datetime_timestamp>
      </shop_item>
      
      <shop_item id="1160">
         <shortcut_id>0</shortcut_id>
         <shop_tax_id>0</shop_tax_id>
         <shop_seller_id>0</shop_seller_id>
         <shop_group_id>651</shop_group_id>
         <shop_currency_id>1</shop_currency_id>
         <shop_id>1</shop_id>
         <shop_producer_id>0</shop_producer_id>
         <shop_measure_id>0</shop_measure_id>
         <type>0</type>
         <name>Набор шариков на 6 лет в стиле кукол ЛОЛ</name>
         <marking></marking>
         <vendorcode></vendorcode>
         <description></description>
         <text></text>
         <image_large>shop_items_catalog_image1160.jpg</image_large>
         <image_small>small_shop_items_catalog_image1160.jpg</image_small>
         <weight>0</weight>
         <active>1</active>
         <siteuser_group_id>-1</siteuser_group_id>
         <sorting>0</sorting>
         <path>nabor-sharikov-v-stile-kukol-lol</path>
         <seo_title>Набор воздушных шариков в стиле кукол ЛОЛ</seo_title>
         <seo_description>Набор воздушных шариков в стиле кукол ЛОЛ от компании Планета шаров!</seo_description>
         <seo_keywords></seo_keywords>
         <indexing>1</indexing>
         <image_small_height>220</image_small_height>
         <image_small_width>142</image_small_width>
         <image_large_height>600</image_large_height>
         <image_large_width>385</image_large_width>
         <yandex_market>1</yandex_market>
         <yandex_market_bid>0</yandex_market_bid>
         <yandex_market_cid>0</yandex_market_cid>
         <manufacturer_warranty>0</manufacturer_warranty>
         <country_of_origin></country_of_origin>
         <yandex_market_sales_notes></yandex_market_sales_notes>
         <user_id>20</user_id>
         <siteuser_id>0</siteuser_id>
         <modification_id>0</modification_id>
         <guid>3AFE9E7C-EA3B-60ED-205B-1896FF9EDF03</guid>
         <showed>1767</showed>
         <length>0</length>
         <width>0</width>
         <height>0</height>
         <deleted>0</deleted>
         <url>/shop/nabor-vozdushnyx-sharov/nabor-sharikov-v-stile-kukol-lol/</url>
         <date>21.09.2018</date>
         <datetime>21.09.2018 14:35:22</datetime>
         <start_datetime>0000-00-00 00:00:00</start_datetime>
         <end_datetime>0000-00-00 00:00:00</end_datetime>
         <dir>/upload/shop_1/1/1/6/item_1160/</dir>
         <rest>0</rest>
         <reserved>0</reserved>
         <price>10900.00</price>
         <discount>0.00</discount>
         <tax>0.00</tax>
         <price_tax>10900.00</price_tax>
         <currency>руб.</currency>
         <end_datetime_one_day>24.08.2019 00:00:01</end_datetime_one_day>
         <end_datetime_timestamp>00045015</end_datetime_timestamp>
      </shop_item>
      
      <shop_item id="1182">
         <shortcut_id>0</shortcut_id>
         <shop_tax_id>0</shop_tax_id>
         <shop_seller_id>0</shop_seller_id>
         <shop_group_id>595</shop_group_id>
         <shop_currency_id>1</shop_currency_id>
         <shop_id>1</shop_id>
         <shop_producer_id>0</shop_producer_id>
         <shop_measure_id>0</shop_measure_id>
         <type>0</type>
         <name>Куколка из шаров в голубом платье</name>
         <marking></marking>
         <vendorcode></vendorcode>
         <description>&lt;ul&gt;
            &lt;li&gt;Стоимость указана только за куколку ЛОЛ из шариков&lt;/li&gt;
            &lt;li&gt;Цифры и шарики могут быть любыми&lt;/li&gt;
         &lt;/ul&gt;</description>
         <text></text>
         <image_large>shop_items_catalog_image1182.jpg</image_large>
         <image_small>small_shop_items_catalog_image1182.jpg</image_small>
         <weight>0</weight>
         <active>1</active>
         <siteuser_group_id>-1</siteuser_group_id>
         <sorting>0</sorting>
         <path>kukolka-iz-sharov</path>
         <seo_title>Куколка из воздушных шаров</seo_title>
         <seo_description>Куколка из воздушных шаров от компании Планета шаров!</seo_description>
         <seo_keywords></seo_keywords>
         <indexing>1</indexing>
         <image_small_height>220</image_small_height>
         <image_small_width>184</image_small_width>
         <image_large_height>599</image_large_height>
         <image_large_width>500</image_large_width>
         <yandex_market>1</yandex_market>
         <yandex_market_bid>0</yandex_market_bid>
         <yandex_market_cid>0</yandex_market_cid>
         <manufacturer_warranty>0</manufacturer_warranty>
         <country_of_origin></country_of_origin>
         <yandex_market_sales_notes></yandex_market_sales_notes>
         <user_id>20</user_id>
         <siteuser_id>0</siteuser_id>
         <modification_id>0</modification_id>
         <guid>B6887942-5083-B947-D703-9C3C3B2BBB72</guid>
         <showed>1080</showed>
         <length>0</length>
         <width>0</width>
         <height>0</height>
         <deleted>0</deleted>
         <url>/shop/figury-iz-sharov/kukolka-iz-sharov/</url>
         <date>21.09.2018</date>
         <datetime>21.09.2018 21:57:38</datetime>
         <start_datetime>0000-00-00 00:00:00</start_datetime>
         <end_datetime>0000-00-00 00:00:00</end_datetime>
         <dir>/upload/shop_1/1/1/8/item_1182/</dir>
         <rest>0</rest>
         <reserved>0</reserved>
         <price>6900.00</price>
         <discount>0.00</discount>
         <tax>0.00</tax>
         <price_tax>6900.00</price_tax>
         <currency>руб.</currency>
         <end_datetime_one_day>24.08.2019 00:00:01</end_datetime_one_day>
         <end_datetime_timestamp>00045015</end_datetime_timestamp>
      </shop_item>
      
      <shop_item id="1186">
         <shortcut_id>0</shortcut_id>
         <shop_tax_id>0</shop_tax_id>
         <shop_seller_id>0</shop_seller_id>
         <shop_group_id>604</shop_group_id>
         <shop_currency_id>1</shop_currency_id>
         <shop_id>1</shop_id>
         <shop_producer_id>0</shop_producer_id>
         <shop_measure_id>0</shop_measure_id>
         <type>0</type>
         <name>Цифра из шариков в стиле куклы Лол</name>
         <marking></marking>
         <vendorcode></vendorcode>
         <description>&lt;ul&gt;
            &lt;li&gt;Цена указана за цифру из шариков с небольшой фигуркой куклы (около 80 см)&lt;/li&gt;
         &lt;/ul&gt;</description>
         <text>&lt;p&gt;Цифра из воздушных шариков в стиле кукол Лол - деталь, которая поможет украсить именины вашего ребенка. Если ваша дочка или внучка любит кукол, вы имеете возможность декорировать место проведения праздника с нашей помощью. Мы изготавливаем фигурки, применяя прочные, разноцветные шарики, стараемся подобрать композицию.&lt;/p&gt;
            &lt;p&gt;Это число изготавливается при использовании пяти видов шаров: бирюзового, белого, розового и серебряного цветов. Это - круглые шарики. Помимо них, в композиции используют пятый вид шаров - фигурные серебряные звездочки и бант для украшения. Рядом с числом, сплетенным из воздушных шаров, устанавливаем большую фигуру куклы Лол.&lt;/p&gt;
            &lt;h2&gt;Особенности фигурок&lt;/h2&gt;
            &lt;p&gt;Если вы этого захотите, мы можем изготовить цифру из воздушных шариков, используя для сплетения шары любого цвета. Изготовленная нами конструкция прослужит долго. Это потому, что мы используем изделия:&lt;/p&gt;
            &lt;ul&gt;
            &lt;li&gt;выпускаемые на территории США и Бельгии;&lt;/li&gt;
            &lt;li&gt;изготовленные из экологичного латекса;&lt;/li&gt;
            &lt;li&gt;в работе используем более 15 вариантов цветов.&lt;/li&gt;
            &lt;/ul&gt;
         &lt;p&gt;Наши изделия могут летать и не сдуваться на протяжении 3 дней, так что они будут радовать детей даже после праздника. Работаем со срочным выполнением заказов. Сами доставим вам заказанную цифру в назначенное время.&lt;/p&gt;</text>
         <image_large>shop_items_catalog_image1186.jpg</image_large>
         <image_small>small_shop_items_catalog_image1186.jpg</image_small>
         <weight>0</weight>
         <active>1</active>
         <siteuser_group_id>-1</siteuser_group_id>
         <sorting>0</sorting>
         <path>cifra-iz-sharikov-v-stile-kukly-lol</path>
         <seo_title>Закажите цифру из воздушных шариков в стиле кукол Лол у нас</seo_title>
         <seo_description>Цифра из воздушных шариков в стиле кукол Лол - отличное украшение детского праздника. Закажите её у нас, если вашему ребенку нравится кукла Лол.</seo_description>
         <seo_keywords></seo_keywords>
         <indexing>1</indexing>
         <image_small_height>220</image_small_height>
         <image_small_width>168</image_small_width>
         <image_large_height>600</image_large_height>
         <image_large_width>456</image_large_width>
         <yandex_market>1</yandex_market>
         <yandex_market_bid>0</yandex_market_bid>
         <yandex_market_cid>0</yandex_market_cid>
         <manufacturer_warranty>0</manufacturer_warranty>
         <country_of_origin></country_of_origin>
         <yandex_market_sales_notes></yandex_market_sales_notes>
         <user_id>20</user_id>
         <siteuser_id>0</siteuser_id>
         <modification_id>0</modification_id>
         <guid>D022DE31-D945-F5BE-BF32-89DB0FFA7FAF</guid>
         <showed>1878</showed>
         <length>0</length>
         <width>0</width>
         <height>0</height>
         <deleted>0</deleted>
         <url>/shop/cifry-iz-sharov/cifra-iz-sharikov-v-stile-kukly-lol/</url>
         <date>07.10.2018</date>
         <datetime>07.10.2018 21:37:39</datetime>
         <start_datetime>0000-00-00 00:00:00</start_datetime>
         <end_datetime>0000-00-00 00:00:00</end_datetime>
         <dir>/upload/shop_1/1/1/8/item_1186/</dir>
         <rest>0</rest>
         <reserved>0</reserved>
         <price>9400.00</price>
         <discount>0.00</discount>
         <tax>0.00</tax>
         <price_tax>9400.00</price_tax>
         <currency>руб.</currency>
         <end_datetime_one_day>24.08.2019 00:00:01</end_datetime_one_day>
         <end_datetime_timestamp>00045015</end_datetime_timestamp>
      </shop_item>
      
      <shop_item id="1188">
         <shortcut_id>0</shortcut_id>
         <shop_tax_id>0</shop_tax_id>
         <shop_seller_id>0</shop_seller_id>
         <shop_group_id>604</shop_group_id>
         <shop_currency_id>1</shop_currency_id>
         <shop_id>1</shop_id>
         <shop_producer_id>0</shop_producer_id>
         <shop_measure_id>0</shop_measure_id>
         <type>0</type>
         <name>Розовая цифра из шариков</name>
         <marking></marking>
         <vendorcode></vendorcode>
         <description>&lt;ul&gt;
            &lt;li&gt;Цена указана за цифру из шариков (без фигурки)&lt;/li&gt;
         &lt;/ul&gt;</description>
         <text></text>
         <image_large>shop_items_catalog_image1188.jpg</image_large>
         <image_small>small_shop_items_catalog_image1188.jpg</image_small>
         <weight>0</weight>
         <active>1</active>
         <siteuser_group_id>-1</siteuser_group_id>
         <sorting>0</sorting>
         <path>rozovaya-cifra-iz-sharikov</path>
         <seo_title>Розовая цифра 7 из воздушных шариков</seo_title>
         <seo_description>Розовая цифра 7 из воздушных шариков от компании Планета шаров!</seo_description>
         <seo_keywords></seo_keywords>
         <indexing>1</indexing>
         <image_small_height>220</image_small_height>
         <image_small_width>199</image_small_width>
         <image_large_height>555</image_large_height>
         <image_large_width>500</image_large_width>
         <yandex_market>1</yandex_market>
         <yandex_market_bid>0</yandex_market_bid>
         <yandex_market_cid>0</yandex_market_cid>
         <manufacturer_warranty>0</manufacturer_warranty>
         <country_of_origin></country_of_origin>
         <yandex_market_sales_notes></yandex_market_sales_notes>
         <user_id>20</user_id>
         <siteuser_id>0</siteuser_id>
         <modification_id>0</modification_id>
         <guid>06232CE1-3D43-F41F-31CE-7938B477C443</guid>
         <showed>956</showed>
         <length>0</length>
         <width>0</width>
         <height>0</height>
         <deleted>0</deleted>
         <url>/shop/cifry-iz-sharov/rozovaya-cifra-iz-sharikov/</url>
         <date>15.10.2018</date>
         <datetime>15.10.2018 09:13:08</datetime>
         <start_datetime>0000-00-00 00:00:00</start_datetime>
         <end_datetime>0000-00-00 00:00:00</end_datetime>
         <dir>/upload/shop_1/1/1/8/item_1188/</dir>
         <rest>0</rest>
         <reserved>0</reserved>
         <price>4300.00</price>
         <discount>0.00</discount>
         <tax>0.00</tax>
         <price_tax>4300.00</price_tax>
         <currency>руб.</currency>
         <end_datetime_one_day>24.08.2019 00:00:01</end_datetime_one_day>
         <end_datetime_timestamp>00045015</end_datetime_timestamp>
      </shop_item>
      
      <shop_item id="1193">
         <shortcut_id>0</shortcut_id>
         <shop_tax_id>0</shop_tax_id>
         <shop_seller_id>0</shop_seller_id>
         <shop_group_id>595</shop_group_id>
         <shop_currency_id>1</shop_currency_id>
         <shop_id>1</shop_id>
         <shop_producer_id>0</shop_producer_id>
         <shop_measure_id>0</shop_measure_id>
         <type>0</type>
         <name>Кукла Лол из шариков</name>
         <marking></marking>
         <vendorcode></vendorcode>
         <description></description>
         <text></text>
         <image_large>shop_items_catalog_image1193.jpg</image_large>
         <image_small>small_shop_items_catalog_image1193.jpg</image_small>
         <weight>0</weight>
         <active>1</active>
         <siteuser_group_id>-1</siteuser_group_id>
         <sorting>0</sorting>
         <path>kukla-lol-iz-sharikov</path>
         <seo_title>Фигурка из шариков кукла Лол</seo_title>
         <seo_description>Фигурка из шариков кукла Лол от компании Планета шаров!</seo_description>
         <seo_keywords></seo_keywords>
         <indexing>1</indexing>
         <image_small_height>220</image_small_height>
         <image_small_width>187</image_small_width>
         <image_large_height>591</image_large_height>
         <image_large_width>500</image_large_width>
         <yandex_market>1</yandex_market>
         <yandex_market_bid>0</yandex_market_bid>
         <yandex_market_cid>0</yandex_market_cid>
         <manufacturer_warranty>0</manufacturer_warranty>
         <country_of_origin></country_of_origin>
         <yandex_market_sales_notes></yandex_market_sales_notes>
         <user_id>20</user_id>
         <siteuser_id>0</siteuser_id>
         <modification_id>0</modification_id>
         <guid>6F17ACE2-C370-83A8-6DDE-971BB2CA821E</guid>
         <showed>1708</showed>
         <length>0</length>
         <width>0</width>
         <height>0</height>
         <deleted>0</deleted>
         <url>/shop/figury-iz-sharov/kukla-lol-iz-sharikov/</url>
         <date>19.10.2018</date>
         <datetime>19.10.2018 07:58:14</datetime>
         <start_datetime>0000-00-00 00:00:00</start_datetime>
         <end_datetime>0000-00-00 00:00:00</end_datetime>
         <dir>/upload/shop_1/1/1/9/item_1193/</dir>
         <rest>0</rest>
         <reserved>0</reserved>
         <price>9400.00</price>
         <discount>0.00</discount>
         <tax>0.00</tax>
         <price_tax>9400.00</price_tax>
         <currency>руб.</currency>
         <end_datetime_one_day>24.08.2019 00:00:01</end_datetime_one_day>
         <end_datetime_timestamp>00045015</end_datetime_timestamp>
      </shop_item>
      
      <shop_item id="1196">
         <shortcut_id>0</shortcut_id>
         <shop_tax_id>0</shop_tax_id>
         <shop_seller_id>0</shop_seller_id>
         <shop_group_id>594</shop_group_id>
         <shop_currency_id>1</shop_currency_id>
         <shop_id>1</shop_id>
         <shop_producer_id>0</shop_producer_id>
         <shop_measure_id>0</shop_measure_id>
         <type>0</type>
         <name>Воздушные шарики ЛОЛ</name>
         <marking></marking>
         <vendorcode></vendorcode>
         <description>&lt;br /&gt; -Гарантируем полём более 3-х дней&lt;br /&gt;&lt;em&gt;&lt;span style=&quot;text-decoration: underline;&quot;&gt;&lt;strong&gt;Летом шарики летают от 3 до 10 дней, зимой от 10 до 30 дней&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;/em&gt;-Надуваем большие шары диаметром более 34 см&lt;br /&gt;-Привозим уже надутые шары с обязательным запасом&lt;img src=&quot;https://planetasharov.ru/admin/wysiwyg/plugins/emotions/img/smiley-wink.gif&quot; alt=&quot;Подмигиваю&quot; title=&quot;Подмигиваю&quot; border=&quot;0&quot; /&gt;&lt;br /&gt;-Используем шары производства Бельгии, Америки и Италии&lt;br /&gt;&lt;em&gt;&lt;strong&gt;&lt;span style=&quot;text-decoration: underline;&quot;&gt;Они сделаны из натурального латекса и не наносят вреда окружающей среде&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;/em&gt;</description>
         <text></text>
         <image_large>shop_items_catalog_image1196.jpg</image_large>
         <image_small>small_shop_items_catalog_image1196.jpg</image_small>
         <weight>0</weight>
         <active>1</active>
         <siteuser_group_id>-1</siteuser_group_id>
         <sorting>0</sorting>
         <path>shariki-lol</path>
         <seo_title>Воздушные шарики в стилистике ЛОЛ по доступным ценам</seo_title>
         <seo_description>Воздушные шарики в стилистике ЛОЛ от компании Планета шаров купить недорого в Москве</seo_description>
         <seo_keywords></seo_keywords>
         <indexing>1</indexing>
         <image_small_height>220</image_small_height>
         <image_small_width>220</image_small_width>
         <image_large_height>500</image_large_height>
         <image_large_width>500</image_large_width>
         <yandex_market>1</yandex_market>
         <yandex_market_bid>0</yandex_market_bid>
         <yandex_market_cid>0</yandex_market_cid>
         <manufacturer_warranty>0</manufacturer_warranty>
         <country_of_origin></country_of_origin>
         <yandex_market_sales_notes></yandex_market_sales_notes>
         <user_id>20</user_id>
         <siteuser_id>0</siteuser_id>
         <modification_id>0</modification_id>
         <guid>0416BCD8-D6C7-5CCF-147D-9858F0556578</guid>
         <showed>2547</showed>
         <length>0</length>
         <width>0</width>
         <height>0</height>
         <deleted>0</deleted>
         <url>/shop/shary-pod-potolok/shariki-lol/</url>
         <date>21.10.2018</date>
         <datetime>21.10.2018 22:26:03</datetime>
         <start_datetime>0000-00-00 00:00:00</start_datetime>
         <end_datetime>0000-00-00 00:00:00</end_datetime>
         <dir>/upload/shop_1/1/1/9/item_1196/</dir>
         <rest>0</rest>
         <reserved>0</reserved>
         <price>100.00</price>
         <discount>0.00</discount>
         <tax>0.00</tax>
         <price_tax>100.00</price_tax>
         <currency>руб.</currency>
         <end_datetime_one_day>24.08.2019 00:00:01</end_datetime_one_day>
         <end_datetime_timestamp>00045015</end_datetime_timestamp>
      </shop_item>
      
      <shop_item id="1259">
         <shortcut_id>0</shortcut_id>
         <shop_tax_id>0</shop_tax_id>
         <shop_seller_id>0</shop_seller_id>
         <shop_group_id>598</shop_group_id>
         <shop_currency_id>1</shop_currency_id>
         <shop_id>1</shop_id>
         <shop_producer_id>0</shop_producer_id>
         <shop_measure_id>0</shop_measure_id>
         <type>0</type>
         <name>Букет из шаров Лол</name>
         <marking></marking>
         <vendorcode></vendorcode>
         <description></description>
         <text>&lt;p&gt;Букет из воздушных шаров в тематике кукол Лол вы можете заказать в нашей компании. Эта композиция украсит любое мероприятие и сделает его ярче и красивее. Шарики любят не только дети, но и взрослые, они радуются не меньше, потому что в каждом человеке продолжает жить ребенок.&lt;/p&gt;
            &lt;p&gt;Праздник должен проходить пышно, быть ярким и запоминаться, для этого нужно постараться оформить его как можно эффектнее. Самым лучшим вариантом будет выбор шаров, потому что они имеют неоспоримые преимущества:&lt;/p&gt;
            &lt;ul&gt;
            &lt;li&gt;яркие, красочные, веселые, способны поднять настроение всем;&lt;/li&gt;
            &lt;li&gt;на фоне такой композиции можно сделать эффектные фотографии;&lt;/li&gt;
            &lt;li&gt;дети могут играть с героем, он мягкий и безопасный;&lt;/li&gt;
            &lt;li&gt;шары не портятся и долго сохраняют форму в отличие от цветов;&lt;/li&gt;
            &lt;li&gt;после праздника можно сохранить композицию на память;&lt;/li&gt;
            &lt;li&gt;можно использовать шарики в разных конкурсах.&lt;/li&gt;
            &lt;/ul&gt;
            &lt;h2&gt;Как заказать куклу Лол из шариков&lt;/h2&gt;
            &lt;p&gt;Шарики с надписью &quot;my little doll&quot;, оформленные в стилистике кукол Лол, подарят детям незабываемые впечатления, но и взрослые не уйдут без них. Вы попадете в мир сказок и фантазий &amp;ndash; именно здесь и можно отдохнуть о суеты повседневной жизни. Поэтому мероприятие должно унести всех далеко в сказочную страну и дать возможность забыться хотя бы на несколько часов.&lt;/p&gt;
            &lt;p&gt;Чтобы получить такую композицию, звоните в нашу компанию, и мы оформим ваш праздник самым лучшим образом. На сайте вы можете выбрать и других знакомых героев, которых наши мастера могут выполнить для вашего мероприятия. Можно сделать индивидуальный заказ и попросить выполнить что-то новое и оригинальное &amp;ndash; мы сможем все!&lt;/p&gt;
            &lt;p&gt;Хороший праздник &amp;ndash; это приятная атмосфера, теплая и добрая, где все любят друг друга и настроены на позитив. Именно это способны подарить воздушные красочные шарики, которыми мы украсим весь зал.&lt;/p&gt;
         &lt;p&gt;Сделайте свой праздник роскошным и запоминающимся, ведь это так легко!&lt;/p&gt;</text>
         <image_large>shop_items_catalog_image1259.jpg</image_large>
         <image_small>small_shop_items_catalog_image1259.jpg</image_small>
         <weight>0</weight>
         <active>1</active>
         <siteuser_group_id>-1</siteuser_group_id>
         <sorting>0</sorting>
         <path>buket-iz-sharov-lol</path>
         <seo_title>Заказывайте букет из воздушных шаров в тематике кукол Лол у нас</seo_title>
         <seo_description>Заказывайте у нас букеты из воздушных шаров в тематике кукол Лол. Пусть ваш праздник станет ярким и незабываемым, а гости останутся довольны.</seo_description>
         <seo_keywords></seo_keywords>
         <indexing>1</indexing>
         <image_small_height>220</image_small_height>
         <image_small_width>185</image_small_width>
         <image_large_height>596</image_large_height>
         <image_large_width>500</image_large_width>
         <yandex_market>1</yandex_market>
         <yandex_market_bid>0</yandex_market_bid>
         <yandex_market_cid>0</yandex_market_cid>
         <manufacturer_warranty>0</manufacturer_warranty>
         <country_of_origin></country_of_origin>
         <yandex_market_sales_notes></yandex_market_sales_notes>
         <user_id>20</user_id>
         <siteuser_id>0</siteuser_id>
         <modification_id>0</modification_id>
         <guid>E997C2EA-3B66-04B5-0246-50A09DAABCC0</guid>
         <showed>379</showed>
         <length>0</length>
         <width>0</width>
         <height>0</height>
         <deleted>0</deleted>
         <url>/shop/fontany-iz-gelievyx-sharov/buket-iz-sharov-lol/</url>
         <date>08.03.2019</date>
         <datetime>08.03.2019 22:33:27</datetime>
         <start_datetime>0000-00-00 00:00:00</start_datetime>
         <end_datetime>0000-00-00 00:00:00</end_datetime>
         <dir>/upload/shop_1/1/2/5/item_1259/</dir>
         <rest>0</rest>
         <reserved>0</reserved>
         <price>2750.00</price>
         <discount>0.00</discount>
         <tax>0.00</tax>
         <price_tax>2750.00</price_tax>
         <currency>руб.</currency>
         <end_datetime_one_day>24.08.2019 00:00:01</end_datetime_one_day>
         <end_datetime_timestamp>00045015</end_datetime_timestamp>
      </shop_item>
      
      <shop_item id="1352">
         <shortcut_id>0</shortcut_id>
         <shop_tax_id>0</shop_tax_id>
         <shop_seller_id>0</shop_seller_id>
         <shop_group_id>595</shop_group_id>
         <shop_currency_id>1</shop_currency_id>
         <shop_id>1</shop_id>
         <shop_producer_id>0</shop_producer_id>
         <shop_measure_id>0</shop_measure_id>
         <type>0</type>
         <name>Кукла ЛОЛ Pranksta</name>
         <marking></marking>
         <vendorcode></vendorcode>
         <description>&lt;ul&gt;
            &lt;li&gt;Цена указана за фигуру из шариков (без цифры)&lt;/li&gt;
         &lt;/ul&gt;</description>
         <text></text>
         <image_large>shop_items_catalog_image1352.jpg</image_large>
         <image_small>small_shop_items_catalog_image1352.jpg</image_small>
         <weight>0</weight>
         <active>1</active>
         <siteuser_group_id>-1</siteuser_group_id>
         <sorting>0</sorting>
         <path>kukla-lol-pranksta</path>
         <seo_title>Кукла ЛОЛ Pranksta из шаров</seo_title>
         <seo_description>Кукла ЛОЛ Pranksta из шаров от компании Планета шаров в Москве и Московской области</seo_description>
         <seo_keywords></seo_keywords>
         <indexing>1</indexing>
         <image_small_height>220</image_small_height>
         <image_small_width>220</image_small_width>
         <image_large_height>500</image_large_height>
         <image_large_width>500</image_large_width>
         <yandex_market>1</yandex_market>
         <yandex_market_bid>0</yandex_market_bid>
         <yandex_market_cid>0</yandex_market_cid>
         <manufacturer_warranty>0</manufacturer_warranty>
         <country_of_origin></country_of_origin>
         <yandex_market_sales_notes></yandex_market_sales_notes>
         <user_id>32</user_id>
         <siteuser_id>0</siteuser_id>
         <modification_id>0</modification_id>
         <guid>1DB26A72-9784-0533-98F9-286A45257D3A</guid>
         <showed>46</showed>
         <length>0</length>
         <width>0</width>
         <height>0</height>
         <deleted>0</deleted>
         <url>/shop/figury-iz-sharov/kukla-lol-pranksta/</url>
         <date>18.07.2019</date>
         <datetime>18.07.2019 07:50:07</datetime>
         <start_datetime>0000-00-00 00:00:00</start_datetime>
         <end_datetime>0000-00-00 00:00:00</end_datetime>
         <dir>/upload/shop_1/1/3/5/item_1352/</dir>
         <rest>0</rest>
         <reserved>0</reserved>
         <price>6900.00</price>
         <discount>0.00</discount>
         <tax>0.00</tax>
         <price_tax>6900.00</price_tax>
         <currency>руб.</currency>
         <end_datetime_one_day>24.08.2019 00:00:01</end_datetime_one_day>
         <end_datetime_timestamp>00045015</end_datetime_timestamp>
      </shop_item>
      
      <shop_item id="1353">
         <shortcut_id>0</shortcut_id>
         <shop_tax_id>0</shop_tax_id>
         <shop_seller_id>0</shop_seller_id>
         <shop_group_id>595</shop_group_id>
         <shop_currency_id>1</shop_currency_id>
         <shop_id>1</shop_id>
         <shop_producer_id>0</shop_producer_id>
         <shop_measure_id>0</shop_measure_id>
         <type>0</type>
         <name>Куколка ЛОЛ в розовом платье</name>
         <marking></marking>
         <vendorcode></vendorcode>
         <description>&lt;ul&gt;
            &lt;li&gt;Цена указана только за фигуру из шариков (без фонтана и гирлянды)&lt;/li&gt;
         &lt;/ul&gt;</description>
         <text></text>
         <image_large>shop_items_catalog_image1353.jpg</image_large>
         <image_small>small_shop_items_catalog_image1353.jpg</image_small>
         <weight>0</weight>
         <active>1</active>
         <siteuser_group_id>-1</siteuser_group_id>
         <sorting>0</sorting>
         <path>kukolka-lol-v-rozovom-plate</path>
         <seo_title>Куколка ЛОЛ в розовом платье из шаров</seo_title>
         <seo_description>Куколка ЛОЛ в розовом платье из шаров от компании Планета шаров в Москве и Московской области</seo_description>
         <seo_keywords></seo_keywords>
         <indexing>1</indexing>
         <image_small_height>220</image_small_height>
         <image_small_width>202</image_small_width>
         <image_large_height>545</image_large_height>
         <image_large_width>500</image_large_width>
         <yandex_market>1</yandex_market>
         <yandex_market_bid>0</yandex_market_bid>
         <yandex_market_cid>0</yandex_market_cid>
         <manufacturer_warranty>0</manufacturer_warranty>
         <country_of_origin></country_of_origin>
         <yandex_market_sales_notes></yandex_market_sales_notes>
         <user_id>32</user_id>
         <siteuser_id>0</siteuser_id>
         <modification_id>0</modification_id>
         <guid>7C188C7A-8D39-DA55-E4D6-711540FCB155</guid>
         <showed>47</showed>
         <length>0</length>
         <width>0</width>
         <height>0</height>
         <deleted>0</deleted>
         <url>/shop/figury-iz-sharov/kukolka-lol-v-rozovom-plate/</url>
         <date>18.07.2019</date>
         <datetime>18.07.2019 07:59:00</datetime>
         <start_datetime>0000-00-00 00:00:00</start_datetime>
         <end_datetime>0000-00-00 00:00:00</end_datetime>
         <dir>/upload/shop_1/1/3/5/item_1353/</dir>
         <rest>0</rest>
         <reserved>0</reserved>
         <price>6900.00</price>
         <discount>0.00</discount>
         <tax>0.00</tax>
         <price_tax>6900.00</price_tax>
         <currency>руб.</currency>
         <end_datetime_one_day>24.08.2019 00:00:01</end_datetime_one_day>
         <end_datetime_timestamp>00045015</end_datetime_timestamp>
      </shop_item>
      
      <shop_item id="1373">
         <shortcut_id>0</shortcut_id>
         <shop_tax_id>0</shop_tax_id>
         <shop_seller_id>0</shop_seller_id>
         <shop_group_id>595</shop_group_id>
         <shop_currency_id>1</shop_currency_id>
         <shop_id>1</shop_id>
         <shop_producer_id>0</shop_producer_id>
         <shop_measure_id>0</shop_measure_id>
         <type>0</type>
         <name>Кукла ЛОЛ Ice Sk8er</name>
         <marking></marking>
         <vendorcode></vendorcode>
         <description>&lt;br /&gt;
            &lt;ul&gt;
            &lt;li&gt;Кукла ЛоЛ из шаров&lt;/li&gt;
            &lt;li&gt;50шт. Стандартных шариков с рисунком под потолок&lt;/li&gt;
            &lt;li&gt;Два фонтана в каждом:&lt;/li&gt;
            &lt;li&gt;15шт. стандартных шаров с рисунком&lt;/li&gt;
            &lt;li&gt;5шт. Фольгированных шариков&lt;/li&gt;
            &lt;li&gt;3шт. Шары с конфетти&lt;/li&gt;
         &lt;/ul&gt;</description>
         <text></text>
         <image_large>shop_items_catalog_image1373.jpg</image_large>
         <image_small>small_shop_items_catalog_image1373.jpg</image_small>
         <weight>0</weight>
         <active>1</active>
         <siteuser_group_id>-1</siteuser_group_id>
         <sorting>0</sorting>
         <path>kukla-lol-ice-sk8er</path>
         <seo_title>Кукла ЛОЛ Ice Sk8er из шаров</seo_title>
         <seo_description>Кукла ЛОЛ Ice Sk8er из шаров от компании Планета шаров в Москве и Московской области</seo_description>
         <seo_keywords></seo_keywords>
         <indexing>1</indexing>
         <image_small_height>220</image_small_height>
         <image_small_width>177</image_small_width>
         <image_large_height>600</image_large_height>
         <image_large_width>480</image_large_width>
         <yandex_market>1</yandex_market>
         <yandex_market_bid>0</yandex_market_bid>
         <yandex_market_cid>0</yandex_market_cid>
         <manufacturer_warranty>0</manufacturer_warranty>
         <country_of_origin></country_of_origin>
         <yandex_market_sales_notes></yandex_market_sales_notes>
         <user_id>32</user_id>
         <siteuser_id>0</siteuser_id>
         <modification_id>0</modification_id>
         <guid>1229FD65-0601-E31F-C5B1-882CED7D2426</guid>
         <showed>76</showed>
         <length>0</length>
         <width>0</width>
         <height>0</height>
         <deleted>0</deleted>
         <url>/shop/figury-iz-sharov/kukla-lol-ice-sk8er/</url>
         <date>19.07.2019</date>
         <datetime>19.07.2019 08:05:58</datetime>
         <start_datetime>0000-00-00 00:00:00</start_datetime>
         <end_datetime>0000-00-00 00:00:00</end_datetime>
         <dir>/upload/shop_1/1/3/7/item_1373/</dir>
         <rest>0</rest>
         <reserved>0</reserved>
         <price>18140.00</price>
         <discount>0.00</discount>
         <tax>0.00</tax>
         <price_tax>18140.00</price_tax>
         <currency>руб.</currency>
         <end_datetime_one_day>24.08.2019 00:00:01</end_datetime_one_day>
         <end_datetime_timestamp>00045015</end_datetime_timestamp>
      </shop_item>
      
      <shop_item id="1374">
         <shortcut_id>0</shortcut_id>
         <shop_tax_id>0</shop_tax_id>
         <shop_seller_id>0</shop_seller_id>
         <shop_group_id>595</shop_group_id>
         <shop_currency_id>1</shop_currency_id>
         <shop_id>1</shop_id>
         <shop_producer_id>0</shop_producer_id>
         <shop_measure_id>0</shop_measure_id>
         <type>0</type>
         <name>Кукла ЛОЛ Ice Sk8er с цифрой</name>
         <marking></marking>
         <vendorcode></vendorcode>
         <description>&lt;br /&gt;
            &lt;ul&gt;
            &lt;li&gt;Кукла ЛоЛ из шаров&lt;/li&gt;
            &lt;li&gt;Цифра из шаров&lt;/li&gt;
         &lt;/ul&gt;</description>
         <text></text>
         <image_large>shop_items_catalog_image1374.jpg</image_large>
         <image_small>small_shop_items_catalog_image1374.jpg</image_small>
         <weight>0</weight>
         <active>1</active>
         <siteuser_group_id>-1</siteuser_group_id>
         <sorting>0</sorting>
         <path>kukla-lol-ice-sk8er-s-cifroj</path>
         <seo_title>Кукла ЛОЛ Ice Sk8er с цифрой из шариков</seo_title>
         <seo_description>Кукла ЛОЛ Ice Sk8er с цифрой из шариков от компании Планета шаров в Москве и Московской области</seo_description>
         <seo_keywords></seo_keywords>
         <indexing>1</indexing>
         <image_small_height>220</image_small_height>
         <image_small_width>172</image_small_width>
         <image_large_height>600</image_large_height>
         <image_large_width>469</image_large_width>
         <yandex_market>1</yandex_market>
         <yandex_market_bid>0</yandex_market_bid>
         <yandex_market_cid>0</yandex_market_cid>
         <manufacturer_warranty>0</manufacturer_warranty>
         <country_of_origin></country_of_origin>
         <yandex_market_sales_notes></yandex_market_sales_notes>
         <user_id>32</user_id>
         <siteuser_id>0</siteuser_id>
         <modification_id>0</modification_id>
         <guid>C737DD84-59ED-8F65-6C50-5322ADBEB119</guid>
         <showed>42</showed>
         <length>0</length>
         <width>0</width>
         <height>0</height>
         <deleted>0</deleted>
         <url>/shop/figury-iz-sharov/kukla-lol-ice-sk8er-s-cifroj/</url>
         <date>19.07.2019</date>
         <datetime>19.07.2019 08:19:09</datetime>
         <start_datetime>0000-00-00 00:00:00</start_datetime>
         <end_datetime>0000-00-00 00:00:00</end_datetime>
         <dir>/upload/shop_1/1/3/7/item_1374/</dir>
         <rest>0</rest>
         <reserved>0</reserved>
         <price>10800.00</price>
         <discount>0.00</discount>
         <tax>0.00</tax>
         <price_tax>10800.00</price_tax>
         <currency>руб.</currency>
         <end_datetime_one_day>24.08.2019 00:00:01</end_datetime_one_day>
         <end_datetime_timestamp>00045015</end_datetime_timestamp>
      </shop_item>
      
      <shop_item id="1375">
         <shortcut_id>0</shortcut_id>
         <shop_tax_id>0</shop_tax_id>
         <shop_seller_id>0</shop_seller_id>
         <shop_group_id>595</shop_group_id>
         <shop_currency_id>1</shop_currency_id>
         <shop_id>1</shop_id>
         <shop_producer_id>0</shop_producer_id>
         <shop_measure_id>0</shop_measure_id>
         <type>0</type>
         <name>Куколка ЛОЛ с бантиком</name>
         <marking></marking>
         <vendorcode></vendorcode>
         <description>&lt;br /&gt;
            &lt;ul&gt;
            &lt;li&gt;Цена указана только за Куклу ЛОЛ&lt;/li&gt;
         *Гелиевые шары просчитываются отдельно&lt;/ul&gt;</description>
         <text></text>
         <image_large>shop_items_catalog_image1375.jpg</image_large>
         <image_small>small_shop_items_catalog_image1375.jpg</image_small>
         <weight>0</weight>
         <active>1</active>
         <siteuser_group_id>-1</siteuser_group_id>
         <sorting>0</sorting>
         <path>kukolka-lol-s-bantikom</path>
         <seo_title>Куколка ЛОЛ с бантиком из шариков</seo_title>
         <seo_description>Куколка ЛОЛ с бантиком из шариков от компании Планета шаров в Москве и Московской области</seo_description>
         <seo_keywords></seo_keywords>
         <indexing>1</indexing>
         <image_small_height>220</image_small_height>
         <image_small_width>197</image_small_width>
         <image_large_height>560</image_large_height>
         <image_large_width>500</image_large_width>
         <yandex_market>1</yandex_market>
         <yandex_market_bid>0</yandex_market_bid>
         <yandex_market_cid>0</yandex_market_cid>
         <manufacturer_warranty>0</manufacturer_warranty>
         <country_of_origin></country_of_origin>
         <yandex_market_sales_notes></yandex_market_sales_notes>
         <user_id>32</user_id>
         <siteuser_id>0</siteuser_id>
         <modification_id>0</modification_id>
         <guid>13A0739C-DC58-03EF-0927-E6861878C892</guid>
         <showed>49</showed>
         <length>0</length>
         <width>0</width>
         <height>0</height>
         <deleted>0</deleted>
         <url>/shop/figury-iz-sharov/kukolka-lol-s-bantikom/</url>
         <date>19.07.2019</date>
         <datetime>19.07.2019 08:15:32</datetime>
         <start_datetime>0000-00-00 00:00:00</start_datetime>
         <end_datetime>0000-00-00 00:00:00</end_datetime>
         <dir>/upload/shop_1/1/3/7/item_1375/</dir>
         <rest>0</rest>
         <reserved>0</reserved>
         <price>6900.00</price>
         <discount>0.00</discount>
         <tax>0.00</tax>
         <price_tax>6900.00</price_tax>
         <currency>руб.</currency>
         <end_datetime_one_day>24.08.2019 00:00:01</end_datetime_one_day>
         <end_datetime_timestamp>00045015</end_datetime_timestamp>
      </shop_item>
      
      <shop_item id="1413">
         <shortcut_id>0</shortcut_id>
         <shop_tax_id>0</shop_tax_id>
         <shop_seller_id>0</shop_seller_id>
         <shop_group_id>661</shop_group_id>
         <shop_currency_id>1</shop_currency_id>
         <shop_id>1</shop_id>
         <shop_producer_id>0</shop_producer_id>
         <shop_measure_id>0</shop_measure_id>
         <type>0</type>
         <name>Буквы LOL</name>
         <marking></marking>
         <vendorcode></vendorcode>
         <description></description>
         <text></text>
         <image_large>shop_items_catalog_image1413.jpg</image_large>
         <image_small>small_shop_items_catalog_image1413.jpg</image_small>
         <weight>0</weight>
         <active>1</active>
         <siteuser_group_id>-1</siteuser_group_id>
         <sorting>0</sorting>
         <path>lol-bukvy</path>
         <seo_title>LOL буквы из воздушных шаров</seo_title>
         <seo_description>LOL буквы из воздушных шаров от компании Планета шаров!</seo_description>
         <seo_keywords></seo_keywords>
         <indexing>1</indexing>
         <image_small_height>220</image_small_height>
         <image_small_width>222</image_small_width>
         <image_large_height>496</image_large_height>
         <image_large_width>500</image_large_width>
         <yandex_market>1</yandex_market>
         <yandex_market_bid>0</yandex_market_bid>
         <yandex_market_cid>0</yandex_market_cid>
         <manufacturer_warranty>0</manufacturer_warranty>
         <country_of_origin></country_of_origin>
         <yandex_market_sales_notes></yandex_market_sales_notes>
         <user_id>30</user_id>
         <siteuser_id>0</siteuser_id>
         <modification_id>0</modification_id>
         <guid>4830EF15-B2DF-11C9-EEAE-6A93F734D3AF</guid>
         <showed>31</showed>
         <length>0</length>
         <width>0</width>
         <height>0</height>
         <deleted>0</deleted>
         <url>/shop/vozdushnye-shary-bukvy/lol-bukvy/</url>
         <date>20.07.2019</date>
         <datetime>20.07.2019 09:13:17</datetime>
         <start_datetime>0000-00-00 00:00:00</start_datetime>
         <end_datetime>0000-00-00 00:00:00</end_datetime>
         <dir>/upload/shop_1/1/4/1/item_1413/</dir>
         <rest>0</rest>
         <reserved>0</reserved>
         <price>2850.00</price>
         <discount>0.00</discount>
         <tax>0.00</tax>
         <price_tax>2850.00</price_tax>
         <currency>руб.</currency>
         <end_datetime_one_day>24.08.2019 00:00:01</end_datetime_one_day>
         <end_datetime_timestamp>00045015</end_datetime_timestamp>
      </shop_item>
      
      <shop_item id="9455">
         <shortcut_id>0</shortcut_id>
         <shop_tax_id>0</shop_tax_id>
         <shop_seller_id>0</shop_seller_id>
         <shop_group_id>595</shop_group_id>
         <shop_currency_id>1</shop_currency_id>
         <shop_id>1</shop_id>
         <shop_producer_id>0</shop_producer_id>
         <shop_measure_id>0</shop_measure_id>
         <type>0</type>
         <name>Glitter Queen</name>
         <marking></marking>
         <vendorcode></vendorcode>
         <description></description>
         <text></text>
         <image_large>shop_items_catalog_image9455.jpg</image_large>
         <image_small>small_shop_items_catalog_image9455.jpg</image_small>
         <weight>0</weight>
         <active>1</active>
         <siteuser_group_id>-1</siteuser_group_id>
         <sorting>0</sorting>
         <path>glitter-queen</path>
         <seo_title>Glitter Queen из шаров</seo_title>
         <seo_description>Glitter Queen из шаров от компании Планета шаров в Москве и Московской области</seo_description>
         <seo_keywords></seo_keywords>
         <indexing>1</indexing>
         <image_small_height>220</image_small_height>
         <image_small_width>220</image_small_width>
         <image_large_height>500</image_large_height>
         <image_large_width>500</image_large_width>
         <yandex_market>1</yandex_market>
         <yandex_market_bid>0</yandex_market_bid>
         <yandex_market_cid>0</yandex_market_cid>
         <manufacturer_warranty>0</manufacturer_warranty>
         <country_of_origin></country_of_origin>
         <yandex_market_sales_notes></yandex_market_sales_notes>
         <user_id>32</user_id>
         <siteuser_id>0</siteuser_id>
         <modification_id>0</modification_id>
         <guid>AF7B4D21-80AD-C60B-A5E1-D5BA4E1CB66D</guid>
         <showed>31</showed>
         <length>0</length>
         <width>0</width>
         <height>0</height>
         <deleted>0</deleted>
         <url>/shop/figury-iz-sharov/glitter-queen/</url>
         <date>08.08.2019</date>
         <datetime>08.08.2019 10:35:37</datetime>
         <start_datetime>0000-00-00 00:00:00</start_datetime>
         <end_datetime>0000-00-00 00:00:00</end_datetime>
         <dir>/upload/shop_1/9/4/5/item_9455/</dir>
         <rest>0</rest>
         <reserved>0</reserved>
         <price>850.00</price>
         <discount>0.00</discount>
         <tax>0.00</tax>
         <price_tax>850.00</price_tax>
         <currency>руб.</currency>
         <end_datetime_one_day>24.08.2019 00:00:01</end_datetime_one_day>
         <end_datetime_timestamp>00045015</end_datetime_timestamp>
      </shop_item>
      
      <shop_item id="9456">
         <shortcut_id>0</shortcut_id>
         <shop_tax_id>0</shop_tax_id>
         <shop_seller_id>0</shop_seller_id>
         <shop_group_id>598</shop_group_id>
         <shop_currency_id>1</shop_currency_id>
         <shop_id>1</shop_id>
         <shop_producer_id>0</shop_producer_id>
         <shop_measure_id>0</shop_measure_id>
         <type>0</type>
         <name>Кукла Лол Glitter Queen</name>
         <marking></marking>
         <vendorcode></vendorcode>
         <description>&lt;br /&gt;
            &lt;ul&gt;
            &lt;li&gt;В состав букета входит 8шт. стандартных шаров с рисунком + 1шт. фольгированный шар + 1 шт. фольгированное сердце , а так же грузик и сборка&lt;/li&gt;
         &lt;/ul&gt;</description>
         <text></text>
         <image_large>shop_items_catalog_image9456.jpg</image_large>
         <image_small>small_shop_items_catalog_image9456.jpg</image_small>
         <weight>0</weight>
         <active>1</active>
         <siteuser_group_id>-1</siteuser_group_id>
         <sorting>0</sorting>
         <path>kukla-lol-glitter-queen</path>
         <seo_title>Кукла Лол Glitter Queen из шаров</seo_title>
         <seo_description>Кукла Лол Glitter Queen из шаров от компании Планета шаров в Москве и Московской области</seo_description>
         <seo_keywords></seo_keywords>
         <indexing>1</indexing>
         <image_small_height>220</image_small_height>
         <image_small_width>187</image_small_width>
         <image_large_height>590</image_large_height>
         <image_large_width>500</image_large_width>
         <yandex_market>1</yandex_market>
         <yandex_market_bid>0</yandex_market_bid>
         <yandex_market_cid>0</yandex_market_cid>
         <manufacturer_warranty>0</manufacturer_warranty>
         <country_of_origin></country_of_origin>
         <yandex_market_sales_notes></yandex_market_sales_notes>
         <user_id>32</user_id>
         <siteuser_id>0</siteuser_id>
         <modification_id>0</modification_id>
         <guid>B86395D2-D45A-4D7A-EC7A-18E801549DB2</guid>
         <showed>45</showed>
         <length>0</length>
         <width>0</width>
         <height>0</height>
         <deleted>0</deleted>
         <url>/shop/fontany-iz-gelievyx-sharov/kukla-lol-glitter-queen/</url>
         <date>08.08.2019</date>
         <datetime>08.08.2019 10:37:44</datetime>
         <start_datetime>0000-00-00 00:00:00</start_datetime>
         <end_datetime>0000-00-00 00:00:00</end_datetime>
         <dir>/upload/shop_1/9/4/5/item_9456/</dir>
         <rest>0</rest>
         <reserved>0</reserved>
         <price>2110.00</price>
         <discount>0.00</discount>
         <tax>0.00</tax>
         <price_tax>2110.00</price_tax>
         <currency>руб.</currency>
         <end_datetime_one_day>24.08.2019 00:00:01</end_datetime_one_day>
         <end_datetime_timestamp>00045015</end_datetime_timestamp>
      </shop_item>
      
      <shop_item id="9457">
         <shortcut_id>0</shortcut_id>
         <shop_tax_id>0</shop_tax_id>
         <shop_seller_id>0</shop_seller_id>
         <shop_group_id>598</shop_group_id>
         <shop_currency_id>1</shop_currency_id>
         <shop_id>1</shop_id>
         <shop_producer_id>0</shop_producer_id>
         <shop_measure_id>0</shop_measure_id>
         <type>0</type>
         <name>Кукла Лол Queen Bee</name>
         <marking></marking>
         <vendorcode></vendorcode>
         <description>&lt;br /&gt;
            &lt;ul&gt;
            &lt;li&gt;В состав букета входит 8шт. стандартных шаров с рисунком + 1шт. фольгированный шар + 2 шт. фольгированные сердца , а так же грузик и сборка&lt;/li&gt;
         &lt;/ul&gt;</description>
         <text></text>
         <image_large>shop_items_catalog_image9457.jpg</image_large>
         <image_small>small_shop_items_catalog_image9457.jpg</image_small>
         <weight>0</weight>
         <active>1</active>
         <siteuser_group_id>-1</siteuser_group_id>
         <sorting>0</sorting>
         <path>kukla-lol-queen-bee</path>
         <seo_title>Кукла Лол Queen Bee из шаров</seo_title>
         <seo_description>Кукла Лол Queen Bee из шаров от компании Планета шаров в Москве и Московской области</seo_description>
         <seo_keywords></seo_keywords>
         <indexing>1</indexing>
         <image_small_height>220</image_small_height>
         <image_small_width>197</image_small_width>
         <image_large_height>560</image_large_height>
         <image_large_width>500</image_large_width>
         <yandex_market>1</yandex_market>
         <yandex_market_bid>0</yandex_market_bid>
         <yandex_market_cid>0</yandex_market_cid>
         <manufacturer_warranty>0</manufacturer_warranty>
         <country_of_origin></country_of_origin>
         <yandex_market_sales_notes></yandex_market_sales_notes>
         <user_id>32</user_id>
         <siteuser_id>0</siteuser_id>
         <modification_id>0</modification_id>
         <guid>761168C1-3E83-9FFD-6E60-A63CD7F81663</guid>
         <showed>26</showed>
         <length>0</length>
         <width>0</width>
         <height>0</height>
         <deleted>0</deleted>
         <url>/shop/fontany-iz-gelievyx-sharov/kukla-lol-queen-bee/</url>
         <date>08.08.2019</date>
         <datetime>08.08.2019 10:39:38</datetime>
         <start_datetime>0000-00-00 00:00:00</start_datetime>
         <end_datetime>0000-00-00 00:00:00</end_datetime>
         <dir>/upload/shop_1/9/4/5/item_9457/</dir>
         <rest>0</rest>
         <reserved>0</reserved>
         <price>2440.00</price>
         <discount>0.00</discount>
         <tax>0.00</tax>
         <price_tax>2440.00</price_tax>
         <currency>руб.</currency>
         <end_datetime_one_day>24.08.2019 00:00:01</end_datetime_one_day>
         <end_datetime_timestamp>00045015</end_datetime_timestamp>
      </shop_item>
      
      <shop_item id="11418">
         <shortcut_id>0</shortcut_id>
         <shop_tax_id>0</shop_tax_id>
         <shop_seller_id>0</shop_seller_id>
         <shop_group_id>785</shop_group_id>
         <shop_currency_id>1</shop_currency_id>
         <shop_id>1</shop_id>
         <shop_producer_id>0</shop_producer_id>
         <shop_measure_id>0</shop_measure_id>
         <type>0</type>
         <name>Набор полумасок куклы ЛОЛ 6шт</name>
         <marking>1501-4838</marking>
         <vendorcode></vendorcode>
         <description></description>
         <text></text>
         <image_large>1501-4838_m1.jpg</image_large>
         <image_small>small_1501-4838_m1.jpg</image_small>
         <weight>0</weight>
         <active>1</active>
         <siteuser_group_id>-1</siteuser_group_id>
         <sorting>0</sorting>
         <path>nabor-polumasok-kukly-lol-6sht</path>
         <seo_title>Купить Набор полумасок куклы ЛОЛ 6шт в Москве</seo_title>
         <seo_description>Купить Набор полумасок куклы ЛОЛ 6шт в Москве от компании Планета шаров!</seo_description>
         <seo_keywords></seo_keywords>
         <indexing>1</indexing>
         <image_small_height>180</image_small_height>
         <image_small_width>234</image_small_width>
         <image_large_height>230</image_large_height>
         <image_large_width>300</image_large_width>
         <yandex_market>1</yandex_market>
         <yandex_market_bid>0</yandex_market_bid>
         <yandex_market_cid>0</yandex_market_cid>
         <manufacturer_warranty>0</manufacturer_warranty>
         <country_of_origin></country_of_origin>
         <yandex_market_sales_notes></yandex_market_sales_notes>
         <user_id>0</user_id>
         <siteuser_id>0</siteuser_id>
         <modification_id>0</modification_id>
         <guid>D21B2112-0F5F-8D0D-C12D-999CA0B4E999</guid>
         <showed>7</showed>
         <length>0</length>
         <width>0</width>
         <height>0</height>
         <deleted>0</deleted>
         <url>/shop/tovary-dlia-prazdnika/elementy-karnavalnogo-kostiuma-maski-polumaski/nabor-polumasok-kukly-lol-6sht/</url>
         <date>09.08.2019</date>
         <datetime>09.08.2019 12:23:41</datetime>
         <start_datetime>0000-00-00 00:00:00</start_datetime>
         <end_datetime>0000-00-00 00:00:00</end_datetime>
         <dir>/upload/shop_1/1/1/4/item_11418/</dir>
         <rest>0</rest>
         <reserved>0</reserved>
         <price>220.00</price>
         <discount>0.00</discount>
         <tax>0.00</tax>
         <price_tax>220.00</price_tax>
         <currency>руб.</currency>
         <end_datetime_one_day>24.08.2019 00:00:01</end_datetime_one_day>
         <end_datetime_timestamp>00045015</end_datetime_timestamp>
      </shop_item>
   </tovar>
   <reviews_works>
      <informationsystem_item id="986">
         <informationsystem_id>15</informationsystem_id>
         <informationsystem_group_id>10</informationsystem_group_id>
         <shortcut_id>0</shortcut_id>
         <name>Фотозона Лол</name>
         <description></description>
         <active>1</active>
         <image_large>information_items_986.jpg</image_large>
         <image_small>small_information_items_986.jpg</image_small>
         <image_large_width>600</image_large_width>
         <image_large_height>470</image_large_height>
         <image_small_width>309</image_small_width>
         <image_small_height>242</image_small_height>
         <sorting>0</sorting>
         <ip>87.255.2.106</ip>
         <path>fotozona-lol</path>
         <indexing>1</indexing>
         <seo_title>Оформление фотозоны в стиле кукол ЛОЛ вместе с &quot;Планетой шаров&quot;</seo_title>
         <seo_description>Фотосессия девочки с большой куклой ЛОЛ из воздушных шаров - прекрасный новогодний подарок. &quot;Планета шаров&quot; готова помочь создать территорию радости!</seo_description>
         <seo_keywords></seo_keywords>
         <siteuser_group_id>-1</siteuser_group_id>
         <showed>1402</showed>
         <user_id>20</user_id>
         <siteuser_id>0</siteuser_id>
         <deleted>0</deleted>
         <url>/our-work/detskie-shariki-na-prazdniki/fotozona-lol/</url>
         <date>11.12.2018</date>
         <datetime>11.12.2018 20:36:05</datetime>
         <start_datetime>0000-00-00 00:00:00</start_datetime>
         <end_datetime>0000-00-00 00:00:00</end_datetime>
         <dir>/upload/information_system_15/9/8/6/item_986/</dir>
      </informationsystem_item>
      
      <informationsystem_item id="1023">
         <informationsystem_id>15</informationsystem_id>
         <informationsystem_group_id>17</informationsystem_group_id>
         <shortcut_id>0</shortcut_id>
         <name>День рождения в стиле кукол Лол</name>
         <description></description>
         <active>1</active>
         <image_large>information_items_1023.jpg</image_large>
         <image_small>small_information_items_1023.jpg</image_small>
         <image_large_width>561</image_large_width>
         <image_large_height>600</image_large_height>
         <image_small_width>227</image_small_width>
         <image_small_height>242</image_small_height>
         <sorting>0</sorting>
         <ip>87.255.1.46</ip>
         <path>den-rozhdeniya-v-stile-kukol-lol</path>
         <indexing>1</indexing>
         <seo_title>День рождения ребёнку в стиле кукол LOL заказать с оформлением воздушными шарами Москва</seo_title>
         <seo_description>Помимо объемных кукол, сотрудники компании «Планета шаров» будут рады предложить вам и другие варианты оформления дня рождения в стиле ЛОЛ</seo_description>
         <seo_keywords></seo_keywords>
         <siteuser_group_id>-1</siteuser_group_id>
         <showed>1491</showed>
         <user_id>20</user_id>
         <siteuser_id>0</siteuser_id>
         <deleted>0</deleted>
         <url>/our-work/den-rozhdeniya/den-rozhdeniya-v-stile-kukol-lol/</url>
         <date>07.01.2019</date>
         <datetime>07.01.2019 21:18:45</datetime>
         <start_datetime>0000-00-00 00:00:00</start_datetime>
         <end_datetime>0000-00-00 00:00:00</end_datetime>
         <dir>/upload/information_system_15/1/0/2/item_1023/</dir>
      </informationsystem_item>
      
      <informationsystem_item id="1503">
         <informationsystem_id>15</informationsystem_id>
         <informationsystem_group_id>17</informationsystem_group_id>
         <shortcut_id>0</shortcut_id>
         <name>Кукла лол на 5 лет</name>
         <description></description>
         <active>1</active>
         <image_large>information_items_1503.jpg</image_large>
         <image_small>small_information_items_1503.jpg</image_small>
         <image_large_width>511</image_large_width>
         <image_large_height>600</image_large_height>
         <image_small_width>206</image_small_width>
         <image_small_height>242</image_small_height>
         <sorting>0</sorting>
         <ip>87.255.31.32</ip>
         <path>kukla-lol-na-5-let</path>
         <indexing>1</indexing>
         <seo_title>Большая кукла лол из воздушных шаров на 5 лет</seo_title>
         <seo_description>Кукла лол из воздушных шаров на 5 лет от компании Планета шаров!</seo_description>
         <seo_keywords></seo_keywords>
         <siteuser_group_id>-1</siteuser_group_id>
         <showed>270</showed>
         <user_id>20</user_id>
         <siteuser_id>0</siteuser_id>
         <deleted>0</deleted>
         <url>/our-work/den-rozhdeniya/kukla-lol-na-5-let/</url>
         <date>21.04.2019</date>
         <datetime>21.04.2019 21:40:07</datetime>
         <start_datetime>0000-00-00 00:00:00</start_datetime>
         <end_datetime>0000-00-00 00:00:00</end_datetime>
         <dir>/upload/information_system_15/1/5/0/item_1503/</dir>
      </informationsystem_item>
      
      <informationsystem_item id="975">
         <informationsystem_id>2</informationsystem_id>
         <informationsystem_group_id>0</informationsystem_group_id>
         <shortcut_id>0</shortcut_id>
         <name>отзыв о Планете Шаров от Виктория 23.11.2018</name>
         <description></description>
         <active>1</active>
         <text>Все отлично! Спасибо! Все&amp;nbsp;довольны!</text>
         <image_large></image_large>
         <image_small></image_small>
         <image_large_width></image_large_width>
         <image_large_height></image_large_height>
         <image_small_width></image_small_width>
         <image_small_height></image_small_height>
         <sorting>0</sorting>
         <ip>178.219.46.102</ip>
         <path>otzyv-o-kompanii-planeta-sharov-ot-viktoriia-23112018</path>
         <indexing>1</indexing>
         <seo_title>отзыв о Планете Шаров от Виктория 23.11.2018</seo_title>
         <seo_description>отзыв о компании Планета Шаров от Виктория 23.11.2018</seo_description>
         <seo_keywords></seo_keywords>
         <siteuser_group_id>-1</siteuser_group_id>
         <showed>235</showed>
         <user_id>0</user_id>
         <siteuser_id>0</siteuser_id>
         <deleted>0</deleted>
         <url>/otzyvy-o-kompanii-planeta-sharov/otzyv-o-kompanii-planeta-sharov-ot-viktoriia-23112018/</url>
         <date>23.11.2018</date>
         <datetime>23.11.2018 00:00:00</datetime>
         <start_datetime>0000-00-00 00:00:00</start_datetime>
         <end_datetime>0000-00-00 00:00:00</end_datetime>
         <dir>/upload/information_system_2/9/7/5/item_975/</dir>
         <property_value id="519">
            <property_id>61</property_id>
            <entity_id>975</entity_id>
            <value>Виктория</value>
            <property_dir_id>0</property_dir_id>
            <tag_name>author</tag_name>
         </property_value>
         <property_value id="537">
            <property_id>62</property_id>
            <entity_id>975</entity_id>
            <value></value>
            <property_dir_id>0</property_dir_id>
            <tag_name>Email</tag_name>
         </property_value>
         <property_value id="502">
            <property_id>66</property_id>
            <entity_id>975</entity_id>
            <file_name>WhatsApp Image 2018-11-26 at 17.42.41(1).jpeg</file_name>
            <file_description></file_description>
            <file_small_name>WhatsApp Image 2018-11-26 at 17.42.41(1).jpeg</file_small_name>
            <file_small_description></file_small_description>
            <property_dir_id>0</property_dir_id>
            <tag_name>image</tag_name>
            <file size="456876" width="750" height="1000">information_items_property_502.jpeg</file>
            <file_small size="28630" width="150" height="200">small_information_items_property_502.jpeg</file_small>
         </property_value>
         <property_value id="503">
            <property_id>66</property_id>
            <entity_id>975</entity_id>
            <file_name>WhatsApp Image 2018-11-26 at 17.42.41.jpeg</file_name>
            <file_description></file_description>
            <file_small_name>WhatsApp Image 2018-11-26 at 17.42.41.jpeg</file_small_name>
            <file_small_description></file_small_description>
            <property_dir_id>0</property_dir_id>
            <tag_name>image</tag_name>
            <file size="446422" width="750" height="1000">information_items_property_503.jpeg</file>
            <file_small size="27656" width="150" height="200">small_information_items_property_503.jpeg</file_small>
         </property_value>
         <property_value id="504">
            <property_id>66</property_id>
            <entity_id>975</entity_id>
            <file_name>WhatsApp Image 2018-11-26 at 17.42.42.jpeg</file_name>
            <file_description></file_description>
            <file_small_name>WhatsApp Image 2018-11-26 at 17.42.42.jpeg</file_small_name>
            <file_small_description></file_small_description>
            <property_dir_id>0</property_dir_id>
            <tag_name>image</tag_name>
            <file size="495616" width="750" height="1000">information_items_property_504.jpeg</file>
            <file_small size="30879" width="150" height="200">small_information_items_property_504.jpeg</file_small>
         </property_value>
         <property_value id="7628">
            <property_id>106</property_id>
            <entity_id>975</entity_id>
            <value>5</value>
            <property_dir_id>7</property_dir_id>
            <tag_name>star1</tag_name>
         </property_value>
         <property_value id="7629">
            <property_id>107</property_id>
            <entity_id>975</entity_id>
            <value>5</value>
            <property_dir_id>7</property_dir_id>
            <tag_name>star2</tag_name>
         </property_value>
         <property_value id="7630">
            <property_id>108</property_id>
            <entity_id>975</entity_id>
            <value>5</value>
            <property_dir_id>7</property_dir_id>
            <tag_name>star3</tag_name>
         </property_value>
         <property_value id="7631">
            <property_id>109</property_id>
            <entity_id>975</entity_id>
            <value>5</value>
            <property_dir_id>7</property_dir_id>
            <tag_name>star4</tag_name>
         </property_value>
      </informationsystem_item>
      
      <informationsystem_item id="1016">
         <informationsystem_id>2</informationsystem_id>
         <informationsystem_group_id>0</informationsystem_group_id>
         <shortcut_id>0</shortcut_id>
         <name>отзыв о Планете Шаров от Ирина 23.12.2018</name>
         <description></description>
         <active>1</active>
         <text>Дочка довольна)) спасибо большое</text>
         <image_large></image_large>
         <image_small></image_small>
         <image_large_width></image_large_width>
         <image_large_height></image_large_height>
         <image_small_width></image_small_width>
         <image_small_height></image_small_height>
         <sorting>0</sorting>
         <ip>178.219.46.105</ip>
         <path>otzyv-o-kompanii-planeta-sharov-ot-irina-23122018</path>
         <indexing>1</indexing>
         <seo_title>отзыв о Планете Шаров от Ирина 23.12.2018</seo_title>
         <seo_description>отзыв о компании Планета Шаров от Ирина 23.12.2018</seo_description>
         <seo_keywords></seo_keywords>
         <siteuser_group_id>-1</siteuser_group_id>
         <showed>265</showed>
         <user_id>0</user_id>
         <siteuser_id>0</siteuser_id>
         <deleted>0</deleted>
         <url>/otzyvy-o-kompanii-planeta-sharov/otzyv-o-kompanii-planeta-sharov-ot-irina-23122018/</url>
         <date>23.12.2018</date>
         <datetime>23.12.2018 00:00:00</datetime>
         <start_datetime>0000-00-00 00:00:00</start_datetime>
         <end_datetime>0000-00-00 00:00:00</end_datetime>
         <dir>/upload/information_system_2/1/0/1/item_1016/</dir>
         <property_value id="605">
            <property_id>61</property_id>
            <entity_id>1016</entity_id>
            <value>Ирина</value>
            <property_dir_id>0</property_dir_id>
            <tag_name>author</tag_name>
         </property_value>
         <property_value id="607">
            <property_id>62</property_id>
            <entity_id>1016</entity_id>
            <value></value>
            <property_dir_id>0</property_dir_id>
            <tag_name>Email</tag_name>
         </property_value>
         <property_value id="558">
            <property_id>66</property_id>
            <entity_id>1016</entity_id>
            <file_name>73bfb9f8-538f-4160-bcd3-58edd56b337a.jpg</file_name>
            <file_description></file_description>
            <file_small_name>73bfb9f8-538f-4160-bcd3-58edd56b337a.jpg</file_small_name>
            <file_small_description></file_small_description>
            <property_dir_id>0</property_dir_id>
            <tag_name>image</tag_name>
            <file size="535247" width="800" height="1000">information_items_property_558.jpg</file>
            <file_small size="34690" width="160" height="200">small_information_items_property_558.jpg</file_small>
         </property_value>
         <property_value id="7872">
            <property_id>106</property_id>
            <entity_id>1016</entity_id>
            <value>5</value>
            <property_dir_id>7</property_dir_id>
            <tag_name>star1</tag_name>
         </property_value>
         <property_value id="7873">
            <property_id>107</property_id>
            <entity_id>1016</entity_id>
            <value>5</value>
            <property_dir_id>7</property_dir_id>
            <tag_name>star2</tag_name>
         </property_value>
         <property_value id="7874">
            <property_id>108</property_id>
            <entity_id>1016</entity_id>
            <value>5</value>
            <property_dir_id>7</property_dir_id>
            <tag_name>star3</tag_name>
         </property_value>
         <property_value id="7875">
            <property_id>109</property_id>
            <entity_id>1016</entity_id>
            <value>5</value>
            <property_dir_id>7</property_dir_id>
            <tag_name>star4</tag_name>
         </property_value>
      </informationsystem_item>
      
      <informationsystem_item id="1812">
         <informationsystem_id>2</informationsystem_id>
         <informationsystem_group_id>0</informationsystem_group_id>
         <shortcut_id>0</shortcut_id>
         <name>отзыв о Планете Шаров от Ирина 30.06.2019</name>
         <description></description>
         <active>1</active>
         <text>Добрый) все&amp;nbsp;хорошо,спасибо!)</text>
         <image_large></image_large>
         <image_small></image_small>
         <image_large_width></image_large_width>
         <image_large_height></image_large_height>
         <image_small_width></image_small_width>
         <image_small_height></image_small_height>
         <sorting>0</sorting>
         <ip>178.219.46.62</ip>
         <path>otzyv-o-kompanii-planeta-sharov-ot-irina-30062019</path>
         <indexing>1</indexing>
         <seo_title>отзыв о Планете Шаров от Ирина 30.06.2019</seo_title>
         <seo_description>отзыв о компании Планета Шаров от Ирина 30.06.2019</seo_description>
         <seo_keywords></seo_keywords>
         <siteuser_group_id>-1</siteuser_group_id>
         <showed>65</showed>
         <user_id>0</user_id>
         <siteuser_id>0</siteuser_id>
         <deleted>0</deleted>
         <url>/otzyvy-o-kompanii-planeta-sharov/otzyv-o-kompanii-planeta-sharov-ot-irina-30062019/</url>
         <date>30.06.2019</date>
         <datetime>30.06.2019 00:00:00</datetime>
         <start_datetime>0000-00-00 00:00:00</start_datetime>
         <end_datetime>0000-00-00 00:00:00</end_datetime>
         <dir>/upload/information_system_2/1/8/1/item_1812/</dir>
         <property_value id="952">
            <property_id>62</property_id>
            <entity_id>1812</entity_id>
            <value></value>
            <property_dir_id>0</property_dir_id>
            <tag_name>Email</tag_name>
         </property_value>
         <property_value id="948">
            <property_id>61</property_id>
            <entity_id>1812</entity_id>
            <value>Ирина</value>
            <property_dir_id>0</property_dir_id>
            <tag_name>author</tag_name>
         </property_value>
         <property_value id="836">
            <property_id>66</property_id>
            <entity_id>1812</entity_id>
            <file_name>index.jpg</file_name>
            <file_description></file_description>
            <file_small_name>index.jpg</file_small_name>
            <file_small_description></file_small_description>
            <property_dir_id>0</property_dir_id>
            <tag_name>image</tag_name>
            <file size="482459" width="750" height="1000">information_items_property_836.jpg</file>
            <file_small size="33483" width="150" height="200">small_information_items_property_836.jpg</file_small>
         </property_value>
         <property_value id="10770">
            <property_id>109</property_id>
            <entity_id>1812</entity_id>
            <value>5</value>
            <property_dir_id>7</property_dir_id>
            <tag_name>star4</tag_name>
         </property_value>
         <property_value id="10769">
            <property_id>108</property_id>
            <entity_id>1812</entity_id>
            <value>5</value>
            <property_dir_id>7</property_dir_id>
            <tag_name>star3</tag_name>
         </property_value>
         <property_value id="10768">
            <property_id>107</property_id>
            <entity_id>1812</entity_id>
            <value>5</value>
            <property_dir_id>7</property_dir_id>
            <tag_name>star2</tag_name>
         </property_value>
         <property_value id="10767">
            <property_id>106</property_id>
            <entity_id>1812</entity_id>
            <value>5</value>
            <property_dir_id>7</property_dir_id>
            <tag_name>star1</tag_name>
         </property_value>
      </informationsystem_item>
      
      <informationsystem_item id="1450">
         <informationsystem_id>2</informationsystem_id>
         <informationsystem_group_id>0</informationsystem_group_id>
         <shortcut_id>0</shortcut_id>
         <name>отзыв о Планете Шаров от Елена 08.04.2019</name>
         <description></description>
         <active>1</active>
         <text>Спасибо!! Шарики чудесные</text>
         <image_large></image_large>
         <image_small></image_small>
         <image_large_width></image_large_width>
         <image_large_height></image_large_height>
         <image_small_width></image_small_width>
         <image_small_height></image_small_height>
         <sorting>0</sorting>
         <ip>178.219.46.55</ip>
         <path>otzyv-o-kompanii-planeta-sharov-ot-elena-08042019</path>
         <indexing>1</indexing>
         <seo_title>отзыв о Планете Шаров от Елена 08.04.2019</seo_title>
         <seo_description>отзыв о компании Планета Шаров от Елена 08.04.2019</seo_description>
         <seo_keywords></seo_keywords>
         <siteuser_group_id>-1</siteuser_group_id>
         <showed>276</showed>
         <user_id>0</user_id>
         <siteuser_id>0</siteuser_id>
         <deleted>0</deleted>
         <url>/otzyvy-o-kompanii-planeta-sharov/otzyv-o-kompanii-planeta-sharov-ot-elena-08042019/</url>
         <date>08.04.2019</date>
         <datetime>08.04.2019 00:00:00</datetime>
         <start_datetime>0000-00-00 00:00:00</start_datetime>
         <end_datetime>0000-00-00 00:00:00</end_datetime>
         <dir>/upload/information_system_2/1/4/5/item_1450/</dir>
         <property_value id="810">
            <property_id>61</property_id>
            <entity_id>1450</entity_id>
            <value>Елена</value>
            <property_dir_id>0</property_dir_id>
            <tag_name>author</tag_name>
         </property_value>
         <property_value id="818">
            <property_id>62</property_id>
            <entity_id>1450</entity_id>
            <value></value>
            <property_dir_id>0</property_dir_id>
            <tag_name>Email</tag_name>
         </property_value>
         <property_value id="732">
            <property_id>66</property_id>
            <entity_id>1450</entity_id>
            <file_name>WhatsApp Image 2019-04-08 at 18.47.14.jpeg</file_name>
            <file_description>Воздушные шары в стиле Лол</file_description>
            <file_small_name>WhatsApp Image 2019-04-08 at 18.47.14.jpeg</file_small_name>
            <file_small_description>Воздушные шары в стиле Лол</file_small_description>
            <property_dir_id>0</property_dir_id>
            <tag_name>image</tag_name>
            <file size="95645" width="750" height="1000">information_items_property_732.jpeg</file>
            <file_small size="23672" width="150" height="200">small_information_items_property_732.jpeg</file_small>
         </property_value>
         <property_value id="733">
            <property_id>66</property_id>
            <entity_id>1450</entity_id>
            <file_name>WhatsApp Image 2019-04-08 at 18.47.15(1).jpeg</file_name>
            <file_description>Воздушные шары в стиле Лол</file_description>
            <file_small_name>WhatsApp Image 2019-04-08 at 18.47.15(1).jpeg</file_small_name>
            <file_small_description>Воздушные шары в стиле Лол</file_small_description>
            <property_dir_id>0</property_dir_id>
            <tag_name>image</tag_name>
            <file size="342453" width="750" height="1000">information_items_property_733.jpeg</file>
            <file_small size="21382" width="150" height="200">small_information_items_property_733.jpeg</file_small>
         </property_value>
         <property_value id="734">
            <property_id>66</property_id>
            <entity_id>1450</entity_id>
            <file_name>WhatsApp Image 2019-04-08 at 18.47.15(2).jpeg</file_name>
            <file_description>Воздушные шары в стиле Лол</file_description>
            <file_small_name>WhatsApp Image 2019-04-08 at 18.47.15(2).jpeg</file_small_name>
            <file_small_description>Воздушные шары в стиле Лол</file_small_description>
            <property_dir_id>0</property_dir_id>
            <tag_name>image</tag_name>
            <file size="384961" width="750" height="1000">information_items_property_734.jpeg</file>
            <file_small size="24627" width="150" height="200">small_information_items_property_734.jpeg</file_small>
         </property_value>
         <property_value id="735">
            <property_id>66</property_id>
            <entity_id>1450</entity_id>
            <file_name>WhatsApp Image 2019-04-08 at 18.47.15.jpeg</file_name>
            <file_description>Воздушные шары в стиле Лол</file_description>
            <file_small_name>WhatsApp Image 2019-04-08 at 18.47.15.jpeg</file_small_name>
            <file_small_description>Воздушные шары в стиле Лол</file_small_description>
            <property_dir_id>0</property_dir_id>
            <tag_name>image</tag_name>
            <file size="340017" width="750" height="1000">information_items_property_735.jpeg</file>
            <file_small size="21005" width="150" height="200">small_information_items_property_735.jpeg</file_small>
         </property_value>
         <property_value id="9651">
            <property_id>106</property_id>
            <entity_id>1450</entity_id>
            <value>5</value>
            <property_dir_id>7</property_dir_id>
            <tag_name>star1</tag_name>
         </property_value>
         <property_value id="9652">
            <property_id>107</property_id>
            <entity_id>1450</entity_id>
            <value>5</value>
            <property_dir_id>7</property_dir_id>
            <tag_name>star2</tag_name>
         </property_value>
         <property_value id="9653">
            <property_id>108</property_id>
            <entity_id>1450</entity_id>
            <value>5</value>
            <property_dir_id>7</property_dir_id>
            <tag_name>star3</tag_name>
         </property_value>
         <property_value id="9654">
            <property_id>109</property_id>
            <entity_id>1450</entity_id>
            <value>5</value>
            <property_dir_id>7</property_dir_id>
            <tag_name>star4</tag_name>
         </property_value>
      </informationsystem_item>
   </reviews_works>
   <group>81</group>
   <page>0</page>
   <part>0</part>
   <limit>999</limit>
   <informationsystem_group_properties>
      <property id="119">
         <property_dir_id>0</property_dir_id>
         <list_id>0</list_id>
         <informationsystem_id>0</informationsystem_id>
         <shop_id>0</shop_id>
         <name>Заголовок h1</name>
         <description></description>
         <type>1</type>
         <default_value></default_value>
         <tag_name>header-h1</tag_name>
         <sorting>0</sorting>
         <image_large_max_width>1000</image_large_max_width>
         <image_large_max_height>1000</image_large_max_height>
         <image_small_max_width>300</image_small_max_width>
         <image_small_max_height>450</image_small_max_height>
         <hide_small_image>0</hide_small_image>
         <guid>A9384A61-1234-131A-5BC0-726D4EA1936D</guid>
         <multiple>0</multiple>
         <user_id>30</user_id>
      </property>
      
      <property id="120">
         <property_dir_id>0</property_dir_id>
         <list_id>0</list_id>
         <informationsystem_id>0</informationsystem_id>
         <shop_id>0</shop_id>
         <name>Вывод на главную</name>
         <description></description>
         <type>7</type>
         <default_value>0</default_value>
         <tag_name>conclusion-on-the-main</tag_name>
         <sorting>0</sorting>
         <image_large_max_width>1000</image_large_max_width>
         <image_large_max_height>1000</image_large_max_height>
         <image_small_max_width>300</image_small_max_width>
         <image_small_max_height>450</image_small_max_height>
         <hide_small_image>0</hide_small_image>
         <guid>9D878A93-3F57-AF4E-3F88-08F65D1CAFE4</guid>
         <multiple>0</multiple>
         <user_id>30</user_id>
      </property>
      
      <property id="121">
         <property_dir_id>0</property_dir_id>
         <list_id>0</list_id>
         <informationsystem_id>0</informationsystem_id>
         <shop_id>0</shop_id>
         <name>Дата</name>
         <description></description>
         <type>8</type>
         <default_value>0000-00-00 00:00:00</default_value>
         <tag_name>date</tag_name>
         <sorting>0</sorting>
         <image_large_max_width>1000</image_large_max_width>
         <image_large_max_height>1000</image_large_max_height>
         <image_small_max_width>300</image_small_max_width>
         <image_small_max_height>450</image_small_max_height>
         <hide_small_image>0</hide_small_image>
         <guid>66CD49FE-7140-57CC-4692-457FB3B8C058</guid>
         <multiple>0</multiple>
         <user_id>30</user_id>
      </property>
   </informationsystem_group_properties>
   <informationsystem_group id="81">
      <informationsystem_id>32</informationsystem_id>
      <siteuser_id>0</siteuser_id>
      <parent_id>0</parent_id>
      <top_parent_id>0</top_parent_id>
      <name>В стиле</name>
      <description></description>
      <sorting>0</sorting>
      <path>prazdnik-v-stile</path>
      <image_large></image_large>
      <image_small>small_information_groups_81.jpg</image_small>
      <indexing>1</indexing>
      <subgroups_count>28</subgroups_count>
      <subgroups_total_count>28</subgroups_total_count>
      <items_count>28</items_count>
      <items_total_count>28</items_total_count>
      <seo_title></seo_title>
      <seo_description></seo_description>
      <seo_keywords></seo_keywords>
      <siteuser_group_id>-1</siteuser_group_id>
      <active>1</active>
      <user_id>30</user_id>
      <sns_type_id>0</sns_type_id>
      <url>/decorate-the-happiest-moments/prazdnik-v-stile/</url>
      <dir>/upload/information_system_32/0/8/1/group_81/</dir>
   </informationsystem_group>
   <informationsystem_item_properties>
      <property id="126">
         <property_dir_id>0</property_dir_id>
         <list_id>0</list_id>
         <informationsystem_id>0</informationsystem_id>
         <shop_id>0</shop_id>
         <name>Презентация</name>
         <description></description>
         <type>2</type>
         <default_value></default_value>
         <tag_name>prezentatsiia</tag_name>
         <sorting>0</sorting>
         <image_large_max_width>1280</image_large_max_width>
         <image_large_max_height>1280</image_large_max_height>
         <image_small_max_width>10</image_small_max_width>
         <image_small_max_height>10</image_small_max_height>
         <hide_small_image>1</hide_small_image>
         <guid>08569774-96FE-8DEC-91FA-7056979CBB0A</guid>
         <multiple>0</multiple>
         <user_id>30</user_id>
      </property>
   </informationsystem_item_properties>
   <informationsystem_item id="1735">
      <informationsystem_id>32</informationsystem_id>
      <informationsystem_group_id>81</informationsystem_group_id>
      <shortcut_id>0</shortcut_id>
      <name>Куклы Лол</name>
      <description></description>
      <active>1</active>
      <text></text>
      <image_large></image_large>
      <image_small>small_information_items_1735.jpg</image_small>
      <image_large_width>200</image_large_width>
      <image_large_height>300</image_large_height>
      <image_small_width>300</image_small_width>
      <image_small_height>450</image_small_height>
      <sorting>0</sorting>
      <ip>87.255.31.77</ip>
      <path>lol</path>
      <indexing>1</indexing>
      <seo_title></seo_title>
      <seo_description></seo_description>
      <seo_keywords>лол</seo_keywords>
      <siteuser_group_id>-1</siteuser_group_id>
      <showed>49</showed>
      <user_id>30</user_id>
      <siteuser_id>0</siteuser_id>
      <deleted>0</deleted>
      <url>/decorate-the-happiest-moments/prazdnik-v-stile/lol/</url>
      <date>24.06.2019</date>
      <datetime>24.06.2019 15:56:40</datetime>
      <start_datetime>0000-00-00 00:00:00</start_datetime>
      <end_datetime>0000-00-00 00:00:00</end_datetime>
      <dir>/upload/information_system_32/1/7/3/item_1735/</dir>
      <tag id="227">
         <tag_dir_id>0</tag_dir_id>
         <name>лол</name>
         <path>лол</path>
         <user_id>20</user_id>
         <description></description>
         <seo_title></seo_title>
         <seo_description></seo_description>
         <seo_keywords></seo_keywords>
         <urlencode>%D0%BB%D0%BE%D0%BB</urlencode>
      </tag>
      <comments_count>0</comments_count>
      <comments_grade_sum>0</comments_grade_sum>
      <comments_grade_count>0</comments_grade_count>
      <comments_average_grade>0</comments_average_grade>
      <property_value id="5445">
         <property_id>126</property_id>
         <entity_id>1735</entity_id>
         <file_name>tech-specs.pdf</file_name>
         <file_description></file_description>
         <file_small_name></file_small_name>
         <file_small_description></file_small_description>
         <property_dir_id>0</property_dir_id>
         <tag_name>prezentatsiia</tag_name>
         <file size="1627114">tech-specs.pdf</file>
         <file_small></file_small>
      </property_value>
   </informationsystem_item>
</informationsystem>
Модератор
#
Re: Сложный вывод элементов
PakoGonsalezZ писал(а):
Идет один элемент одной инфосистемы, потом 4 товара, потом снова инфоэлемент и за ним 4 товара

В вашем XML это совершенно не так, давая неверные исходные данные вы тратите не только своё время.

если вы вначале идете по инфоэлементам, то вам нужно запоминать в переменную position() от инфоэлемента и на основании него рассчитывать сдвиг position() для товаров и выбирать товары с рассчитанным ограничением.
#
Re: Сложный вывод элементов
hostcms писал(а):
В вашем XML это совершенно не так, давая неверные исходные данные вы тратите не только своё время.

Я же обьяснил что это не то что у меня есть, а то как мне нужно выстроить вывод
hostcms писал(а):
если вы вначале идете по инфоэлементам, то вам нужно запоминать в переменную position() от инфоэлемента и на основании него рассчитывать сдвиг position() для товаров и выбирать товары с рассчитанным ограничением.

Можно какой нибудь пример кода как это реализовать?
Модератор
#
Re: Сложный вывод элементов
PakoGonsalezZ писал(а):
Я же обьяснил что это не то что у меня есть, а то как мне нужно выстроить вывод

как же так, писали вы именно про XML:
PakoGonsalezZ писал(а):
В XML они добавлены выборкой по тегу. Идет один элемент одной инфосистемы, потом 4 товара, потом снова инфоэлемент и за ним 4 товара вот так они находятся, я не понимаю как сделать выборку ...


PakoGonsalezZ писал(а):
Можно какой нибудь пример кода как это реализовать?

я же написал как сделать, попробуйте, пожалуйста, сами реализовать по описанию.
Авторизация