ODF - Evaluations by learning path


This page should only be applied if the assisted migration script asks you to pass the manual migration code.20250401.ODF.MCCSessionByEducationalPath

Assessments can now depend on theELP's pedagogical path.
An assessment is :

  • shared (common attribute set to true), default value
  • specific to theELP learning path (attribute common set to false)

If you have modified the ELPs template to redefine or overload the evaluation repeater (mccSession1 or mccSession2), you must re-apply the modifications made by the standard template:

  • Add "common" and "path" attributes to the 2 repeaters 
  • Type restrictions <right read-write-direction="write" id="ODF_Rights_Pilotage_MCC_Fields"/> on repeaters AND repeater fields, must be replaced by the restriction org.ametys.odf.restriction.RepeaterWithEducationalPathRestrictionwith the exception of the "common" field!

Example on the mccSession1 repeater, in bold, the modifications to be carried over.

<attribute type="repeater" name="mccSession1" initial-size="0">
        <label i18n="true">plugin.odf-pilotage:PLUGINS_ODF_PILOTAGE_COURSE_MCC_SESSION1_LABEL</label>
        <description i18n="true">plugin.odf-pilotage:PLUGINS_ODF_PILOTAGE_COURSE_MCC_SESSION1_DESCRIPTION</description>
        <add-label i18n="true">plugin.odf-pilotage:PLUGINS_ODF_PILOTAGE_COURSE_MCC_SESSION1_ADD_LABEL</add-label>
        <del-label i18n="true">plugin.odf-pilotage:PLUGINS_ODF_PILOTAGE_COURSE_MCC_SESSION1_DEL_LABEL</del-label>
        <header-label>{label} - {nature} (Coef. {coefficient})</header-label>
        <disable-conditions>
            <condition id="isEvaluated" operator="eq">false</condition>
        </disable-conditions>
        <custom-restriction class="org.ametys.odf.restriction.RepeaterWithEducationalPathRestriction">
            <right read-write-direction="write" id="ODF_Rights_Pilotage_MCC_Fields"/>
       </custom-restriction>

<attribute name="common" type="boolean">
            <label i18n="true">plugin.odf-pilotage:PLUGINS_ODF_PILOTAGE_COURSE_MCC_SESSION_COMMON_LABEL
            </label>
            <description i18n="true">plugin.odf-pilotage:PLUGINS_ODF_PILOTAGE_COURSE_MCC_SESSION_COMMON_DESCRIPTION
            </description>
            <default-value>true</default-value>
            <disable-conditions>
                <condition id="../isEvaluated" operator="eq">false</condition>
            </disable-conditions>
            <restrict-to>
                <right read-write-direction="write" id="ODF_Rights_Pilotage_MCC_Fields" />
            </restrict-to>
        </attribute>
        
        <attribute name="path" type="educational-path">
            <label i18n="true">plugin.odf-pilotage:PLUGINS_ODF_PILOTAGE_COURSE_MCC_SESSION_PATH_LABEL
            </label>
            <description i18n="true">plugin.odf-pilotage:PLUGINS_ODF_PILOTAGE_COURSE_MCC_SESSION_PATH_DESCRIPTION
            </description>
            <validation>
                <mandatory/>
            </validation>
            <disable-conditions type="or">
                <condition id="../isEvaluated" operator="eq">false</condition>
                <condition id="common" operator="neq">false</condition>
            </disable-conditions>
            <custom-restriction class="org.ametys.odf.restriction.RepeaterWithEducationalPathRestriction">
                <right read-write-direction="write" id="ODF_Rights_Pilotage_MCC_Fields"/>
            </custom-restriction>
        </attribute>

       <attribute name="label" type="string">
            <label i18n="true">plugin.odf-pilotage:PLUGINS_ODF_PILOTAGE_COURSE_MCC_SESSION_LABEL_LABEL</label>
            <description i18n="true">plugin.odf-pilotage:PLUGINS_ODF_PILOTAGE_COURSE_MCC_SESSION_LABEL_DESCRIPTION</description>
            <disable-conditions>
                <condition id="../isEvaluated" operator="eq">false</condition>
            </disable-conditions>
            <custom-restriction class="org.ametys.odf.restriction.RepeaterWithEducationalPathRestriction">
                <right read-write-direction="write" id="ODF_Rights_Pilotage_MCC_Fields"/>
            </custom-restriction>
        </attribute>
        
        <attribute name="natureEnseignement" type="content" contentType="odf-enumeration.EnseignementNature">
            <label i18n="true">plugin.odf-pilotage:PLUGINS_ODF_PILOTAGE_COURSE_MCC_SESSION_NATURE_ENSEIGNEMENT_LABEL</label>
            <description i18n="true">plugin.odf-pilotage:PLUGINS_ODF_PILOTAGE_COURSE_MCC_SESSION_NATURE_ENSEIGNEMENT_DESCRIPTION</description>
            <widget>edition.select-referencetable-content</widget>
            <disable-conditions>
                <condition id="../isEvaluated" operator="eq">false</condition>
            </disable-conditions>
            <custom-restriction class="org.ametys.odf.restriction.RepeaterWithEducationalPathRestriction">
                <right read-write-direction="write" id="ODF_Rights_Pilotage_MCC_Fields"/>
            </custom-restriction>
      </attribute>

<!-- Remplacer les restrictions existantes sur tous les autres attributs -->
<!-- etc -->
</repeater>

Pay particular attention to attribute names and modification conditions (disable-conditions, restrict-to)

If there is no difference, remove the model overload.

If there is a difference in attribute names, migrate the data to the standard model before removing the overload => ask for help

Any overloading of MCC reports to display coefficients by pedagogical path becomes useless since it is supported by the kernel.
The files concerned are WEB-INF/stylesheets/pilotage/report/mcc2[FORMAT].xsl for overloads of this type: 

<xsl:template match="course" mode="cell-course-coef">
        <xsl:param name="rowspan"/>
        <td class="centered" rowspan="{$rowspan}">
            <xsl:call-template name="display-double">
                <xsl:with-param name="value" select="odf:getValueForPath(@id, 'mccCoefficientByEducationalPath/coefficient', @path, 'mccCoefficient')" />
            </xsl:call-template>
        </td>
</xsl:template>

 

Back to top