Does anyone have an email confirmation template that includes payment plan info? Would you mind sharing it?
HI Amanda,
Yes I have one. I will put it together and send it later today.
Jon
Amanda,
Here is the xsl we are using for the order payments.
<!--Payments--> <xsl:if test="count(//PaymentPlan) > 0"> <tr> <td colspan="2"> <b>Payment Schedule</b> </td> </tr> <tr> <td> <b>Date Due</b> </td> <td> <b>Amount Due</b> </td> </tr> <xsl:for-each select="//PaymentPlan"> <tr> <td> <xsl:call-template name="FormatDate"> <xsl:with-param name="DateTime" select="due_dt"/> </xsl:call-template> </td> <td> <xsl:value-of select="format-number(number(amt_due), '$####.##')"/> </td> </tr> </xsl:for-each> </xsl:if>