Merge pull request #4737 from eileenmcnaughton/master
[civicrm-core.git] / templates / CRM / Price / Form / Calculate.tpl
CommitLineData
6a488035
TO
1{*
2 +--------------------------------------------------------------------+
819d0d41 3 | CiviCRM version 4.5 |
6a488035 4 +--------------------------------------------------------------------+
819d0d41 5 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
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*}
bc2eeabb 26{if $noCalcValueDisplay neq 'false'}
6a488035
TO
27<div id="pricesetTotal" class="crm-section section-pricesetTotal">
28 <div class="label" id="pricelabel"><label>
ff2c2c38 29 {if ( $extends eq 'Contribution' ) || ( $extends eq 'Membership' )}
391ab162 30 {ts}Total Amount{/ts}{else}{ts}Total Fee(s){/ts}
7f7fa13a 31 {if $isAdditionalParticipants} {ts}for this participant{/ts}{/if}
ff2c2c38 32 {/if}</label></div>
71447ba5 33 <div class="content calc-value" id="pricevalue" ></div>
6a488035 34</div>
bc2eeabb 35{/if}
6a488035
TO
36<script type="text/javascript">
37{literal}
38
39var totalfee = 0;
40var thousandMarker = '{/literal}{$config->monetaryThousandSeparator}{literal}';
41var seperator = '{/literal}{$config->monetaryDecimalPoint}{literal}';
42var symbol = '{/literal}{$currencySymbol}{literal}';
43var optionSep = '|';
44var priceSet = price = Array( );
45cj("input,#priceset select,#priceset").each(function () {
46
47 if ( cj(this).attr('price') ) {
48 var eleType = cj(this).attr('type');
49 if ( this.tagName == 'SELECT' ) {
50 eleType = 'select-one';
51 }
52 switch( eleType ) {
53
54 case 'checkbox':
55
56 //default calcution of element.
57 eval( 'var option = ' + cj(this).attr('price') ) ;
58 ele = option[0];
59 optionPart = option[1].split(optionSep);
60 addprice = parseFloat( optionPart[0] );
61
8539f25d 62 if( cj(this).prop('checked') ) {
6a488035
TO
63 totalfee += addprice;
64 price[ele] += addprice;
65 }
66
67 //event driven calculation of element.
68 cj(this).click( function(){
69
8539f25d 70 if ( cj(this).prop('checked') ) {
6a488035
TO
71 totalfee += addprice;
72 price[ele] += addprice;
73 } else {
74 totalfee -= addprice;
75 price[ele] -= addprice;
76 }
77 display( totalfee );
78 });
79 display( totalfee );
80 break;
81
82 case 'radio':
83
84 //default calcution of element.
85 eval( 'var option = ' + cj(this).attr('price') );
86 ele = option[0];
87 optionPart = option[1].split(optionSep);
88 addprice = parseFloat( optionPart[0] );
89 if ( ! price[ele] ) {
90 price[ele] = 0;
91 }
92
8539f25d 93 if( cj(this).prop('checked') ) {
6a488035
TO
94 totalfee = parseFloat(totalfee) + addprice - parseFloat(price[ele]);
95 price[ele] = addprice;
96 }
97
98 //event driven calculation of element.
99 cj(this).click( function(){
100 totalfee = parseFloat(totalfee) + addprice - parseFloat(price[ele]);
101 price[ele] = addprice;
102
103 display( totalfee );
104 });
105 display( totalfee );
106 break;
107
108 case 'text':
109
110 //default calcution of element.
f8721977 111 calculateText( this );
6a488035
TO
112
113 //event driven calculation of element.
114 cj(this).bind( 'keyup', function() { calculateText( this );
115 }).bind( 'blur' , function() { calculateText( this );
116 });
f8721977 117
118 break;
6a488035
TO
119
120 case 'select-one':
121
122 //default calcution of element.
123 var ele = cj(this).attr('id');
124 if ( ! price[ele] ) {
125 price[ele] = 0;
126 }
127 eval( 'var selectedText = ' + cj(this).attr('price') );
128 var addprice = 0;
129 if ( cj(this).val( ) ) {
130 optionPart = selectedText[cj(this).val( )].split(optionSep);
131 addprice = parseFloat( optionPart[0] );
132 }
133
134 if ( addprice ) {
135 totalfee = parseFloat(totalfee) + addprice - parseFloat(price[ele]);
136 price[ele] = addprice;
137 }
138
139 //event driven calculation of element.
140 cj(this).change( function() {
141 var ele = cj(this).attr('id');
142 if ( ! price[ele] ) {
143 price[ele] = 0;
144 }
145 eval( 'var selectedText = ' + cj(this).attr('price') );
146
147 var addprice = 0;
148 if ( cj(this).val( ) ) {
149 optionPart = selectedText[cj(this).val( )].split(optionSep);
150 addprice = parseFloat( optionPart[0] );
151 }
152
153 if ( addprice ) {
154 totalfee = parseFloat(totalfee) + addprice - parseFloat(price[ele]);
155 price[ele] = addprice;
156 } else {
157 totalfee = parseFloat(totalfee) - parseFloat(price[ele]);
158 price[ele] = parseFloat('0');
159 }
160 display( totalfee );
161 });
162 display( totalfee );
163 break;
164 }
165 }
166});
167
168//calculation for text box.
169function calculateText( object ) {
f8721977 170 var textval = parseFloat( cj(object).val() );
171
172 eval( 'var option = '+ cj(object).attr('price') );
173 ele = option[0];
174 if ( ! price[ele] ) {
175 price[ele] = 0;
176 }
177 optionPart = option[1].split(optionSep);
178 addprice = parseFloat( optionPart[0] );
179 var curval = textval * addprice;
180 if ( textval >= 0 ) {
181 totalfee = parseFloat(totalfee) + curval - parseFloat(price[ele]);
182 price[ele] = curval;
183 }
184 else {
185 totalfee = parseFloat(totalfee) - parseFloat(price[ele]);
186 price[ele] = parseFloat('0');
187 }
188 display( totalfee );
6a488035 189}
1a0d17b9
PJ
190{/literal}
191{if $displayOveride neq 'true'}
192{literal}
6a488035
TO
193//display calculated amount
194function display( totalfee ) {
b1525e97
DL
195 // totalfee is monetary, round it to 2 decimal points so it can
196 // go as a float - CRM-13491
197 totalfee = Math.round(totalfee*100)/100;
6a488035
TO
198 var totalEventFee = formatMoney( totalfee, 2, seperator, thousandMarker);
199 document.getElementById('pricevalue').innerHTML = "<b>"+symbol+"</b> "+totalEventFee;
200 scriptfee = totalfee;
201 scriptarray = price;
202 cj('#total_amount').val( totalfee );
0b2b2583 203 cj('#pricevalue').data('raw-total', totalfee).trigger('change');
6a488035
TO
204
205 ( totalfee < 0 ) ? cj('table#pricelabel').addClass('disabled') : cj('table#pricelabel').removeClass('disabled');
e85ea630
LS
206 if (typeof skipPaymentMethod == 'function') {
207 skipPaymentMethod();
208 }
6a488035 209}
1a0d17b9
PJ
210{/literal}
211{/if}
212{literal}
6a488035
TO
213//money formatting/localization
214function formatMoney (amount, c, d, t) {
215var n = amount,
216 c = isNaN(c = Math.abs(c)) ? 2 : c,
217 d = d == undefined ? "," : d,
218 t = t == undefined ? "." : t, s = n < 0 ? "-" : "",
219 i = parseInt(n = Math.abs(+n || 0).toFixed(c)) + "",
220 j = (j = i.length) > 3 ? j % 3 : 0;
221 return s + (j ? i.substr(0, j) + t : "") + i.substr(j).replace(/(\d{3})(?=\d)/g, "$1" + t) + (c ? d + Math.abs(n - i).toFixed(c).slice(2) : "");
222}
223
224{/literal}
225</script>