0

我需要在 xslt 中格式化小数值。模板应删除小数点。并显示指定的数字后跟指定的小数位的数字。圆形模板四舍五入小数点。当我尝试使用我当前的模板时,我得到了 NaN。

如果 digitCount= 9,模板应将 992.45 转换为 000000992

<xsl:template name="RoundedDecimalFormat">
    <xsl:param name="num"></xsl:param>
    <xsl:param name="digitCount"></xsl:param>
    <xsl:variable name="value" select="format-number(round($num), '#########')"></xsl:variable>
    <xsl:call-template name="format-batchnum">
      <xsl:with-param name="batchnum" select="$value"></xsl:with-param>
      <xsl:with-param name="numbatchdigit" select="$digitCount"></xsl:with-param>
    </xsl:call-template>
  </xsl:template>

如果 manyDigits = 9,下面的模板应将 1323.91 转换为 00000132391

 <xsl:template name="UnRoundedDecimalFormat">
    <xsl:param name="time"></xsl:param>
    <xsl:param name="manyDigits"></xsl:param>
    <xsl:variable name="value" select="format-number($time, '#########')"></xsl:variable>
    <xsl:call-template name="format-batchnum">
      <xsl:with-param name="batchnum" select="$value"></xsl:with-param>
      <xsl:with-param name="numbatchdigit" select="$manyDigits"></xsl:with-param>
    </xsl:call-template>
  </xsl:template>

这部分工作正常,我在其他地方使用

<xsl:template name="format-batchnum">
    <xsl:param name="batchnum"/>
    <xsl:param name="numbatchdigit"/>
    <xsl:value-of select="concat(substring(substring($vZeroes,1,$numbatchdigit), string-length($batchnum) +1), $batchnum)"/>
  </xsl:template>

更新*

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
                xmlns:fo="http://www.w3.org/1999/XSL/Format" 
                xmlns:msxsl="urn:schemas-microsoft-com:xslt" 
                xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" 
                xmlns:fn="http://www.w3.org/2005/02/xpath-functions " 
                xmlns:xs="http://www.w3.org/2001/XMLSchema" 
                version="2.0">


 <xsl:call-template name="UnRoundedDecimalFormat">
      <xsl:with-param name="salary" select="$annualSalary"></xsl:with-param>
    </xsl:call-template>


<xsl:template name="RoundedDecimalFormat">
    <xsl:param name="num"></xsl:param>
    <xsl:param name="digitCount" select ="9"></xsl:param>
    <xsl:variable name="value" select="format-number(round($num), '#########')"></xsl:variable>
    <xsl:call-template name="format-batchnum">
      <xsl:with-param name="batchnum" select="$value"></xsl:with-param>
      <xsl:with-param name="numbatchdigit" select="$digitCount"></xsl:with-param>
    </xsl:call-template>
  </xsl:template>

  <xsl:template name="UnRoundedDecimalFormat">
    <xsl:param name="time"></xsl:param>
    <xsl:param name="manyDigits" select ="9"></xsl:param>

    <xsl:variable name="vTime" select="translate(string($time), '.', '')"/>

    <xsl:variable name="value" select="format-number(number(xs:string($vTime)), '#########')"></xsl:variable>
    <xsl:call-template name="format-batchnum">
      <xsl:with-param name="batchnum" select="$value"></xsl:with-param>
      <xsl:with-param name="numbatchdigit" select="$manyDigits"></xsl:with-param>
    </xsl:call-template>
 </xsl:template>


function roundedDecimalFormat(number){
try{
var n = Math.round(number);
return n;}
catch(err){return '';}
}

function removeDecimal(number){
try{
var n = number.replace('.','');
return n;}
catch(err){
return '';
}
};
4

1 回答 1

1

只需轻轻一点您的代码,它就可以按需要工作:

<xsl:stylesheet version="2.0"   xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xsl:output omit-xml-declaration="yes" indent="yes"/>

    <xsl:variable name="vZeroes" select=
    "'0000000000000000000000000000000000000000000'"/>

 <xsl:template match="/">
     <xsl:call-template name="RoundedDecimalFormat">
      <xsl:with-param name="num" select="992.45"/>
      <xsl:with-param name="digitCount" select="9"/>
     </xsl:call-template>
=========================
     <xsl:call-template name="UnRoundedDecimalFormat">
      <xsl:with-param name="time" select="1323.91"/>
      <xsl:with-param name="manyDigits" select="9"/>
     </xsl:call-template>
 </xsl:template>

 <xsl:template name="RoundedDecimalFormat">
    <xsl:param name="num"></xsl:param>
    <xsl:param name="digitCount"></xsl:param>
    <xsl:variable name="value" select="format-number(round($num), '#########')"></xsl:variable>
    <xsl:call-template name="format-batchnum">
      <xsl:with-param name="batchnum" select="$value"></xsl:with-param>
      <xsl:with-param name="numbatchdigit" select="$digitCount"></xsl:with-param>
    </xsl:call-template>
  </xsl:template>

 <xsl:template name="UnRoundedDecimalFormat">
    <xsl:param name="time"></xsl:param>
    <xsl:param name="manyDigits"></xsl:param>

    <xsl:variable name="vTime" select="translate(string($time), '.', '')"/>

    <xsl:variable name="value" select="format-number(number(xs:string($vTime)), '#########')"></xsl:variable>
    <xsl:call-template name="format-batchnum">
      <xsl:with-param name="batchnum" select="$value"></xsl:with-param>
      <xsl:with-param name="numbatchdigit" select="$manyDigits"></xsl:with-param>
    </xsl:call-template>
 </xsl:template>

 <xsl:template name="format-batchnum">
    <xsl:param name="batchnum"/>
    <xsl:param name="numbatchdigit"/>
    <xsl:value-of select="concat(substring(substring($vZeroes,1,$numbatchdigit), string-length($batchnum) +1), $batchnum)"/>
 </xsl:template>
</xsl:stylesheet>

当将此转换应用于任何 XML 文档(未使用)时,将产生所需的正确结果

000000992
=========================
000132391
于 2012-10-18T22:21:18.897 回答