Skip to content
Snippets Groups Projects
Commit feb6d63a authored by JoeMurray's avatar JoeMurray
Browse files

Fixed formatting of messages, added currency support

parent 865f4417
No related branches found
No related tags found
No related merge requests found
Showing
with 95 additions and 93 deletions
......@@ -10,15 +10,15 @@
{capture assign=valueStyle }style="padding: 4px; border-bottom: 1px solid #999;"{/capture}
<p>Dear {contact.display_name},</p>
<p>This is being sent to you as a receipt of {$grant_status} grant.</p>
<p>Your grant application below has been approved.</p>
Grant Program Name: {$grant_programs} <br>
Grant Type : {$grant_type}<br>
Total Amount : {$grant.amount_total}<br>
Grant Type: {$grant_type}<br>
Total Amount: {$grant.amount_total|crmMoney:$currency}<br>
{if customField}
{foreach from=$customField key=key item=data}
<b>{$customGroup.$key}</b><br>
{foreach from=$data key=dkey item=ddata}
{$ddata.label} : {$ddata.value}<br>
{$ddata.label}: {$ddata.value}<br>
{/foreach}
{/foreach}
{/if}
......
Receipt for {$grant_status} Grant
Grant application approved
Dear {contact.display_name},
This is being sent to you as a receipt of {$grant_status} grant.
Your grant application below has been approved.
Grant Program Name: {$grant_programs} <br>
Grant Type {$grant_type}
Total Amount: {$grant.amount_total}
Total Amount: {$grant.amount_total|crmMoney:$currency}
{if customField}
{foreach from=$customField key=key item=data}
{$customGroup.$key}
......
......@@ -10,19 +10,18 @@
{capture assign=valueStyle }style="padding: 4px; border-bottom: 1px solid #999;"{/capture}
<p>Dear {contact.display_name},</p>
<p>This is being sent to you as a receipt of {$grant_status} grant.</p>
<p>Processing of your grant application has been put on hold while we await further information from you.</p>
Grant Program Name: {$grant_programs} <br>
Grant Type : {$grant_type}<br>
Total Amount : {$grant.amount_total}<br>
Grant Type: {$grant_type}<br>
Total Amount: {$grant.amount_total|crmMoney:$currency}<br>
{if $grant.grant_incomplete_reason}
Grant Incomplete Reason:
{$grant.grant_incomplete_reason}<br>
Grant Incomplete Reason: {$grant.grant_incomplete_reason}<br>
{/if}
{if customField}
{foreach from=$customField key=key item=data}
<b>{$customGroup.$key}</b><br>
{foreach from=$data key=dkey item=ddata}
{$ddata.label} : {$ddata.value}<br>
{$ddata.label}: {$ddata.value}<br>
{/foreach}
{/foreach}
{/if}
......
Receipt for {$grant_status} Grant
Awaiting information regarding your {$grant_type} application
Dear {contact.display_name},
This is being sent to you as a receipt of {$grant_status} grant.
Grant Program Name: {$grant_programs} <br>
Grant Type {$grant_type}<br>
Total Amount: {$grant.amount_total}<br>
Processing of your grant application has been put on hold while we await further information from you.
Grant Program Name: {$grant_programs}
Grant Type: {$grant_type}<br>
Total Amount: {$grant.amount_total|crmMoney:$currency}
{if $grant.grant_incomplete_reason}
Grant Incomplete Reason:
{$grant.grant_incomplete_reason}<br>
Grant Incomplete Reason: {$grant.grant_incomplete_reason}
{/if}
{if customField}
{foreach from=$customField key=key item=data}
{$customGroup.$key}
{foreach from=$data key=dkey item=ddata}
{$ddata.label} : {$ddata.value}<br>
{$ddata.label}: {$ddata.value}<br>
{/foreach}
{/foreach}
{/if}
\ No newline at end of file
......@@ -10,15 +10,15 @@
{capture assign=valueStyle }style="padding: 4px; border-bottom: 1px solid #999;"{/capture}
<p>Dear {contact.display_name},</p>
<p>This is being sent to you as a receipt of {$grant_status} grant.</p>
<p>We have determined that the grant application below is eligible to receive an award. The actual amount to be awarded will be determined at a later date.</p>
Grant Program Name: {$grant_programs} <br>
Grant Type : {$grant_type}<br>
Total Amount : {$grant.amount_total}<br>
Grant Type: {$grant_type}<br>
Total Amount: {$grant.amount_total|crmMoney:$currency}<br>
{if customField}
{foreach from=$customField key=key item=data}
<b>{$customGroup.$key}</b><br>
{foreach from=$data key=dkey item=ddata}
{$ddata.label} : {$ddata.value}<br>
{$ddata.label}: {$ddata.value}<br>
{/foreach}
{/foreach}
{/if}
......
Receipt for {$grant_status} Grant
Your {$grant_type} grant application is eligible
Dear {contact.display_name},
This is being sent to you as a receipt of {$grant_status} grant.
We have determined that the grant application below is eligible to receive an award. The actual amount to be awarded will be determined at a later date.
Grant Program Name: {$grant_programs} <br>
Grant Type {$grant_type}
Total Amount: {$grant.amount_total}
Grant Type: {$grant_type}
Total Amount: {$grant.amount_total|crmMoney:$currency}
{if customField}
{foreach from=$customField key=key item=data}
{$customGroup.$key}
{foreach from=$data key=dkey item=ddata}
{$ddata.label} : {$ddata.value}<br>
{$ddata.label}: {$ddata.value}<br>
{/foreach}
{/foreach}
{/if}
\ No newline at end of file
......@@ -10,19 +10,18 @@
{capture assign=valueStyle }style="padding: 4px; border-bottom: 1px solid #999;"{/capture}
<p>Dear {contact.display_name},</p>
<p>This is being sent to you as a receipt of {$grant_status} grant.</p>
<p>We regret to inform you that the application below is ineligible.</p>
Grant Program Name: {$grant_programs} <br>
Grant Type : {$grant_type}<br>
Total Amount : {$grant.amount_total}<br>
Grant Type: {$grant_type}<br>
Total Amount: {$grant.amount_total|crmMoney:$currency}<br>
{if $grant.grant_rejected_reason}
Grant Ineligible Reason:
{$grant.$grant.grant_rejected_reason}<br>
Grant Ineligible Reason: {$grant.$grant.grant_rejected_reason}<br>
{/if}
{if customField}
{foreach from=$customField key=key item=data}
<b>{$customGroup.$key}</b><br>
{foreach from=$data key=dkey item=ddata}
{$ddata.label} : {$ddata.value}<br>
{$ddata.label}: {$ddata.value}<br>
{/foreach}
{/foreach}
{/if}
......
Receipt for {$grant_status} Grant
\ No newline at end of file
Your {$grant_type} Grant Application
\ No newline at end of file
Dear {contact.display_name},
This is being sent to you as a receipt of {$grant_status} grant.
We regret to inform you that the application below is ineligible.
Grant Program Name: {$grant_programs} <br>
Grant Type {$grant_type}
Total Amount: {$grant.amount_total}
Grant Type: {$grant_type}
Total Amount: {$grant.amount_total|crmMoney:$currency}
{if $grant.grant_rejected_reason}
Grant Ineligible Reason:
{$grant.grant_rejected_reason}<br>
Grant Ineligible Reason: {$grant.grant_rejected_reason}<br>
{/if}
{if customField}
{foreach from=$customField key=key item=data}
{$customGroup.$key}
{foreach from=$data key=dkey item=ddata}
{$ddata.label} : {$ddata.value}<br>
{$ddata.label}: {$ddata.value}<br>
{/foreach}
{/foreach}
{/if}
\ No newline at end of file
......@@ -10,15 +10,15 @@
{capture assign=valueStyle }style="padding: 4px; border-bottom: 1px solid #999;"{/capture}
<p>Dear {contact.display_name},</p>
<p>This is being sent to you as a receipt of {$grant_status} grant.</p>
<p>~We have just created a payment for the application listed below.</p>
Grant Program Name: {$grant_programs} <br>
Grant Type : {$grant_type}<br>
Total Amount : {$grant.amount_total}<br>
Grant Type: {$grant_type}<br>
Total Amount: {$grant.amount_total|crmMoney:$currency}<br>
{if customField}
{foreach from=$customField key=key item=data}
<b>{$customGroup.$key}</b><br>
{foreach from=$data key=dkey item=ddata}
{$ddata.label} : {$ddata.value}<br>
{$ddata.label}: {$ddata.value}<br>
{/foreach}
{/foreach}
{/if}
......
Dear {contact.display_name},
This is being sent to you as a receipt of {$grant_status} grant.
We have just created a payment for the application listed below.
Grant Program Name: {$grant_programs} <br>
Grant Type {$grant_type}
Total Amount: {$grant.amount_total}
Grant Type: {$grant_type}
Total Amount: {$grant.amount_total|crmMoney:$currency}
{if customField}
{foreach from=$customField key=key item=data}
{$customGroup.$key}
{foreach from=$data key=dkey item=ddata}
{$ddata.label} : {$ddata.value}<br>
{$ddata.label}: {$ddata.value}<br>
{/foreach}
{/foreach}
{/if}
\ No newline at end of file
......@@ -13,14 +13,14 @@
</tr>
<tr>
<td width="85%">total_in_words</td><td width="15%" style="float:right; text-align:right;">check_total</td>
</tr>
</tr>
</table>
</div>
<div style="height:60px" >
<table width="100%" cellpadding=0 cellspacing=0 ;">
<tr>
<td width="100%">payable_to_name</td>
</tr>
</tr>
<tr>
<td width="100%">payable_to_address</td>
</tr>
......@@ -34,14 +34,14 @@
</table>
</div>
<div style="height:300px" >
<div style="float:right; text-align:right;"> payment_id </div>
<div style="float:right; text-align:right;"> payment_id </div>
<table width="100%" cellpadding=0 cellspacing=0 >
<tr><td width="100%" colspan="4">RE: payment_reason</td></tr>
<tr><td width="15%">Payment Date</td><td width="15%">Grant ID</td><td width="50%">Payee</td><td width="20%">Amount</td></tr>
<tr><td width="15%">payment_details</td> </tr>
<tr><td width="15%">payment_details</td> </tr>
<tr>
<td width="15%"></td><td width="15%%"></td><td width="50%" style="text-align:right;" >Total Amount&nbsp;&nbsp;&nbsp;&nbsp;</td><td width="15%" >CAD :amount</td>
</tr>
<td width="15%"></td><td width="15%%"></td><td width="50%" style="text-align:right;" >Total Amount&nbsp;&nbsp;&nbsp;&nbsp;</td><td width="15%" >currency amount</td>
</tr>
</table>
</div>
<div style="height:265px" >
......@@ -50,10 +50,10 @@
<tr><td width="100%" colspan="4">RE: payment_reason</td></tr>
<tr><td width="15%">Payment Date</td><td width="15%">Grant ID</td><td width="50%">Payee</td><td width="20%">Amount</td></tr>
<tr><td width="15%">payment_details</td>
</tr>
</tr>
<tr>
<td width="15%"></td><td width="15%%"></td><td width="50%" style="text-align:right; ">Total Amount&nbsp;&nbsp;&nbsp;&nbsp;</td><td width="20%" >CAD :amount</td>
</tr>
<td width="15%"></td><td width="15%%"></td><td width="50%" style="text-align:right; ">Total Amount&nbsp;&nbsp;&nbsp;&nbsp;</td><td width="20%" >currency amount</td>
</tr>
</table>
</div>
</body>
......
......@@ -7,21 +7,21 @@
<body>
{assign var='page' value=1}
<div style="float:right; text-align:right; margin-top:-50px;"> Page: {$page} </div>
<table width="100%" cellpadding=0 cellspacing=0 >
<table width="100%" cellpadding=0 cellspacing=0 >
<tr>
<td width="50%" align="right"><b><font size="2">{$domain_name}</font></b></td><td width="25%" align="right" ><b><font size="2">Run By :</font></b></td><td width="25%" align="left" ><font size="2">{$contact}</font></td>
<td width="50%" align="right"><b><font size="2">{$domain_name}</font></b></td><td width="25%" align="right" ><b><font size="2">Run By:</font></b></td><td width="25%" align="left" ><font size="2">{$contact}</font></td>
</tr>
<tr>
<td width="50%" align="right"></td><td width="25%" align="right" ><b><font size="2">Date :</font></b></td><td width="25%" align="left" ><font size="2">{$date}</font></td>
<td width="50%" align="right"></td><td width="25%" align="right" ><b><font size="2">Date:</font></b></td><td width="25%" align="left" ><font size="2">{$date}</font></td>
</tr>
<tr>
<td width="50%" align="right"><b><font size="2">A/P Cheque Register</font></b></td><td width="25%" align="right" ><b><font size="2">Time :</font></b></td><td width="25%" align="left" ><font size="2">{$time}</font></td>
</tr>
<td width="50%" align="right"><b><font size="2">A/P Cheque Register</font></b></td><td width="25%" align="right" ><b><font size="2">Time:</font></b></td><td width="25%" align="left" ><font size="2">{$time}</font></td>
</tr>
</table>
</br>
<table width="100%" cellpadding=0 cellspacing=0 >
<table width="100%" cellpadding=0 cellspacing=0 >
<tr>
<td width="25%" align="center" ><b><font size="2">Batch ID:{$batch_number}</font></b></td><td width="25%" align="center" ><b><font size="2">Currency: CAD</font></b></td><td width="25%" align="center" ><b><font size="2">Accounting Year: 2012</font></b></td>
<td width="25%" align="center" ><b><font size="2">Batch ID:{$batch_number}</font></b></td><td width="25%" align="center" ><b><font size="2">Currency: {$currency}</font></b></td><td width="25%" align="center" ><b><font size="2">Accounting Year: 2012</font></b></td>
</tr>
</table> <hr/></br></br>
<table width="100%" cellpadding=0 cellspacing=0 >
......@@ -37,23 +37,23 @@
<tr style="page-break-after:always">
<td width="10%"><font size="2">{$data.payment_number}</font></td><td width="10%"><font size="2">{$key}</font></td><td width="20%"><font size="2">{$data.payable_to_name}</font></td><td width="25%" align="center" ><b><font size="2">Account:{$data.account_name}</font></b></td><td width="12%" align="right" ><font size="2" >{$data.amount}&nbsp;</font></td><td width="12%"><font size="2">{$data.payment_date}</font></td><td width="15%"><font size="2">&nbsp;{$contact}</font></td><td width="14%"><font size="2">{$data.payment_created_date}</font></td><td width="12%" ><font size="2">{$data.replaces_payment_id}</font></td>
</tr>
</table>
</table>
<div style="float:right; text-align:right; margin-top:-50px;"> Page: {$page} </div>
<table width="100%" cellpadding=0 cellspacing=0 >
<table width="100%" cellpadding=0 cellspacing=0 >
<tr>
<td width="50%" align="right"><b><font size="2">{$domain_name}</font></b></td><td width="25%" align="right" ><b><font size="2">Run By :</font></b></td><td width="25%" align="left" ><font size="2">{$contact}</font></td>
<td width="50%" align="right"><b><font size="2">{$domain_name}</font></b></td><td width="25%" align="right" ><b><font size="2">Run By:</font></b></td><td width="25%" align="left" ><font size="2">{$contact}</font></td>
</tr>
<tr>
<td width="50%" align="right"></td><td width="25%" align="right" ><b><font size="2">Date :</font></b></td><td width="25%" align="left" ><font size="2">{$date}</font></td>
<td width="50%" align="right"></td><td width="25%" align="right" ><b><font size="2">Date:</font></b></td><td width="25%" align="left" ><font size="2">{$date}</font></td>
</tr>
<tr>
<td width="50%" align="right"><b><font size="2">A/P Cheque Register</font></b></td><td width="25%" align="right" ><b><font size="2">Time :</font></b></td><td width="25%" align="left" ><font size="2">{$time}</font></td>
</tr>
<td width="50%" align="right"><b><font size="2">A/P Cheque Register</font></b></td><td width="25%" align="right" ><b><font size="2">Time:</font></b></td><td width="25%" align="left" ><font size="2">{$time}</font></td>
</tr>
</table>
</br>
<table width="100%" cellpadding=0 cellspacing=0 >
<table width="100%" cellpadding=0 cellspacing=0 >
<tr>
<td width="25%" align="center" ><b><font size="2">Batch ID:{$batch_number}</font></b></td><td width="25%" align="center" ><b><font size="2">Currency: CAD</font></b></td><td width="25%" align="center" ><b><font size="2">Account:{$account_name}</font></b></td><td width="25%" align="center" ><b><font size="2">Accounting Year: 2012</font></b></td>
<td width="25%" align="center" ><b><font size="2">Batch ID:{$batch_number}</font></b></td><td width="25%" align="center" ><b><font size="2">Currency: {$currency}</font></b></td><td width="25%" align="center" ><b><font size="2">Account:{$account_name}</font></b></td><td width="25%" align="center" ><b><font size="2">Accounting Year: 2012</font></b></td>
</tr>
</table> <hr/></br></br>
<table width="100%" cellpadding=0 cellspacing=0 >
......@@ -69,11 +69,11 @@
{assign var='count' value=$count+1}
{/foreach}
{/if}
</table>
</table>
<br><br><hr>
<table width="100%" cellpadding=0 cellspacing=0 >
<tr><td colspan="2"><b>Statistics:</b></td></tr>
<tr><td width="50%">Number of cheques : {$total_payments}</td><td width="50%">Total amount : {$total_amount} </td></tr>
</table>
<tr><td colspan="2"><b>Statistics:</b></td></tr>
<tr><td width="50%">Number of cheques: {$total_payments}</td><td width="50%">Total amount: {$total_amount} </td></tr>
</table>
</body>
</html>
\ No newline at end of file
......@@ -10,15 +10,15 @@
{capture assign=valueStyle }style="padding: 4px; border-bottom: 1px solid #999;"{/capture}
<p>Dear {contact.display_name},</p>
<p>This is being sent to you as a receipt of {$grant_status} grant.</p>
<p>This is to let you know that we have received your application as detailed below.</p>
Grant Program Name: {$grant_programs} <br>
Grant Type : {$grant_type}<br>
Total Amount : {$grant.amount_total}<br>
Grant Type: {$grant_type}<br>
Total Amount: {$grant.amount_total|crmMoney:$currency}<br>
{if customField}
{foreach from=$customField key=key item=data}
<b>{$customGroup.$key}</b><br>
{foreach from=$data key=dkey item=ddata}
{$ddata.label} : {$ddata.value}<br>
{$ddata.label}: {$ddata.value}<br>
{/foreach}
{/foreach}
{/if}
......
Dear {contact.display_name},
This is being sent to you as a receipt of {$grant_status} grant.
This is to let you know that we have received your application as detailed below.
Grant Program Name: {$grant_programs} <br>
Grant Type {$grant_type}
Total Amount: {$grant.amount_total}
Grant Type: {$grant_type}
Total Amount: {$grant.amount_total|crmMoney:$currency}
{if customField}
{foreach from=$customField key=key item=data}
{$customGroup.$key}
{foreach from=$data key=dkey item=ddata}
{$ddata.label} : {$ddata.value}<br>
{$ddata.label}: {$ddata.value}<br>
{/foreach}
{/foreach}
{/if}
\ No newline at end of file
......@@ -10,15 +10,15 @@
{capture assign=valueStyle }style="padding: 4px; border-bottom: 1px solid #999;"{/capture}
<p>Dear {contact.display_name},</p>
<p>This is being sent to you as a receipt of {$grant_status} grant.</p>
Grant Program Name : {$grant_programs} <br>
Grant Type : {$grant_type}<br>
Total Amount : {$grant.amount_total}<br>
<p>Thank you for the notification that you want the grant application below and any associated award to be withdrawn. We have completed the withdrawal now.</p>
Grant Program Name: {$grant_programs} <br>
Grant Type: {$grant_type}<br>
Total Amount: {$grant.amount_total|crmMoney:$currency}<br>
{if customField}
{foreach from=$customField key=key item=data}
<b>{$customGroup.$key}</b><br>
{foreach from=$data key=dkey item=ddata}
{$ddata.label} : {$ddata.value}<br>
{$ddata.label}: {$ddata.value}<br>
{/foreach}
{/foreach}
{/if}
......
Receipt for {$grant_status} Grant
\ No newline at end of file
Withdrawal of Grant Application
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment