From 458148d31a4f0ea4faa2eef4be6f304c483155a2 Mon Sep 17 00:00:00 2001
From: Dave Greenberg <dave@civicrm.org>
Date: Thu, 15 Aug 2013 15:36:24 -0700
Subject: [PATCH] CRM-13218 Total Fee on first page adjusts based on number of
 participants selected.

----------------------------------------
* CRM-13218:
  http://issues.civicrm.org/jira/browse/CRM-13218
---
 templates/CRM/Price/Form/Calculate.tpl | 32 +++++++++++++++++++++++++-
 1 file changed, 31 insertions(+), 1 deletion(-)

diff --git a/templates/CRM/Price/Form/Calculate.tpl b/templates/CRM/Price/Form/Calculate.tpl
index 6ab5bca396..62f0d9a888 100644
--- a/templates/CRM/Price/Form/Calculate.tpl
+++ b/templates/CRM/Price/Form/Calculate.tpl
@@ -74,6 +74,10 @@ cj("input,#priceset select,#priceset").each(function () {
       }
       display( totalfee );
     });
+    cj('#additional_participants').change( function( ) {
+      display( totalfee );
+    });
+
     display( totalfee );
     break;
 
@@ -100,6 +104,11 @@ cj("input,#priceset select,#priceset").each(function () {
 
       display( totalfee );
     });
+
+    cj('#additional_participants').change( function( ) {
+      display( totalfee );
+    });
+
     display( totalfee );
     break;
 
@@ -126,6 +135,11 @@ cj("input,#priceset select,#priceset").each(function () {
     cj(this).bind( 'keyup', function() { calculateText( this );
     }).bind( 'blur' , function() { calculateText( this );
     });
+
+    cj('#additional_participants').change( function( ) {
+      display( totalfee );
+    });
+
     display( totalfee );
     break;
 
@@ -171,6 +185,11 @@ cj("input,#priceset select,#priceset").each(function () {
       }
       display( totalfee );
     });
+
+    cj('#additional_participants').change( function( ) {
+      display( totalfee );
+    });
+
     display( totalfee );
     break;
     }
@@ -200,7 +219,18 @@ function calculateText( object ) {
 
 //display calculated amount
 function display( totalfee ) {
-    var totalEventFee  = formatMoney( totalfee, 2, seperator, thousandMarker);
+    num_participants = cj('#additional_participants').val()
+
+    if(!num_participants) {
+      num_participants = 0
+    }
+    // The value of this field is the number of *additional* participants
+    // What is displayed to the user is 1 + the value, because it is including
+    // the "yourself". Since we want to give a total, including "yourself" we have
+    // to add one to the value of #additional_participants.
+    num_participants++;
+
+    var totalEventFee  = formatMoney( totalfee * num_participants, 2, seperator, thousandMarker);
     document.getElementById('pricevalue').innerHTML = "<b>"+symbol+"</b> "+totalEventFee;
     scriptfee   = totalfee;
     scriptarray = price;
-- 
GitLab