Skip to main content
ExLibris
  • Subscribe by RSS
  • Ex Libris Knowledge Center

    Adding "OPAC notes" / "Circ notes" to the Paging slip / Hold slip

    • Article Type: General
    • Product: Aleph
    • Product Version: 20

    Description:
    Can we add "OPAC notes" and/or "Circ notes" to the paging request printouts?

    If so, how would we do this?

    Resolution:
    If the field that you want to add is one whose table is already represented by other fields in the relevant ./form_eng form, then the answer is "Yes". (If there are no columns from the table in the form, then this would be an enhancement request.)

    The "OPAC notes" is z30_note_opac and the "Circ notes" is z30_note_circ. Looking at the ./form_eng/hold-request-slip.xsl, we see that there *are* other z30 fields on the form, so we can add these two fields like this:

    <xsl:call-template name="display-gen-split">
    <xsl:with-param name="label" select="'OPAC Notes:'"/>
    <xsl:with-param name="value" select="./z30-note-opac"/>
    </xsl:call-template>

    <xsl:call-template name="display-gen-split">
    <xsl:with-param name="label" select="'Circ Notes:'"/>
    <xsl:with-param name="value" select="./z30-note-circ"/>
    </xsl:call-template>


    • Article last edited: 10/8/2013