Merge remote-tracking branch 'upstream/4.6' into 4.6-master-2015-08-24-22-26-45
[civicrm-core.git] / templates / CRM / Contribute / Form / Task / Invoice.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.7 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2015 |
6 +--------------------------------------------------------------------+
7 | This file is a part of CiviCRM. |
8 | |
9 | CiviCRM is free software; you can copy, modify, and distribute it |
10 | under the terms of the GNU Affero General Public License |
11 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
12 | |
13 | CiviCRM is distributed in the hope that it will be useful, but |
14 | WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
16 | See the GNU Affero General Public License for more details. |
17 | |
18 | You should have received a copy of the GNU Affero General Public |
19 | License and the CiviCRM Licensing Exception along |
20 | with this program; if not, contact CiviCRM LLC |
21 | at info[AT]civicrm[DOT]org. If you have questions about the |
22 | GNU Affero General Public License or the licensing of CiviCRM, |
23 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
24 +--------------------------------------------------------------------+
25 *}
26 <div class="messages status no-popup">
27 <div class="icon inform-icon"></div>
28 {include file="CRM/Contribute/Form/Task.tpl"}
29 </div>
30 {if $selectedOutput ne 'email'}
31 <div id="help">
32 {ts}You may choose to email invoice to contributors OR download a PDF file containing one invoice per page to your local computer by clicking <strong>Process Invoice(s)</strong> . Your browser may display the file for you automatically, or you may need to open it for printing using any PDF reader (such as Adobe&reg; Reader).{/ts}
33 </div>
34 {/if}
35
36 <table class="form-layout-compressed">
37 {if $selectedOutput ne 'email'}
38 <tr>
39 <td>{$form.output.email_invoice.html}</td>
40 </tr>
41 {/if}
42 <tr class="crm-email-element">
43 <td>{$form.from_email_address.label}{$form.from_email_address.html}{help id ="id-from_email" isAdmin=$isAdmin}</td>
44 </tr>
45 <tr class="crm-email-element">
46 <td>{$form.email_comment.label}{$form.email_comment.html}</td>
47 </tr>
48 {if $selectedOutput ne 'email'}
49 <tr>
50 <td>{$form.output.pdf_invoice.html}</td>
51 </tr>
52 {/if}
53 <tr class="crm-pdf-element">
54 <td>{$form.pdf_format_id.html} {$form.pdf_format_id.label} </td>
55 </tr>
56 </table>
57
58 <div class="spacer"></div>
59 <div class="crm-submit-buttons">
60 {$form.buttons.html}
61 </div>
62
63
64 <script type="text/javascript">
65 {literal}
66 CRM.$(function ($) {
67 var o = $('input[name="output"]');
68 if (o.length > 1) {
69 $('.crm-email-element').hide();
70 showhideEmailElements();
71 o.on('click', showhideEmailElements);
72 }
73 else {
74 $('.crm-email-element').show();
75 }
76
77 function showhideEmailElements() {
78 if ($('input[name="output"]:checked').val() == 'email_invoice') {
79 $('.crm-email-element').show();
80 $('.crm-pdf-element').hide();
81 }
82 else {
83 $('.crm-pdf-element').show();
84 $('.crm-email-element').hide();
85 }
86 }
87 });
88 {/literal}
89 </script>
90