Как вывести элементы инфосистемы с дополнительным свойством ?
$Informationsystem_Controller_Show = new Informationsystem_Controller_Show( Core_Entity::factory('Informationsystem', 30) );
$Informationsystem_Controller_Show ->xsl( Core_Entity::factory('Xsl'

->getByName('ПроектыВнутри'

)->itemsPropertiesList(FALSE)->group(FALSE)->itemsProperties(TRUE)->itemsForbiddenTags(array('text'

)->limit(1)->show();
В xml один элемент, но без доп.свойств. Если itemsPropertiesList(TRUE) то список доп.свойств есть, а значений нет.
$Informationsystem_Controller_Show = new Informationsystem_Controller_Show( Core_Entity::factory('Informationsystem', 30) );
$Informationsystem_Controller_Show ->xsl( Core_Entity::factory('Xsl'

->getByName('ПроектыВнутриNEW'

)->itemsPropertiesList(FALSE)->group(FALSE)->itemsForbiddenTags(array('text'

)->itemsProperties(array('cena'

)->limit(1);//->show();
$Informationsystem_Controller_Show
->informationsystemItems()
->queryBuilder()
->leftJoin('informationsystem_item_properties', 'informationsystem_items.informationsystem_id', '=', 'informationsystem_item_properties.informationsystem_id'

->leftJoin('property_value_ints', 'informationsystem_items.id', '=', 'property_value_ints.entity_id',
array(
array('AND' => array('informationsystem_item_properties.property_id', '=', Core_QueryBuilder::expression('`property_value_ints`.`property_id`'

))
)
)
// Идентификатор дополнительного свойства
->where('informationsystem_item_properties.property_id', '=', 148);
$Informationsystem_Controller_Show->show();
В XML нет доп.свойств.