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

    Hold-request-slip formatting changes previewed vs normal printing

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

    Description:
    Problem Description: Hold-request-slip formatting changes depending on whether it is previewed before printing.

    Actual Results: When a hold-request-slip is previewed before printing, all of the data is formatted correctly and is printed. When a hold-request-slip is printed using the print daemon or printed without preview (normal printing) most of the text is bold and underlined, when it should not be and the item barcode does not print the numbers

    Funcs-misc.xsl contains:
    <xsl:if test="contains($style, 'bold')"><xsl:text disable-output-escaping="yes">&lt;b/&gt;</xsl:text></xsl:if>
    <xsl:if test="contains($style, 'italic')"><xsl:text disable-output-escaping="yes">&lt;i/&gt;</xsl:text></xsl:if>
    <xsl:if test="contains($style, 'underline')"><xsl:text disable-output-escaping="yes">&lt;u/&gt;</xsl:text></xsl:if>
    Note that the order of the slash and character are reversed (for example b/ instead of /b)

    Expected Results: A hold-request-slip should be formatted the same, whether or not it is previewed.
    Funcs-misc.xsl should contain:
    <xsl:if test="contains($style, 'bold')"><xsl:text disable-output-escaping="yes">&lt;/b&gt;</xsl:text></xsl:if>
    <xsl:if test="contains($style, 'italic')"><xsl:text disable-output-escaping="yes">&lt;/i&gt;</xsl:text></xsl:if>
    <xsl:if test="contains($style, 'underline')"><xsl:text disable-output-escaping="yes">&lt;/u&gt;</xsl:text></xsl:if>

    Resolution:
    Funcs-misc.xsl should contain:
    <xsl:if test="contains($style, 'bold')"><xsl:text disable-output-escaping="yes">&lt;/b&gt;</xsl:text></xsl:if>
    <xsl:if test="contains($style, 'italic')"><xsl:text disable-output-escaping="yes">&lt;/i&gt;</xsl:text></xsl:if>
    <xsl:if test="contains($style, 'underline')"><xsl:text disable-output-escaping="yes">&lt;/u&gt;</xsl:text></xsl:if>

    Fixed with V. 20 rep_change #003377


    • Article last edited: 10/8/2013
    • Was this article helpful?