I have little to no experience with xsl and inherited this stylesheet. It’s an ACH payment and payment date must be 1 day after creation date. Issue: When the day is 01-08, it drops the 0 and shows as 24062, instead of 240602. Also when it is last day of the month, instead of going to the next month 240601, it shows as 240532.
Here’s how the date is set up. There’s no template/ param… just below:
<xsl:value-of select=”substring(PaymentInstructionInfo/InstructionCreationDate, 3, 2)”/>
<xsl:value-of select=”substring(PaymentInstructionInfo/InstructionCreationDate, 6,2)”/>
<xsl:value-of select=”substring(PaymentInstructionInfo/InstructionCreationDate, 9, 2) +1″/>
Anne is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.