<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans>
<!– Registration of new models –>
<bean id="extension.dictionaryBootstrap" parent="dictionaryModelBootstrap" depends-on="dictionaryBootstrap">
<property name="models">
<list>
<value>alfresco\extension\customModel.xml</value>
</list>
</property>
</bean>
</beans>
<?xml version="1.0" encoding="UTF-8"?>
<!– Custom Model –>
<!– Note: This model is pre-configured to load at startup of the Repository. So, all custom –>
<!– types and aspects added here will automatically be registered –>
<model name="custom:custommodel" xmlns="http://www.alfresco.org/model/dictionary/1.0">
<!– Optional meta-data about the model –>
<description>Epingler le statut d'un document</description>
<author>Thomas Berment</author>
<version>1.0</version>
<imports>
<!– Import Alfresco Dictionary Definitions –>
<import uri="http://www.alfresco.org/model/dictionary/1.0" prefix="d"/>
<!– Import Alfresco Content Domain Model Definitions –>
<import uri="http://www.alfresco.org/model/content/1.0" prefix="cm"/>
</imports>
<!– Introduction of new namespaces defined by this model –>
<!– NOTE: The following namespace custom.model should be changed to reflect your own namespace –>
<namespaces>
<namespace uri="custom.model" prefix="custom"/>
</namespaces>
<constraints>
<constraint name="custom:typestatut" type="LIST">
<parameter name="allowedValues">
<list>
<value>Travail</value>
<value>Relu</value>
<value>Validé</value>
<value>Archivé</value>
</list>
</parameter>
</constraint>
<constraint name="custom:typeclassification" type="LIST">
<parameter name="allowedValues">
<list>
<value>BRDD</value>
<value>CdC</value>
<value>Chk-Reports</value>
<value>Convention</value>
<value>DCTG</value>
<value>ETUTECH</value>
<value>FDL</value>
<value>ISTS</value>
<value>Memo</value>
<value>PA</value>
<value>PGD</value>
<value>Plan</value>
<value>Pres</value>
<value>SFD</value>
<value>SFG</value>
<value>STD</value>
<value>StrRE7</value>
<value>TabSuivEntretien</value>
<value>TbbDoc</value>
<value>TbbLiv</value>
<value>TbbSuivRevues</value>
<value>TU</value>
</list>
</parameter>
</constraint>
</constraints>
<aspects>
<aspect name="custom:Metadatastatut">
<title>Statut du document</title>
<properties>
<property name="custom:statut">
<title>Statut</title>
<type>d:text</type>
<mandatory>true</mandatory>
<default>Travail</default>
<constraints>
<constraint ref="custom:typestatut"/>
</constraints>
</property>
</properties>
</aspect>
<aspect name="custom:Classification">
<title>Classification du document</title>
<properties>
<property name="custom:type">
<title>Classification</title>
<type>d:text</type>
<mandatory>true</mandatory>
<constraints>
<constraint ref="custom:typeclassification"/>
</constraints>
</property>
</properties>
</aspect>
</aspects>
</model>
<!– Lists the custom aspect in business rules Action wizard –>
<config evaluator="string-compare" condition="Action Wizards">
<aspects>
<aspect name="custom:Metadatastatut"/>
<aspect name="custom:Classification"/>
</aspects>
</config>
<!– Displays the properties in view details page –>
<config evaluator="aspect-name" condition="custom:Metadatastatut">
<property-sheet>
<show-property name="custom:statut" display-label-id="statut"/>
</property-sheet>
</config>
<config evaluator="aspect-name" condition="custom:Classification">
<property-sheet>
<show-property name="custom:type" display-label-id="type"/>
</property-sheet>
</config>
<config evaluator="string-compare" condition="Advanced Search">
<advanced-search>
<!–<content-types>
<type name="custom:custommodel" />
</content-types>–>
<custom-properties>
<meta-data aspect="custom:Metadatastatut" property="custom:statut" />
<meta-data aspect="custom:Classification" property="custom:type" />
</custom-properties>
</advanced-search>
</config>
<separator name="sepCust1" display-label="Statut du document" component-generator="HeaderSeparatorGenerator" />
le truc "pas très joli" c'est vous qui l'avez demandé. en effet, vous utilisez un séparateur avant le statut :<separator name="sepCust1" display-label="Statut du document" component-generator="HeaderSeparatorGenerator" />
en l'enlevant votre statut devrait apparaître à la suite des autres métadonnées
Content from pre 2016 and from language groups that have been closed.
Content is read-only.
By using this site, you are agreeing to allow us to collect and use cookies as outlined in Alfresco’s Cookie Statement and Terms of Use (and you have a legitimate interest in Alfresco and our products, authorizing us to contact you in such methods). If you are not ok with these terms, please do not use this website.