Получить названия полей дополнительных свойств товара магазина, котоый является дополнительным свойством инфосистемы

#
Получить названия полей дополнительных свойств товара магазина, котоый является дополнительным свойством инфосистемы
Нужно вывести таблицей дополнительные свойства товара, который является дополнительным свойством элемента инфосистемы. Подскажите, пожалуйста, как обратиться к магазину, чтобы получить его свойства

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
   xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
   xmlns:hostcms="http://www.hostcms.ru/"
   exclude-result-prefixes="hostcms">
   <xsl:output xmlns="http://www.w3.org/TR/xhtml1/strict" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" encoding="utf-8" indent="yes" method="html" omit-xml-declaration="no" version="1.0" media-type="text/xml"/>

   <xsl:template match="/">
      <div class="item-page">
         <xsl:apply-templates select="/informationsystem/informationsystem_item"/>
      </div>
   </xsl:template>

   <xsl:template match="informationsystem_item">
      <section class="main-block main-block--mebel lozad" data-background-image="{dir}{image_large}">
         <div class="main-block__wrapper container">
            <div class="main-block__text">
               <div class="main-block__top">
                  <h1 class="main-block__h1 h1"><xsl:value-of select="name"/></h1>
                  <p class="main-block__descr"><xsl:value-of disable-output-escaping="yes" select="text"/></p>
               </div>
            </div>
            <div class="main-block__form-wrapper">
               <h2 class="main-block__h2">Хотите заказать комплект мебели?</h2>
               <form class="main-block__form form">
                  <label class="form__label">
                     <input type="text" name="name" class="form__input input input--text" value="" placeholder="Имя" required="required"/>
                  </label>
                  <label class="form__label">
                     <input type="email" name="email" class="form__input input input--text" value="" placeholder="E-mail" required="required"/>
                  </label>
                  <label class="form__label">
                     <input type="tel" name="phone" class="form__input input input--text" value="" placeholder="Телефон" required="required"/>
                  </label>
                  <input type="hidden" name="admin_email" value="info@yaninamebel.ru"/>
                  <input type="hidden" name="form_subject" value="Заявка с первого экрана"/>
                  <input type="hidden" name="formSubject" value="Заявка с первого экрана"/>
                  <input type="submit" class="btn form__btn" value="отправить"/>
               </form>
               <p class="main-block__politics">Отправляя заявку вы соглашаетесь на <a href="/privacy/" title="политика обработки персональных данных">обработку персональных данных</a>.</p>
            </div>
         </div>
      </section>

      <xsl:if test="property_value[tag_name = 'advantages']/value != ''">
         <xsl:value-of disable-output-escaping="yes"  select="property_value[tag_name = 'advantages']/value"/>
      </xsl:if>
      <xsl:if test="property_value[tag_name = 'slider'] != ''">
         <xsl:apply-templates select="property_value[tag_name = 'slider']/shop_item" mode="shop_item"/>
      </xsl:if>
   </xsl:template>


   <!-- Шаблон для товара -->
   <xsl:template match="shop_item" mode="shop_item">
      <xsl:variable name="groupId" select="shop_group_id"/>
      <xsl:variable name="shopId" select="shop_id"/>

      <section class="mebel-slider">
         <div class="inside container">
            <div class="mebel-slider__slider swiper">
               <div class="mebel-slider__wrapper swiper-wrapper">
                  <div class="detail-page mebel-slider__slide swiper-slide">
                     <div class="detail-page__top" id="detail-slider-{@id}">
                        <div class="detail-page__left">
                           <div class="detail-page__slider detail-slider">
                              <div class="swiper-button-prev detail-slider__btn detail-slider__btn--prev"></div>
                              <div class="swiper-button-next detail-slider__btn detail-slider__btn--next"></div>
                              <div class="detail-slider__slider">
                                 <div class="detail-slider__wrapper swiper-wrapper">
                                    <div class="detail-slider__slide swiper-slide">
                                       <img
                                          src="{dir}{image_small}"
                                          srcset="/img/loader.svg"
                                          data-srcset="{dir}{image_small}"
                                       alt="{name}" class="detail-slider__image lozad"/>
                                    </div>
                                    <xsl:if test="count(property_value[tag_name='img'][file !=''])">
                                       <xsl:for-each select="property_value[tag_name='img'][file !='']">
                                          <div class="detail-slider__slide swiper-slide">
                                             <img  class="detail-slider__image lozad" decoding="async" src="{../dir}{file}" srcset="/img/loader.svg" data-srcset="{../dir}{file}" alt="{file_description}"/>
                                          </div>
                                       </xsl:for-each>
                                    </xsl:if>
                                    <xsl:if test="count(property_value[tag_name='video'][file !=''])">
                                       <xsl:for-each select="property_value[tag_name='video'][file !='']">
                                          <div class="detail-slider__slide swiper-slide">
                                             <video src="{../dir}{file}" controls="controls" class="detail-slider__video"></video>
                                          </div>
                                       </xsl:for-each>
                                    </xsl:if>

                                 </div>
                              </div>
                           </div>

                           <div class="detail-page__thumbs detail-thumbs">
                              <div class="swiper-button-prev detail-thumbs__btn detail-thumbs__btn--prev"></div>
                              <div class="swiper-button-next detail-thumbs__btn detail-thumbs__btn--next"></div>
                              <div class="detail-thumbs__slider">
                                 <div class="swiper-wrapper detail-thumbs__wrapper">
                                    <div class="detail-thumbs__slide swiper-slide">
                                       <img
                                          class="catalog-item__img lozad"
                                          src="{dir}{image_small}"
                                          srcset="/img/loader.svg"
                                          data-srcset="{dir}{image_small}"
                                       alt="{name}" />
                                    </div>
                                    <xsl:if test="count(property_value[tag_name='img'][file !=''])">
                                       <xsl:for-each select="property_value[tag_name='img'][file !='']">
                                          <div class="detail-thumbs__slide swiper-slide">
                                             <img  class="detail-thumbs__image lozad" decoding="async" src="{../dir}{file}" srcset="/img/loader.svg" data-srcset="{../dir}{file}" alt="{file_description}"/>
                                          </div>
                                       </xsl:for-each>
                                    </xsl:if>

                                    <xsl:if test="count(property_value[tag_name='video'][file !=''])">
                                       <xsl:for-each select="property_value[tag_name='video'][file !='']">
                                          <div class="detail-thumbs__slide detail-thumbs__slide--video swiper-slide">
                                             <xsl:if test="file_small !=''">
                                                <img src="{../dir}{file_small}" class="detail-thumbs__image"/>
                                             </xsl:if>
                                          </div>
                                       </xsl:for-each>
                                    </xsl:if>

                                    <xsl:if test="count(property_value[tag_name='youtube'][value !=''])">
                                       <xsl:for-each select="property_value[tag_name='youtube'][value !='']">
                                          <div class="detail-thumbs__slide detail-thumbs__slide--video swiper-slide">
                                             <img src="https://i.ytimg.com/vi/{value}/maxresdefault.jpg" alt="" class="detail-thumbs__image" />
                                          </div>
                                       </xsl:for-each>
                                    </xsl:if>
                                 </div>
                              </div>
                           </div>
                        </div>
                        <div class="detail-page__right">
                           <div class="detail-page__product detail-info detail-info--list">
                              <a  class="detail-info__title" href="{url}" title="{name}">
                                 <span>
                                    <xsl:value-of select="name" />
                                 </span>
                              </a>
                              <xsl:apply-templates select="property_value[value != '' or shop_item/node() or informationsystem_item/node()]"/>
                              <div class="detail-info__list">
                                 <div class="detail-info__list-title">
                                    Стоимость:
                                 </div>
                                 <div class="detail-info__list-value">
                                    <xsl:choose>
                                       <xsl:when test="price!=0">
                                          <xsl:value-of select="price" />
                                          <xsl:apply-templates select="shop[@id=$shopId]/shop_currency/code">
                                             <xsl:with-param name="value" select="price" />
                                          </xsl:apply-templates>
                                       </xsl:when>
                                       <xsl:otherwise>
                                          Под запрос
                                       </xsl:otherwise>
                                    </xsl:choose>

                                 </div>
                              </div>
                              <button class="detail-btn detail-btn--mebel" data-js="popup-form" onclick="ym(82368622,'reachGoal','click_stoimost'); return;">Хочу также</button>
                           </div>
                        </div>
                     </div>
                  </div>
               </div>
            </div>
         </div>

         <div class="mebel-slider__pagination swiper-pagination"></div>
      </section>
   </xsl:template>

   <xsl:template match="property_value">
      <xsl:if test="tag_name != 'img'">
         <xsl:variable name="property_id" select="property_id" />
         <xsl:variable name="shop_id" select="//shop_id" />
         <xsl:variable name="property" select=".//shop[@id=$shop_id]/shop_item_properties//property[@id=$property_id]" />
         <div class="detail-info__list">
            <div class="detail-info__list-title">
               <xsl:value-of select="$property/name"/>
            </div>
            <div class="detail-info__list-value">
               <xsl:choose>
                  <xsl:when test="$property/type = 2">
                     <a href="{../dir}{file}" target="_blank"><xsl:value-of select="file_name"/></a>
                  </xsl:when>
                  <xsl:when test="$property/type = 5">
                     <a href="{informationsystem_item/url}"><xsl:value-of select="informationsystem_item/name"/></a>
                  </xsl:when>
                  <xsl:when test="$property/type = 7">
                     <input type="checkbox" disabled="disabled">
                        <xsl:if test="value = 1">
                           <xsl:attribute name="checked">checked</xsl:attribute>
                        </xsl:if>
                     </input>
                  </xsl:when>
                  <xsl:when test="$property/type = 12">
                     <a href="{shop_item/url}"><xsl:value-of select="shop_item/name"/></a>
                  </xsl:when>
                  <xsl:otherwise>
                     <xsl:value-of disable-output-escaping="yes" select="value"/>
                     <!-- Единица измерения свойства -->
                     <xsl:if test="$property/shop_measure/node()">
                        <xsl:text> </xsl:text><xsl:value-of select="$property/shop_measure/name"/>
                     </xsl:if>
                  </xsl:otherwise>
               </xsl:choose>
            </div>
         </div>
      </xsl:if>
   </xsl:template>

   <xsl:template name="show_number" >
      <xsl:param name="number" />
      <xsl:choose>
         <xsl:when test="$number=0">
            <xsl:text>рассчет</xsl:text>
         </xsl:when>
         <xsl:otherwise>
            <xsl:value-of select = "$number" />мм
         </xsl:otherwise>
      </xsl:choose>
   </xsl:template>

   <xsl:template match="shop_currency/code">
      <xsl:param name="value" />
      <xsl:variable name="spaced" select="format-number($value, '# ###', 'my')" />
      <xsl:choose>
         <xsl:when test=". = 'RUB'"><xsl:value-of select="$spaced"/>р.</xsl:when>
         <xsl:otherwise><xsl:value-of select="$spaced"/> <xsl:value-of select="." /></xsl:otherwise>
      </xsl:choose>
   </xsl:template>
</xsl:stylesheet>



<informationsystem id="12">
   <informationsystem_dir_id>0</informationsystem_dir_id>
   <structure_id>24</structure_id>
   <site_id>2</site_id>
   <name>Услуги</name>
   <description></description>
   <use_captcha>1</use_captcha>
   <items_on_page>10</items_on_page>
   <format_date>%d.%m.%Y</format_date>
   <format_datetime>%d.%m.%Y %H:%M:%S</format_datetime>
   <url_type>1</url_type>
   <seo_root_title_template></seo_root_title_template>
   <seo_root_keywords_template></seo_root_keywords_template>
   <seo_root_description_template></seo_root_description_template>
   <http>//yaninamebel.ru</http>
   <url>/services/</url>
   <captcha_id>25f6fb9af55503a5697016096cf979e3</captcha_id>
   <siteuser_id>0</siteuser_id>
   <ОтображатьСсылкуНаАрхив>0</ОтображатьСсылкуНаАрхив>
   <ОтображатьСсылкиНаСледующиеСтраницы>1</ОтображатьСсылкиНаСледующиеСтраницы>
   <ТекущаяГруппа>0</ТекущаяГруппа>
   <show_comments>0</show_comments>
   <show_add_comments>0</show_add_comments>
   <group>0</group>
   <page>0</page>
   <part>0</part>
   <limit>10</limit>
   <informationsystem_item_properties>
      <property id="36">
         <property_dir_id>0</property_dir_id>
         <name>Преимущества</name>
         <description></description>
         <type>6</type>
         <default_value></default_value>
         <tag_name>advantages</tag_name>
         <sorting>0</sorting>
         <watermark_default_use_large_image>0</watermark_default_use_large_image>
         <watermark_default_use_small_image>0</watermark_default_use_small_image>
         <typograph>0</typograph>
         <trailing_punctuation>0</trailing_punctuation>
         <multiple>0</multiple>
         <indexing>1</indexing>
         <obligatory>0</obligatory>
      </property>
      <property id="37">
         <property_dir_id>0</property_dir_id>
         <name>Слайдер</name>
         <description></description>
         <type>12</type>
         <default_value></default_value>
         <tag_name>slider</tag_name>
         <sorting>0</sorting>
         <watermark_default_use_large_image>0</watermark_default_use_large_image>
         <watermark_default_use_small_image>0</watermark_default_use_small_image>
         <typograph>0</typograph>
         <trailing_punctuation>0</trailing_punctuation>
         <multiple>1</multiple>
         <indexing>1</indexing>
         <obligatory>0</obligatory>
      </property>
   </informationsystem_item_properties>
   <informationsystem_item id="226">
      <informationsystem_id>12</informationsystem_id>
      <informationsystem_group_id>0</informationsystem_group_id>
      <shortcut_id>0</shortcut_id>
      <name>Комплексная меблировка квартиры под ключ</name>
      <description>&lt;p&gt;Меблируем корпусной мебелью комнату или квартиру целиком!&lt;/p&gt;</description>
      <active>1</active>
      <text></text>
      <image_large>item_226.jpg</image_large>
      <image_small>small_item_226.jpg</image_small>
      <image_large_width>4096</image_large_width>
      <image_large_height>2304</image_large_height>
      <image_small_width>70</image_small_width>
      <image_small_height>40</image_small_height>
      <sorting>0</sorting>
      <ip>91.122.159.152</ip>
      <path>meblirovka-kvartiry-pod-klyuch</path>
      <indexing>1</indexing>
      <closed>0</closed>
      <seo_title></seo_title>
      <seo_description></seo_description>
      <seo_keywords></seo_keywords>
      <siteuser_group_id>-1</siteuser_group_id>
      <showed>175</showed>
      <siteuser_id>0</siteuser_id>
      <guid>37118D2A-18F7-3357-7E1F-4C120F492D05</guid>
      <url>/services/meblirovka-kvartiry-pod-klyuch/</url>
      <date>07.08.2023</date>
      <datetime>07.08.2023 11:27:04</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_12/2/2/6/item_226/</dir>
      <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="3">
         <property_id>36</property_id>
         <value>&lt;section class=&quot;mebel-advantages&quot;&gt;
            &lt;div class=&quot;inside container&quot;&gt;
            &lt;h3 class=&quot;mebel__h3&quot;&gt;Преимущества полной меблировки&lt;/h3&gt;
            &lt;div class=&quot;item-adv item-adv--purple&quot;&gt;
            &lt;div class=&quot;item-adv__it&quot;&gt;
            &lt;div class=&quot;item-adv__img&quot;&gt;&lt;img src=&quot;/img/adv-1.svg&quot; alt=&quot;&quot;&gt;&lt;/div&gt;
            &lt;div class=&quot;item-adv__tit&quot;&gt;Экономия времени&lt;/div&gt;
            &lt;div class=&quot;iitem-adv__text&quot;&gt;Заказ комплексной меблировки у одного производителя ускоряет переезд! Изготовление занимает от 14 дней.&lt;/div&gt;
            &lt;/div&gt;
            &lt;div class=&quot;item-adv__it&quot;&gt;
            &lt;div class=&quot;item-adv__img&quot;&gt;&lt;img src=&quot;/img/adv-2.svg&quot; alt=&quot;&quot;&gt;&lt;/div&gt;
            &lt;div class=&quot;item-adv__tit&quot;&gt;Экономия денег&lt;/div&gt;
            &lt;div class=&quot;iitem-adv__text&quot;&gt;Мы являемся производителем мебели, а значит &amp;ndash; нам не нужны посредники. В стоимость комплекта входит доставка и сборка.&lt;/div&gt;
            &lt;/div&gt;
            &lt;div class=&quot;item-adv__it&quot;&gt;
            &lt;div class=&quot;item-adv__img&quot;&gt;&lt;img src=&quot;/img/adv-3.svg&quot; alt=&quot;&quot;&gt;&lt;/div&gt;
            &lt;div class=&quot;item-adv__tit&quot;&gt;Бесплатный замер&lt;/div&gt;
            &lt;div class=&quot;iitem-adv__text&quot;&gt;Выполняем точные замеры бесплатно. Мебель идеально впишется в каждую комнату.&lt;/div&gt;
            &lt;/div&gt;
            &lt;div class=&quot;item-adv__it&quot;&gt;
            &lt;div class=&quot;item-adv__img&quot;&gt;&lt;img src=&quot;/img/adv-4.svg&quot; alt=&quot;&quot;&gt;&lt;/div&gt;
            &lt;div class=&quot;item-adv__tit&quot;&gt;Дизайн-проект&lt;/div&gt;
            &lt;div class=&quot;iitem-adv__text&quot;&gt;Разработаем уникальный дизайнкорпусной мебели, органично впишем ее в интерьер. Визуализация проекта в 3D.&lt;/div&gt;
            &lt;/div&gt;
            &lt;div class=&quot;item-adv__it&quot;&gt;
            &lt;div class=&quot;item-adv__img&quot;&gt;&lt;img src=&quot;/img/adv-5.svg&quot; alt=&quot;&quot;&gt;&lt;/div&gt;
            &lt;div class=&quot;item-adv__tit&quot;&gt;Никаких ограничений&lt;/div&gt;
            &lt;div class=&quot;iitem-adv__text&quot;&gt;Изготавливаем комплекты мебели для студий, многокомнатных квартир, загородных домов и даже офисов.&lt;/div&gt;
            &lt;/div&gt;
            &lt;/div&gt;
            &lt;/div&gt;
         &lt;/section&gt;</value>
         <property_dir_id>0</property_dir_id>
         <tag_name>advantages</tag_name>
      </property_value>
      <property_value id="117">
         <property_id>37</property_id>
         <sorting>0</sorting>
         <property_dir_id>0</property_dir_id>
         <tag_name>slider</tag_name>
         <shop_item id="835">
            <shortcut_id>0</shortcut_id>
            <shop_tax_id>0</shop_tax_id>
            <shop_seller_id>0</shop_seller_id>
            <shop_group_id>74</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;ul&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;Комплект корпусной мебели установлен по адресу: ул. Манчестерская, д. 3 кор. 2. Фасады и корпуса изготовлены из ЛДСП Egger, шкафчики дополнены фурнитурой с доводчиками и системой push-to-open, подсветкой.&lt;/p&gt;</text>
            <image_large>item_835.jpg</image_large>
            <image_small>small_item_835.jpg</image_small>
            <weight>0.00</weight>
            <active>1</active>
            <siteuser_group_id>-1</siteuser_group_id>
            <sorting>0</sorting>
            <path>komplekt-shkafy-kuhnya</path>
            <seo_title></seo_title>
            <seo_description></seo_description>
            <seo_keywords></seo_keywords>
            <indexing>1</indexing>
            <image_small_height>800</image_small_height>
            <image_small_width>600</image_small_width>
            <image_large_height>1280</image_large_height>
            <image_large_width>960</image_large_width>
            <manufacturer_warranty>0</manufacturer_warranty>
            <country_of_origin></country_of_origin>
            <siteuser_id>0</siteuser_id>
            <modification_id>0</modification_id>
            <guid>B80E2569-BB04-5649-1534-58B5FA57D126</guid>
            <showed>44</showed>
            <length>0.00</length>
            <width>0.00</width>
            <height>0.00</height>
            <min_quantity>1.00</min_quantity>
            <max_quantity>0.00</max_quantity>
            <quantity_step>1.00</quantity_step>
            <delivery>1</delivery>
            <pickup>1</pickup>
            <store>0</store>
            <adult>0</adult>
            <cpa>1</cpa>
            <url>/catalog/raspaschnye-shkafy/komplekt-shkafy-kuhnya/</url>
            <date>30.06.2023</date>
            <datetime>30.06.2023 09:11: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/8/3/5/item_835/</dir>
            <rest></rest>
            <reserved>0</reserved>
            <price formatted="447 000.00" formattedWithCurrency="447 000.00 руб.">447000.00</price>
            <discount formatted="0.00" formattedWithCurrency="0.00 руб.">0.00</discount>
            <tax formatted="0.00" formattedWithCurrency="0.00 руб.">0.00</tax>
            <price_tax formatted="447 000.00" formattedWithCurrency="447 000.00 руб.">447000.00</price_tax>
            <currency>руб.</currency>
            <property_value id="496">
               <property_id>3</property_id>
               <file_name>manchester (4).jpg</file_name>
               <file_description>Комплект шкафов от Янина Мебель</file_description>
               <file_small_name>manchester (4).jpg</file_small_name>
               <file_small_description></file_small_description>
               <sorting>0</sorting>
               <property_dir_id>0</property_dir_id>
               <tag_name>img</tag_name>
               <file size="139780" width="960" height="1280">shop_property_file_835_496.jpg</file>
               <file_small size="38164" width="600" height="800">small_shop_property_file_835_496.jpg</file_small>
            </property_value>
            <property_value id="501">
               <property_id>3</property_id>
               <file_name>manch (1).jpg</file_name>
               <file_description>Стенка вокруг кровати Манчестер</file_description>
               <file_small_name>manch (1).jpg</file_small_name>
               <file_small_description></file_small_description>
               <sorting>1</sorting>
               <property_dir_id>0</property_dir_id>
               <tag_name>img</tag_name>
               <file size="134280" width="960" height="1280">shop_property_file_835_501.jpg</file>
               <file_small size="51955" width="600" height="800">small_shop_property_file_835_501.jpg</file_small>
            </property_value>
            <property_value id="502">
               <property_id>3</property_id>
               <file_name>manch (3).jpg</file_name>
               <file_description>Стенка вокруг кровати - Янина Мебель</file_description>
               <file_small_name>manch (3).jpg</file_small_name>
               <file_small_description></file_small_description>
               <sorting>2</sorting>
               <property_dir_id>0</property_dir_id>
               <tag_name>img</tag_name>
               <file size="125203" width="960" height="1280">shop_property_file_835_502.jpg</file>
               <file_small size="52160" width="600" height="800">small_shop_property_file_835_502.jpg</file_small>
            </property_value>
            <property_value id="503">
               <property_id>3</property_id>
               <file_name>manch (2).jpg</file_name>
               <file_description>Комплект распашных шкафов вокруг кровати</file_description>
               <file_small_name>manch (2).jpg</file_small_name>
               <file_small_description></file_small_description>
               <sorting>3</sorting>
               <property_dir_id>0</property_dir_id>
               <tag_name>img</tag_name>
               <file size="93741" width="960" height="1280">shop_property_file_835_503.jpg</file>
               <file_small size="40406" width="600" height="800">small_shop_property_file_835_503.jpg</file_small>
            </property_value>
            <property_value id="504">
               <property_id>3</property_id>
               <file_name>manch (4).jpg</file_name>
               <file_description>Шкафы с подсветкой</file_description>
               <file_small_name>manch (4).jpg</file_small_name>
               <file_small_description></file_small_description>
               <sorting>4</sorting>
               <property_dir_id>0</property_dir_id>
               <tag_name>img</tag_name>
               <file size="103146" width="960" height="1280">shop_property_file_835_504.jpg</file>
               <file_small size="43833" width="600" height="800">small_shop_property_file_835_504.jpg</file_small>
            </property_value>
            <property_value id="505">
               <property_id>3</property_id>
               <file_name>manch (5).jpg</file_name>
               <file_description>Кухня угловая - Янина Мебель</file_description>
               <file_small_name>manch (5).jpg</file_small_name>
               <file_small_description></file_small_description>
               <sorting>5</sorting>
               <property_dir_id>0</property_dir_id>
               <tag_name>img</tag_name>
               <file size="104754" width="960" height="1280">shop_property_file_835_505.jpg</file>
               <file_small size="40366" width="600" height="800">small_shop_property_file_835_505.jpg</file_small>
            </property_value>
            <property_value id="497">
               <property_id>3</property_id>
               <file_name>manchester (5).jpg</file_name>
               <file_description>Комплект распашных шкафов Янина Мебель</file_description>
               <file_small_name>manchester (5).jpg</file_small_name>
               <file_small_description></file_small_description>
               <sorting>6</sorting>
               <property_dir_id>0</property_dir_id>
               <tag_name>img</tag_name>
               <file size="139108" width="960" height="1280">shop_property_file_835_497.jpg</file>
               <file_small size="38845" width="600" height="800">small_shop_property_file_835_497.jpg</file_small>
            </property_value>
            <property_value id="498">
               <property_id>3</property_id>
               <file_name>manchester (1).jpg</file_name>
               <file_description>Кухонный гарнитур от Янина Мебель</file_description>
               <file_small_name>manchester (1).jpg</file_small_name>
               <file_small_description></file_small_description>
               <sorting>7</sorting>
               <property_dir_id>0</property_dir_id>
               <tag_name>img</tag_name>
               <file size="249815" width="1600" height="1200">shop_property_file_835_498.jpg</file>
               <file_small size="48109" width="800" height="600">small_shop_property_file_835_498.jpg</file_small>
            </property_value>
            <property_value id="499">
               <property_id>3</property_id>
               <file_name>manchester (2).jpg</file_name>
               <file_description>Кухонный гарнитур от Янина Мебель - 2</file_description>
               <file_small_name>manchester (2).jpg</file_small_name>
               <file_small_description></file_small_description>
               <sorting>8</sorting>
               <property_dir_id>0</property_dir_id>
               <tag_name>img</tag_name>
               <file size="262148" width="1200" height="1600">shop_property_file_835_499.jpg</file>
               <file_small size="46460" width="600" height="800">small_shop_property_file_835_499.jpg</file_small>
            </property_value>
            <property_value id="6714">
               <property_id>1</property_id>
               <value>Бежевый</value>
               <sorting>0</sorting>
               <property_dir_id>0</property_dir_id>
               <tag_name>colors</tag_name>
            </property_value>
            <property_value id="6715">
               <property_id>23</property_id>
               <value>Под дерево</value>
               <sorting>0</sorting>
               <property_dir_id>0</property_dir_id>
               <tag_name>color-corpus</tag_name>
            </property_value>
            <property_value id="6717">
               <property_id>4</property_id>
               <value>ЛДСП Egger</value>
               <sorting>0</sorting>
               <property_dir_id>0</property_dir_id>
               <tag_name>korpus</tag_name>
            </property_value>
            <property_value id="6718">
               <property_id>5</property_id>
               <value>ЛДСП Egger</value>
               <sorting>0</sorting>
               <property_dir_id>0</property_dir_id>
               <tag_name>fasad</tag_name>
            </property_value>
         </shop_item>
      </property_value>
      <property_value id="118">
         <property_id>37</property_id>
         <sorting>1</sorting>
         <property_dir_id>0</property_dir_id>
         <tag_name>slider</tag_name>
         <shop_item id="135">
            <shortcut_id>0</shortcut_id>
            <shop_tax_id>0</shop_tax_id>
            <shop_seller_id>0</shop_seller_id>
            <shop_group_id>63</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>item_135.jpg</image_large>
            <image_small>small_item_135.jpg</image_small>
            <weight>0.00</weight>
            <active>1</active>
            <siteuser_group_id>-1</siteuser_group_id>
            <sorting>0</sorting>
            <path>klassicheskaya-uzkaya-prixozhaya</path>
            <seo_title></seo_title>
            <seo_description></seo_description>
            <seo_keywords></seo_keywords>
            <indexing>1</indexing>
            <image_small_height>630</image_small_height>
            <image_small_width>473</image_small_width>
            <image_large_height>630</image_large_height>
            <image_large_width>473</image_large_width>
            <manufacturer_warranty>0</manufacturer_warranty>
            <country_of_origin></country_of_origin>
            <siteuser_id>0</siteuser_id>
            <modification_id>0</modification_id>
            <guid>4E77C04E-E518-DAAD-B282-F881BC490517</guid>
            <showed>123</showed>
            <length>1900.00</length>
            <width>400.00</width>
            <height>2900.00</height>
            <min_quantity>1.00</min_quantity>
            <max_quantity>0.00</max_quantity>
            <quantity_step>1.00</quantity_step>
            <delivery>1</delivery>
            <pickup>1</pickup>
            <store>0</store>
            <adult>0</adult>
            <cpa>1</cpa>
            <url>/catalog/prihozhie/klassicheskaya-uzkaya-prixozhaya/</url>
            <date>23.05.2022</date>
            <datetime>23.05.2022 22:31:40</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_135/</dir>
            <rest></rest>
            <reserved>0</reserved>
            <price formatted="0.00" formattedWithCurrency="0.00 руб.">0.00</price>
            <discount formatted="0.00" formattedWithCurrency="0.00 руб.">0.00</discount>
            <tax formatted="0.00" formattedWithCurrency="0.00 руб.">0.00</tax>
            <price_tax formatted="0.00" formattedWithCurrency="0.00 руб.">0.00</price_tax>
            <currency>руб.</currency>
            <property_value id="187">
               <property_id>3</property_id>
               <file_name>21.jpg</file_name>
               <file_description></file_description>
               <file_small_name>21.jpg</file_small_name>
               <file_small_description></file_small_description>
               <sorting>0</sorting>
               <property_dir_id>0</property_dir_id>
               <tag_name>img</tag_name>
               <file size="156193" width="504" height="668">shop_property_file_135_187.jpg</file>
               <file_small size="156193" width="504" height="668">small_shop_property_file_135_187.jpg</file_small>
            </property_value>
            <property_value id="382">
               <property_id>1</property_id>
               <value>Ясень шимо темный</value>
               <sorting>0</sorting>
               <property_dir_id>0</property_dir_id>
               <tag_name>colors</tag_name>
            </property_value>
            <property_value id="383">
               <property_id>4</property_id>
               <value>ЛДСП</value>
               <sorting>0</sorting>
               <property_dir_id>0</property_dir_id>
               <tag_name>korpus</tag_name>
            </property_value>
            <property_value id="384">
               <property_id>5</property_id>
               <value>ЛДСП</value>
               <sorting>0</sorting>
               <property_dir_id>0</property_dir_id>
               <tag_name>fasad</tag_name>
            </property_value>
            <property_value id="385">
               <property_id>2</property_id>
               <value>1900х2900х400</value>
               <property_dir_id>0</property_dir_id>
               <tag_name>sizes</tag_name>
            </property_value>
            <property_value id="6877">
               <property_id>33</property_id>
               <value></value>
               <sorting>0</sorting>
               <property_dir_id>0</property_dir_id>
               <tag_name>youtube</tag_name>
            </property_value>
         </shop_item>
      </property_value>
      <property_value id="119">
         <property_id>37</property_id>
         <sorting>2</sorting>
         <property_dir_id>0</property_dir_id>
         <tag_name>slider</tag_name>
         <shop_item id="49">
            <shortcut_id>0</shortcut_id>
            <shop_tax_id>0</shop_tax_id>
            <shop_seller_id>0</shop_seller_id>
            <shop_group_id>62</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>item_49.jpg</image_large>
            <image_small>small_item_49.jpg</image_small>
            <weight>0.00</weight>
            <active>1</active>
            <siteuser_group_id>-1</siteuser_group_id>
            <sorting>0</sorting>
            <path>chernyj-vstroennyj-shkaf-kupe</path>
            <seo_title></seo_title>
            <seo_description></seo_description>
            <seo_keywords></seo_keywords>
            <indexing>1</indexing>
            <image_small_height>588</image_small_height>
            <image_small_width>700</image_small_width>
            <image_large_height>588</image_large_height>
            <image_large_width>700</image_large_width>
            <manufacturer_warranty>0</manufacturer_warranty>
            <country_of_origin></country_of_origin>
            <siteuser_id>0</siteuser_id>
            <modification_id>0</modification_id>
            <guid>33129747-71C5-B0EB-6AF0-DA9C2E163ABC</guid>
            <showed>553</showed>
            <length>2800.00</length>
            <width>600.00</width>
            <height>2400.00</height>
            <min_quantity>1.00</min_quantity>
            <max_quantity>0.00</max_quantity>
            <quantity_step>1.00</quantity_step>
            <delivery>1</delivery>
            <pickup>1</pickup>
            <store>0</store>
            <adult>0</adult>
            <cpa>1</cpa>
            <url>/catalog/shkafy-kupe/korpusnye/chernyj-vstroennyj-shkaf-kupe/</url>
            <date>28.06.2021</date>
            <datetime>28.06.2021 00:21:54</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/0/4/9/item_49/</dir>
            <rest></rest>
            <reserved>0</reserved>
            <price formatted="58 000.00" formattedWithCurrency="58 000.00 руб.">58000.00</price>
            <discount formatted="0.00" formattedWithCurrency="0.00 руб.">0.00</discount>
            <tax formatted="0.00" formattedWithCurrency="0.00 руб.">0.00</tax>
            <price_tax formatted="58 000.00" formattedWithCurrency="58 000.00 руб.">58000.00</price_tax>
            <currency>руб.</currency>
            <property_value id="132">
               <property_id>1</property_id>
               <value>Черный</value>
               <sorting>0</sorting>
               <property_dir_id>0</property_dir_id>
               <tag_name>colors</tag_name>
            </property_value>
            <property_value id="133">
               <property_id>2</property_id>
               <value>2800х2400х600</value>
               <property_dir_id>0</property_dir_id>
               <tag_name>sizes</tag_name>
            </property_value>
            <property_value id="134">
               <property_id>4</property_id>
               <value>ЛДСП ЧФМК</value>
               <sorting>0</sorting>
               <property_dir_id>0</property_dir_id>
               <tag_name>korpus</tag_name>
            </property_value>
            <property_value id="135">
               <property_id>5</property_id>
               <value>ЛДСП</value>
               <sorting>0</sorting>
               <property_dir_id>0</property_dir_id>
               <tag_name>fasad</tag_name>
            </property_value>
            <property_value id="136">
               <property_id>5</property_id>
               <value>Зеркало</value>
               <sorting>1</sorting>
               <property_dir_id>0</property_dir_id>
               <tag_name>fasad</tag_name>
            </property_value>
         </shop_item>
      </property_value>
   </informationsystem_item>
</informationsystem>

Модератор
#
Re: Получить названия полей дополнительных свойств товара магазина, котоый является дополнительным свойством инфосистемы
maria.ats,
при формировании доп. свойства типа "Товар" у товара выводятся значения свойств, самого магазина shop и списка свойств в таком случае не формируется, только данные о товаре.
#
Re: Получить названия полей дополнительных свойств товара магазина, котоый является дополнительным свойством инфосистемы
Спасаибо за ответ. Подскажите, как мне как получить свойство shop и все, что к нему прилагается
Модератор
#
Re: Получить названия полей дополнительных свойств товара магазина, котоый является дополнительным свойством инфосистемы
maria.ats,
shop и все, что с ним связано, при использовании таких свойств не добавляется, считается это излишняя информация. Вы можете контроллеру добавить снаружи сам $oShop, а также список его свойств и другие данные, которые вам требуются для вывода.
Авторизация