Merge branch '4.5' into 4.6
[civicrm-core.git] / templates / CRM / Event / Form / Participant.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.6 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2014 |
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 {* This template is used for adding/editing/deleting offline Event Registrations *}
27
28 {* Ajax callback for showing event fee snippet *}
29 {if $showFeeBlock}
30 {if $priceSet}
31 <div id='validate_pricefield' class='messages crm-error hiddenElement'></div>
32 {literal}
33 <script type="text/javascript">
34
35 var fieldOptionsFull = [];
36 {/literal}
37 {foreach from=$priceSet.fields item=fldElement key=fldId}
38 {if $fldElement.options}
39 {foreach from=$fldElement.options item=fldOptions key=opId}
40 {if $fldOptions.is_full}
41 {literal}
42 fieldOptionsFull[{/literal}{$fldId}{literal}] = [];
43 fieldOptionsFull[{/literal}{$fldId}{literal}][{/literal}{$opId}{literal}] = 1;
44 {/literal}
45 {/if}
46 {/foreach}
47 {/if}
48 {/foreach}
49 {literal}
50
51 if ( fieldOptionsFull.length > 0 ) {
52 CRM.$(function($) {
53 $("input,#priceset select,#priceset").each(function () {
54 if ( $(this).attr('price') ) {
55 switch( $(this).attr('type') ) {
56 case 'checkbox':
57 case 'radio':
58 $(this).click( function() {
59 validatePriceField(this);
60 });
61 break;
62
63 case 'select-one':
64 $(this).change( function() {
65 validatePriceField(this);
66 });
67 break;
68 case 'text':
69 $(this).bind( 'keyup', function() { validatePriceField(this) });
70 break;
71 }
72 }
73 });
74 });
75
76 function validatePriceField( obj ) {
77 var namePart = cj(obj).attr('name').split('_');
78 var fldVal = cj(obj).val();
79 if ( cj(obj).attr('type') == 'checkbox') {
80 var eleIdpart = namePart[1].split('[');
81 var eleId = eleIdpart[0];
82 }
83 else {
84 var eleId = namePart[1];
85 }
86 var showError = false;
87
88 switch( cj(obj).attr('type') ) {
89 case 'text':
90 if ( fieldOptionsFull[eleId] && fldVal ) {
91 showError = true;
92 cj(obj).parent( ).parent( ).children('.label').addClass('crm-error');
93 }
94 else {
95 cj(obj).parent( ).parent( ).children('.label').removeClass('crm-error');
96 cj('#validate_pricefield').hide( ).html('');
97 }
98 break;
99
100 case 'checkbox':
101 var checkBoxValue = eleIdpart[1].split(']');
102 if ( cj(obj).prop("checked") == true &&
103 fieldOptionsFull[eleId] &&
104 fieldOptionsFull[eleId][checkBoxValue[0]]) {
105 showError = true;
106 cj(obj).parent( ).addClass('crm-error');
107 }
108 else {
109 cj(obj).parent( ).removeClass('crm-error');
110 }
111 break;
112
113 default:
114 if ( fieldOptionsFull[eleId] &&
115 fieldOptionsFull[eleId][fldVal] ) {
116 showError = true;
117 cj(obj).parent( ).addClass('crm-error');
118 }
119 else {
120 cj(obj).parent( ).removeClass('crm-error');
121 }
122 }
123
124 if ( showError ) {
125 cj('#validate_pricefield').show().html("<span class='icon red-icon ui-icon-alert'></span>{/literal}{ts escape='js'}This Option is already full for this event.{/ts}{literal}");
126 }
127 else {
128 cj('#validate_pricefield').hide( ).html('');
129 }
130 }
131 }
132
133 // change the status to default 'partially paid' for partial payments
134 var feeAmount, userModifiedAmount;
135 var partiallyPaidStatusId = {/literal}{$partiallyPaidStatusId}{literal};
136
137 cj('#total_amount')
138 .focus(
139 function() {
140 feeAmount = cj(this).val();
141 feeAmount = parseInt(feeAmount);
142 }
143 )
144 .change(
145 function() {
146 userModifiedAmount = cj(this).val();
147 userModifiedAmount = parseInt(userModifiedAmount);
148 if (userModifiedAmount < feeAmount) {
149 cj('#status_id').val(partiallyPaidStatusId).change();
150 }
151 }
152 );
153
154 cj('form[name=Participant]').on("click", '.validate',
155 function(e) {
156 var userSubmittedStatus = cj('#status_id').val();
157 var statusLabel = cj('#status_id option:selected').text();
158 if (userModifiedAmount < feeAmount && userSubmittedStatus != partiallyPaidStatusId) {
159 var msg = "{/literal}{ts escape="js" 1="%1"}Payment amount is less than the amount owed. Expected participant status is 'Partially paid'. Are you sure you want to set the participant status to %1? Click OK to continue, Cancel to change your entries.{/ts}{literal}";
160 var result = confirm(ts(msg, {1: statusLabel}));
161 if (result == false) {
162 return false;
163 }
164 }
165 }
166 );
167 </script>
168 {/literal}
169 {/if}
170
171 {include file="CRM/Event/Form/EventFees.tpl"}
172
173 {* Ajax callback for custom data snippet *}
174 {elseif $cdType}
175 {include file="CRM/Custom/Form/CustomData.tpl"}
176
177 {* Main event form template *}
178 {else}
179 {if $participantMode == 'test' }
180 {assign var=registerMode value="TEST"}
181 {elseif $participantMode == 'live'}
182 {assign var=registerMode value="LIVE"}
183 {/if}
184 <div class="crm-block crm-form-block crm-participant-form-block">
185 <div class="view-content">
186 {if $participantMode}
187 <div id="help">
188 {ts 1=$displayName 2=$registerMode}Use this form to submit an event registration on behalf of %1. <strong>A %2 transaction will be submitted</strong> using the selected payment processor.{/ts}
189 </div>
190 {/if}
191 <div id="eventFullMsg" class="messages status no-popup" style="display:none;"></div>
192
193
194 {if $action eq 1 AND $paid}
195 <div id="help">
196 {ts}If you are accepting offline payment from this participant, check <strong>Record Payment</strong>. You will be able to fill in the payment information, and optionally send a receipt.{/ts}
197 </div>
198 {/if}
199
200 {if $action eq 8} {* If action is Delete *}
201 <div class="crm-participant-form-block-delete messages status no-popup">
202 <div class="crm-content">
203 <div class="icon inform-icon"></div> &nbsp;
204 {ts}WARNING: Deleting this registration will result in the loss of related payment records (if any).{/ts} {ts}Do you want to continue?{/ts}
205 </div>
206 {if $additionalParticipant}
207 <div class="crm-content">
208 {ts 1=$additionalParticipant} There are %1 more Participant(s) registered by this participant.{/ts}
209 </div>
210 {/if}
211 </div>
212 {if $additionalParticipant}
213 {$form.delete_participant.html}
214 {/if}
215 {else} {* If action is other than Delete *}
216 <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="top"}</div>
217 <table class="form-layout-compressed">
218 {if $single and $context neq 'standalone'}
219 <tr class="crm-participant-form-block-displayName">
220 <td class="label font-size12pt"><label>{ts}Participant{/ts}</label></td>
221 <td class="font-size12pt view-value">{$displayName}&nbsp;</td>
222 </tr>
223 {else}
224 <tr class="crm-participant-form-contact-id">
225 <td class="label">{$form.contact_id.label}</td>
226 <td>{$form.contact_id.html}</td>
227 </tr>
228 {/if}
229 {if $action EQ 2}
230 {if $additionalParticipants} {* Display others registered by this participant *}
231 <tr class="crm-participant-form-block-additionalParticipants">
232 <td class="label"><label>{ts}Also Registered by this Participant{/ts}</label></td>
233 <td>
234 {foreach from=$additionalParticipants key=apName item=apURL}
235 <a href="{$apURL}" title="{ts}view additional participant{/ts}">{$apName}</a><br />
236 {/foreach}
237 </td>
238 </tr>
239 {/if}
240 {if $registered_by_contact_id}
241 <tr class="crm-participant-form-block-registered-by">
242 <td class="label"><label>{ts}Registered By{/ts}</label></td>
243 <td class="view-value">
244 <a href="{crmURL p='civicrm/contact/view/participant' q="reset=1&id=$participant_registered_by_id&cid=$registered_by_contact_id&action=view"}"
245 title="{ts}view primary participant{/ts}">{$registered_by_display_name}</a>
246 </td>
247 </tr>
248 {/if}
249 {/if}
250 {if $participantMode}
251 <tr class="crm-participant-form-block-payment_processor_id">
252 <td class="label nowrap">{$form.payment_processor_id.label}</td>
253 <td>{$form.payment_processor_id.html}</td>
254 </tr>
255 {/if}
256 <tr class="crm-participant-form-block-event_id">
257 <td class="label">{$form.event_id.label}</td>
258 <td class="view-value">
259 {$form.event_id.html}
260 {if $is_test}
261 {ts}(test){/ts}
262 {/if}
263 </td>
264 </tr>
265
266 {* CRM-7362 --add campaign *}
267 {include file="CRM/Campaign/Form/addCampaignToComponent.tpl" campaignTrClass="crm-participant-form-block-campaign_id"}
268
269 <tr class="crm-participant-form-block-role_id">
270 <td class="label">{$form.role_id.label}</td>
271 <td>{$form.role_id.html}</td>
272 </tr>
273 <tr class="crm-participant-form-block-register_date">
274 <td class="label">{$form.register_date.label}</td>
275 <td>
276 {if $hideCalendar neq true}
277 {include file="CRM/common/jcalendar.tpl" elementName=register_date}
278 {else}
279 {$form.register_date.value|crmDate}
280 {/if}
281 </td>
282 </tr>
283 <tr class="crm-participant-form-block-status_id">
284 <td class="label">{$form.status_id.label}</td>
285 <td>{$form.status_id.html}{if $event_is_test} {ts}(test){/ts}{/if}
286 <div id="notify">{$form.is_notify.html}{$form.is_notify.label}</div>
287 </td>
288 </tr>
289 <tr class="crm-participant-form-block-source">
290 <td class="label">{$form.source.label}</td><td>{$form.source.html|crmAddClass:huge}<br />
291 <span class="description">{ts}Source for this registration (if applicable).{/ts}</span></td>
292 </tr>
293 </table>
294 {if $participantId and $hasPayment}
295 <table class='form-layout'>
296 <tr>
297 <td class='label'>{ts}Fees{/ts}</td>
298 {* this is where the payment info is shown using CRM/Contribute/Page/PaymentInfo.tpl tpl*}
299 <td id='payment-info'></td>
300 </tr>
301 </table>
302 {/if}
303 {* Fee block (EventFees.tpl) is injected here when an event is selected. *}
304 <div class="crm-event-form-fee-block"></div>
305 <fieldset>
306 <table class="form-layout">
307 <tr class="crm-participant-form-block-note">
308 <td class="label">{$form.note.label}</td><td>{$form.note.html}</td>
309 </tr>
310 </table>
311 </fieldset>
312
313 <div class="crm-participant-form-block-customData">
314 <div id="customData" class="crm-customData-block"></div> {* Participant Custom data *}
315 <div id="customData{$eventNameCustomDataTypeID}" class="crm-customData-block"></div> {* Event Custom Data *}
316 <div id="customData{$roleCustomDataTypeID}" class="crm-customData-block"></div> {* Role Custom Data *}
317 <div id="customData{$eventTypeCustomDataTypeID}" class="crm-customData-block"></div> {* Role Custom Data *}
318 </div>
319 {/if}
320
321 {if $accessContribution and $action eq 2 and $rows.0.contribution_id}
322 {include file="CRM/Contribute/Form/Selector.tpl" context="Search"}
323 {/if}
324
325 <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="bottom"}</div>
326 </div>
327 </div>
328 {* JS block for ADD or UPDATE actions only *}
329 {if $action eq 1 or $action eq 2}
330 {if $participantId and $hasPayment}
331 {include file="CRM/Contribute/Page/PaymentInfo.tpl" show='event-payment'}
332 {/if}
333
334 {*include custom data js file*}
335 {include file="CRM/common/customData.tpl"}
336
337 <script type="text/javascript">
338 {literal}
339 CRM.$(function($) {
340
341 var $form = $('form.{/literal}{$form.formClass}{literal}');
342
343 // Handle event selection
344 $('#event_id', $form).change(function() {
345 var eventId = $(this).val();
346 if (!eventId) {
347 return;
348 }
349 var info = $(this).select2('data').extra;
350
351 // Set role from default
352 $('select[name^=role_id]', $form).select2('val', [info.default_role_id], true);
353
354 // Set campaign default
355 $('#campaign_id', $form).select2('val', info.campaign_id);
356
357 // Event and event-type custom data
358 CRM.buildCustomData('Participant', eventId, {/literal}{$eventNameCustomDataTypeID}{literal});
359 CRM.buildCustomData('Participant', info.event_type_id, {/literal}{$eventTypeCustomDataTypeID}{literal});
360
361 buildFeeBlock();
362 });
363
364 // Handle participant role selection
365 $('select[name^=role_id]', $form).change(buildRoleCustomData);
366 if ($('select[name^=role_id]', $form).val()) {
367 buildRoleCustomData();
368 }
369
370 buildFeeBlock();
371
372 //build discount block
373 if ($('#discount_id', $form).val()) {
374 buildFeeBlock($('#discount_id', $form).val());
375 }
376 $($form).on('change', '#discount_id', function() {
377 buildFeeBlock($(this).val());
378 });
379
380 function buildRoleCustomData() {
381 var roleId = $('select[name^=role_id]', $form).val().join();
382 CRM.buildCustomData('Participant', roleId, {/literal}{$roleCustomDataTypeID}{literal});
383 }
384
385 //build fee block
386 function buildFeeBlock(discountId) {
387 var dataUrl = {/literal}"{crmURL p=$urlPath h=0 q="snippet=4&qfKey=$qfKey"}";
388
389 {if $urlPathVar}
390 dataUrl += '&' + '{$urlPathVar}';
391 {/if}
392
393 {literal}
394 var eventId = $('[name=event_id], #event_id', $form).val();
395
396 if (eventId) {
397 dataUrl += '&eventId=' + eventId;
398 }
399 else {
400 $('#eventFullMsg', $form).hide( );
401 $('.crm-event-form-fee-block', $form).html('');
402 return;
403 }
404
405 var participantId = "{/literal}{$participantId}{literal}";
406
407 if (participantId) {
408 dataUrl += '&participantId=' + participantId;
409 }
410
411 if (discountId) {
412 dataUrl += '&discountId=' + discountId;
413 }
414
415 $.ajax({
416 url: dataUrl,
417 success: function ( html ) {
418 $(".crm-event-form-fee-block", $form).html( html ).trigger('crmLoad');
419 //show event real full as well as waiting list message.
420 if ( $("#hidden_eventFullMsg", $form).val( ) ) {
421 $( "#eventFullMsg", $form).show( ).html( $("#hidden_eventFullMsg", $form).val( ) );
422 }
423 else {
424 $( "#eventFullMsg", $form ).hide( );
425 }
426 }
427 });
428 }
429
430 {/literal}
431 CRM.buildCustomData( '{$customDataType}', 'null', 'null' );
432 {if $eventID}
433 CRM.buildCustomData( '{$customDataType}', {$eventID}, {$eventNameCustomDataTypeID} );
434 {/if}
435 {if $eventTypeID}
436 CRM.buildCustomData( '{$customDataType}', {$eventTypeID}, {$eventTypeCustomDataTypeID} );
437 {/if}
438 {literal}
439
440 });
441 </script>
442 {/literal}
443
444 {/if}
445
446
447 <script type="text/javascript">
448 {literal}
449
450 sendNotification();
451 function sendNotification() {
452 var notificationStatusIds = {/literal}"{$notificationStatusIds}"{literal};
453 notificationStatusIds = notificationStatusIds.split(',');
454 if (cj.inArray(cj('select#status_id option:selected').val(), notificationStatusIds) > -1) {
455 cj("#notify").show();
456 cj("#is_notify").prop('checked', true);
457 }
458 else {
459 cj("#notify").hide();
460 cj("#is_notify").prop('checked', false);
461 }
462 }
463
464 {/literal}
465 </script>
466
467 {/if} {* end of main event block*}
468