Resulted in the following required updates to SORTOI.xslt for full compatibility
1. Change <price> value to remove number format altogether
Example |
Copy Code
|
---|---|
<Price> <xsl:value-of select="format-number($LinePrice,'#.####')" /> </Price> |
to
Example |
Copy Code
|
---|---|
<Price> <xsl:value-of select="$LinePrice" /> </Price> |
2. Change xsl GiftCertificateVlaue text to extend to 5 digit decimal precision
Example |
Copy Code
|
---|---|
<xsl:if test="$GiftcertificateValue!='0.0000'"> |
to
Example |
Copy Code
|
---|---|
<xsl:if test="$GiftcertificateValue!='0.00000'"> |