Functional description
Difficulty level:
Payment schedules variables
Variable | Description | Example |
---|---|---|
{paymentschedules.NAME} | Payment schedule name | Payment for campingzone |
{paymentschedules.DESCRIPTION} | Payment schedule description | Downpayment |
{paymentschedules.PRICE} | Payment schedule | 150,00 |
{paymentschedules.DATE} | Payment schedule date | 31-12-1970 |
{paymentschedules.ACTUAL_DATE} | Payment schedule actual date | 31-12-1970 |
{paymentschedules.ACTUAL_PRICE} | Payment schedule actual price | 490,00 |
{paymentschedules.STATUS} | Payment schedule status | PAYED |
{paymentschedules.STATUS_CODE} | Payment schedule status code | 30 |
{paymentschedules.PAID} | Payment schedule paid amount | 150,00 |
{paymentschedules.PAYMENT_METHOD} | Payment schedule pay method | Creditcard |
{paymentschedules.REMARKS} | Payment schedule remarks | Downpayment is required |
Below is an example of a payment schedule table which include the name, actual date, actual price, status and statuscode.
<table align="center" border="0" cellpadding="5" cellspacing="1" style="padding:5px; width:100%"> <tbody> <tr> <td>Name</td> <td>Date</td> <td>Price</td> <td>Status</td> <td>Status code</td> </tr> <!-- BEGIN paymentschedules --> <tr> <td align="left" class="detail">{paymentschedules.NAME}</td> <td align="left" class="detail">{paymentschedules.ACTUAL_DATE}</td> <td align="right" class="detail">{paymentschedules.ACTUAL_PRICE}</td> <td align="right" class="detail">{paymentschedules.STATUS}</td> <td align="right" class="detail">{paymentschedules.STATUS_CODE}</td> </tr> <!-- END paymentschedules --> </tbody> </table>