Merge pull request #15492 from eileenmcnaughton/credit
[civicrm-core.git] / xml / templates / message_templates / contribution_offline_receipt_text.tpl
1 {if $formValues.receipt_text}
2 {$formValues.receipt_text}
3 {else}{ts}Thank you for your support.{/ts}{/if}
4
5
6 ===========================================================
7 {ts}Contribution Information{/ts}
8
9 ===========================================================
10 {ts}Financial Type{/ts}: {$formValues.contributionType_name}
11 {if $lineItem}
12 {foreach from=$lineItem item=value key=priceset}
13 ---------------------------------------------------------
14 {capture assign=ts_item}{ts}Item{/ts}{/capture}
15 {capture assign=ts_qty}{ts}Qty{/ts}{/capture}
16 {capture assign=ts_each}{ts}Each{/ts}{/capture}
17 {if $getTaxDetails}
18 {capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}
19 {capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}
20 {capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}
21 {/if}
22 {capture assign=ts_total}{ts}Total{/ts}{/capture}
23 {$ts_item|string_format:"%-30s"} {$ts_qty|string_format:"%5s"} {$ts_each|string_format:"%10s"} {if $getTaxDetails} {$ts_subtotal|string_format:"%10s"} {$ts_taxRate} {$ts_taxAmount|string_format:"%10s"} {/if} {$ts_total|string_format:"%10s"}
24 ----------------------------------------------------------
25 {foreach from=$value item=line}
26 {capture assign=ts_item}{if $line.html_type eq 'Text'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:"..."|string_format:"%-30s"} {$line.qty|string_format:"%5s"} {$line.unit_price|crmMoney:$currency|string_format:"%10s"} {if $getTaxDetails}{$line.unit_price*$line.qty|crmMoney:$currency|string_format:"%10s"} {if $line.tax_rate != "" || $line.tax_amount != ""} {$line.tax_rate|string_format:"%.2f"} % {$line.tax_amount|crmMoney:$currency|string_format:"%10s"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:"%10s"}
27 {/foreach}
28 {/foreach}
29 {/if}
30
31 {if $getTaxDetails && $dataArray}
32 {ts}Amount before Tax{/ts} : {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}
33
34 {foreach from=$dataArray item=value key=priceset}
35 {if $priceset || $priceset == 0 || $value != ''}
36 {$taxTerm} {$priceset|string_format:"%.2f"}% : {$value|crmMoney:$currency}
37 {else}
38 {ts}No{/ts} {$taxTerm} : {$value|crmMoney:$currency}
39 {/if}
40 {/foreach}
41 {/if}
42
43 {if isset($totalTaxAmount) && $totalTaxAmount !== 'null'}
44 {ts}Total Tax Amount{/ts} : {$totalTaxAmount|crmMoney:$currency}
45 {/if}
46 {ts}Total Amount{/ts} : {$formValues.total_amount|crmMoney:$currency}
47 {if $receive_date}
48 {ts}Date Received{/ts}: {$receive_date|truncate:10:''|crmDate}
49 {/if}
50 {if $receipt_date}
51 {ts}Receipt Date{/ts}: {$receipt_date|truncate:10:''|crmDate}
52 {/if}
53 {if $formValues.paidBy and !$formValues.hidden_CreditCard}
54 {ts}Paid By{/ts}: {$formValues.paidBy}
55 {if $formValues.check_number}
56 {ts}Check Number{/ts}: {$formValues.check_number}
57 {/if}
58 {/if}
59 {if $formValues.trxn_id}
60 {ts}Transaction ID{/ts}: {$formValues.trxn_id}
61 {/if}
62
63 {if $ccContribution}
64 ===========================================================
65 {ts}Billing Name and Address{/ts}
66
67 ===========================================================
68 {$billingName}
69 {$address}
70
71 ===========================================================
72 {ts}Credit Card Information{/ts}
73
74 ===========================================================
75 {$credit_card_type}
76 {$credit_card_number}
77 {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:''|crmDate}
78 {/if}
79 {if $customGroup}
80 {foreach from=$customGroup item=value key=customName}
81 ===========================================================
82 {$customName}
83 ===========================================================
84 {foreach from=$value item=v key=n}
85 {$n}: {$v}
86 {/foreach}
87 {/foreach}
88 {/if}
89
90 {if $softCreditTypes and $softCredits}
91 {foreach from=$softCreditTypes item=softCreditType key=n}
92 ===========================================================
93 {$softCreditType}
94 ===========================================================
95 {foreach from=$softCredits.$n item=value key=label}
96 {$label}: {$value}
97 {/foreach}
98 {/foreach}
99 {/if}
100
101 {if $formValues.product_name}
102 ===========================================================
103 {ts}Premium Information{/ts}
104
105 ===========================================================
106 {$formValues.product_name}
107 {if $formValues.product_option}
108 {ts}Option{/ts}: {$formValues.product_option}
109 {/if}
110 {if $formValues.product_sku}
111 {ts}SKU{/ts}: {$formValues.product_sku}
112 {/if}
113 {if $fulfilled_date}
114 {ts}Sent{/ts}: {$fulfilled_date|crmDate}
115 {/if}
116 {/if}