2016-01-04 12:49:26 +01:00
|
|
|
/*
|
|
|
|
* jQuery Impromptu
|
|
|
|
* By: Trent Richardson [http://trentrichardson.com]
|
|
|
|
* Version 3.1
|
|
|
|
* Last Modified: 3/30/2010
|
|
|
|
*
|
|
|
|
* Copyright 2010 Trent Richardson
|
|
|
|
* Dual licensed under the MIT and GPL licenses.
|
|
|
|
* http://trentrichardson.com/Impromptu/GPL-LICENSE.txt
|
|
|
|
* http://trentrichardson.com/Impromptu/MIT-LICENSE.txt
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 2007-2011 PrestaShop
|
|
|
|
*
|
|
|
|
* NOTICE OF LICENSE
|
|
|
|
*
|
|
|
|
* This source file is subject to the Academic Free License (AFL 3.0)
|
|
|
|
* that is bundled with this package in the file LICENSE.txt.
|
|
|
|
* It is also available through the world-wide-web at this URL:
|
|
|
|
* http://opensource.org/licenses/afl-3.0.php
|
|
|
|
* If you did not receive a copy of the license and are unable to
|
|
|
|
* obtain it through the world-wide-web, please send an email
|
|
|
|
* to license@prestashop.com so we can send you a copy immediately.
|
|
|
|
*
|
|
|
|
* DISCLAIMER
|
|
|
|
*
|
|
|
|
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
|
|
|
* versions in the future. If you wish to customize PrestaShop for your
|
|
|
|
* needs please refer to http://www.prestashop.com for more information.
|
|
|
|
*
|
|
|
|
* @author PrestaShop SA <contact@prestashop.com>
|
|
|
|
* @copyright 2007-2011 PrestaShop SA
|
|
|
|
* @version Release: $Revision: 7009 $
|
|
|
|
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
|
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
//JS Object : update the cart by ajax actions
|
|
|
|
var ajaxCart = {
|
|
|
|
|
|
|
|
//override every button in the page in relation to the cart
|
|
|
|
overrideButtonsInThePage : function(){
|
|
|
|
//for every 'add' buttons...
|
|
|
|
$('.ajax_add_to_cart_button').unbind('click').click(function(){
|
|
|
|
var idProduct = $(this).attr('rel').replace('ajax_id_product_', '');
|
|
|
|
if ($(this).attr('disabled') != 'disabled')
|
|
|
|
ajaxCart.add(idProduct, null, false, this);
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
//for product page 'add' button...
|
|
|
|
$('body#product p#add_to_cart input').unbind('click').click(function(){
|
|
|
|
ajaxCart.add( $('#product_page_product_id').val(), $('#idCombination').val(), true, null, $('#quantity_wanted').val(), null);
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
//for 'delete' buttons in the cart block...
|
|
|
|
$('#cart_block_list .ajax_cart_block_remove_link').unbind('click').click(function(){
|
|
|
|
// Customized product management
|
|
|
|
var customizationId = 0;
|
|
|
|
var productId = 0;
|
|
|
|
var productAttributeId = 0;
|
2017-03-28 10:09:35 +02:00
|
|
|
if ($($(this).parent().parent().parent()).attr('name') == 'customization')
|
2016-01-04 12:49:26 +01:00
|
|
|
// Reverse two levels: a >> div >> li
|
2017-03-28 10:09:35 +02:00
|
|
|
var customizableProductDiv = $($(this).parent().parent().parent()).find("div[id^=deleteCustomizableProduct_]");
|
2016-01-04 12:49:26 +01:00
|
|
|
else
|
2017-03-28 10:09:35 +02:00
|
|
|
var customizableProductDiv = $($(this).parent().parent()).find("div[id^=deleteCustomizableProduct_]");
|
2016-01-04 12:49:26 +01:00
|
|
|
if (customizableProductDiv && $(customizableProductDiv).length)
|
|
|
|
{
|
|
|
|
$(customizableProductDiv).each(function(){
|
|
|
|
var ids = $(this).attr('id').split('_');
|
|
|
|
if (typeof(ids[1]) != 'undefined')
|
|
|
|
{
|
|
|
|
customizationId = parseInt(ids[1]);
|
|
|
|
productId = parseInt(ids[2]);
|
|
|
|
if (typeof(ids[3]) != 'undefined')
|
|
|
|
productAttributeId = parseInt(ids[3]);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Common product management
|
|
|
|
if (!customizationId)
|
|
|
|
{
|
|
|
|
//retrieve idProduct and idCombination from the displayed product in the block cart
|
2017-03-28 10:09:35 +02:00
|
|
|
var firstCut = $(this).parent().parent().parent().attr('id').replace('cart_block_product_', '');
|
2016-01-04 12:49:26 +01:00
|
|
|
firstCut = firstCut.replace('deleteCustomizableProduct_', '');
|
|
|
|
ids = firstCut.split('_');
|
|
|
|
productId = parseInt(ids[0]);
|
|
|
|
if (typeof(ids[1]) != 'undefined')
|
|
|
|
productAttributeId = parseInt(ids[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Removing product from the cart
|
|
|
|
ajaxCart.remove(productId, productAttributeId, customizationId);
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
// try to expand the cart
|
|
|
|
expand : function(){
|
|
|
|
if ($('#cart_block #cart_block_list').hasClass('collapsed'))
|
|
|
|
{
|
|
|
|
$('#cart_block #cart_block_summary').slideUp(200, function(){
|
|
|
|
$(this).addClass('collapsed').removeClass('expanded');
|
|
|
|
$('#cart_block #cart_block_list').slideDown({
|
|
|
|
duration: 600,
|
|
|
|
complete: function(){$(this).addClass('expanded').removeClass('collapsed');}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
// toogle the button expand/collapse button
|
|
|
|
$('#cart_block h4 span#block_cart_expand').fadeOut('slow', function(){
|
|
|
|
$('#cart_block h4 span#block_cart_collapse').fadeIn('fast');
|
|
|
|
});
|
|
|
|
|
|
|
|
// save the expand statut in the user cookie
|
|
|
|
$.ajax({
|
|
|
|
type: 'GET',
|
|
|
|
url: baseDir + 'modules/blockcart/blockcart-set-collapse.php',
|
|
|
|
async: true,
|
|
|
|
data: 'ajax_blockcart_display=expand' + '&rand=' + new Date().getTime()
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
|
|
|
// cart to fix display when using back and previous browsers buttons
|
|
|
|
refresh : function(){
|
|
|
|
//send the ajax request to the server
|
|
|
|
$.ajax({
|
|
|
|
type: 'GET',
|
|
|
|
url: baseDir + 'cart.php',
|
|
|
|
async: true,
|
|
|
|
cache: false,
|
|
|
|
dataType : "json",
|
|
|
|
data: 'ajax=true&token=' + static_token,
|
|
|
|
success: function(jsonData)
|
|
|
|
{
|
|
|
|
ajaxCart.updateCart(jsonData);
|
|
|
|
},
|
|
|
|
error: function(XMLHttpRequest, textStatus, errorThrown) {
|
|
|
|
//alert("TECHNICAL ERROR: unable to refresh the cart.\n\nDetails:\nError thrown: " + XMLHttpRequest + "\n" + 'Text status: ' + textStatus);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
// try to collapse the cart
|
|
|
|
collapse : function(){
|
|
|
|
|
|
|
|
if ($('#cart_block #cart_block_list').hasClass('expanded'))
|
|
|
|
{
|
|
|
|
$('#cart_block #cart_block_list').slideUp('slow', function(){
|
|
|
|
$(this).addClass('collapsed').removeClass('expanded');
|
|
|
|
$('#cart_block #cart_block_summary').slideDown(700, function(){
|
|
|
|
$(this).addClass('expanded').removeClass('collapsed');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
$('#cart_block h4 span#block_cart_collapse').fadeOut('slow', function(){
|
|
|
|
$('#cart_block h4 span#block_cart_expand').fadeIn('fast');
|
|
|
|
});
|
|
|
|
|
|
|
|
// save the expand statut in the user cookie
|
|
|
|
$.ajax({
|
|
|
|
type: 'GET',
|
|
|
|
url: baseDir + 'modules/blockcart/blockcart-set-collapse.php',
|
|
|
|
async: true,
|
|
|
|
data: 'ajax_blockcart_display=collapse' + '&rand=' + new Date().getTime()
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
// Update the cart information
|
|
|
|
updateCartInformation : function (jsonData, addedFromProductPage)
|
|
|
|
{
|
|
|
|
ajaxCart.updateCart(jsonData);
|
|
|
|
|
|
|
|
//reactive the button when adding has finished
|
|
|
|
if (addedFromProductPage)
|
|
|
|
$('body#product p#add_to_cart input').removeAttr('disabled').addClass('exclusive').removeClass('exclusive_disabled');
|
|
|
|
else
|
|
|
|
$('.ajax_add_to_cart_button').removeAttr('disabled');
|
|
|
|
},
|
|
|
|
|
|
|
|
// add a product in the cart via ajax
|
|
|
|
add : function(idProduct, idCombination, addedFromProductPage, callerElement, quantity, whishlist){
|
|
|
|
if (addedFromProductPage && !checkCustomizations())
|
|
|
|
{
|
|
|
|
alert(fieldRequired);
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
emptyCustomizations();
|
|
|
|
//disabled the button when adding to do not double add if user double click
|
|
|
|
if (addedFromProductPage)
|
|
|
|
{
|
|
|
|
$('body#product p#add_to_cart input').attr('disabled', 'disabled').removeClass('exclusive').addClass('exclusive_disabled');
|
|
|
|
$('.filled').removeClass('filled');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
$(callerElement).attr('disabled', 'disabled');
|
|
|
|
|
|
|
|
if ($('#cart_block #cart_block_list').hasClass('collapsed'))
|
|
|
|
this.expand();
|
|
|
|
//send the ajax request to the server
|
|
|
|
$.ajax({
|
|
|
|
type: 'POST',
|
|
|
|
url: baseDir + 'cart.php',
|
|
|
|
async: true,
|
|
|
|
cache: false,
|
|
|
|
dataType : "json",
|
|
|
|
data: 'add=1&ajax=true&qty=' + ((quantity && quantity != null) ? quantity : '1') + '&id_product=' + idProduct + '&token=' + static_token + ( (parseInt(idCombination) && idCombination != null) ? '&ipa=' + parseInt(idCombination): ''),
|
|
|
|
success: function(jsonData,textStatus,jqXHR)
|
|
|
|
{
|
|
|
|
// add appliance to whishlist module
|
|
|
|
if (whishlist && !jsonData.errors)
|
|
|
|
WishlistAddProductCart(whishlist[0], idProduct, idCombination, whishlist[1]);
|
|
|
|
|
|
|
|
ajaxCart.updateCartInformation(jsonData, addedFromProductPage);
|
2016-06-28 14:45:48 +02:00
|
|
|
|
2016-01-04 12:49:26 +01:00
|
|
|
if(!jsonData.errors) {
|
2016-09-21 14:29:34 +02:00
|
|
|
confirmation(idProduct, idCombination, quantity, jsonData);
|
2016-06-28 14:45:48 +02:00
|
|
|
} else if (jsonData.popup_error_cart){
|
|
|
|
cannotAdd(idProduct, idCombination, quantity, jsonData.errors[0]);
|
2016-01-04 12:49:26 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
error: function(XMLHttpRequest, textStatus, errorThrown)
|
|
|
|
{
|
|
|
|
alert("TECHNICAL ERROR: unable to add the product.\n\nDetails:\nError thrown: " + XMLHttpRequest + "\n" + 'Text status: ' + textStatus);
|
|
|
|
//reactive the button when adding has finished
|
|
|
|
if (addedFromProductPage)
|
|
|
|
$('body#product p#add_to_cart input').removeAttr('disabled').addClass('exclusive').removeClass('exclusive_disabled');
|
|
|
|
else
|
|
|
|
$(callerElement).removeAttr('disabled');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
//remove a product from the cart via ajax
|
|
|
|
remove : function(idProduct, idCombination, customizationId){
|
|
|
|
//send the ajax request to the server
|
|
|
|
$.ajax({
|
|
|
|
type: 'POST',
|
|
|
|
url: baseDir + 'cart.php',
|
|
|
|
async: true,
|
|
|
|
cache: false,
|
|
|
|
dataType : "json",
|
|
|
|
data: 'delete=1&id_product=' + idProduct + '&ipa=' + ((idCombination != null && parseInt(idCombination)) ? idCombination : '') + ((customizationId && customizationId != null) ? '&id_customization=' + customizationId : '') + '&token=' + static_token + '&ajax=true',
|
|
|
|
success: function(jsonData) {
|
|
|
|
ajaxCart.updateCart(jsonData);
|
|
|
|
if ($('body').attr('id') == 'order' || $('body').attr('id') == 'order-opc')
|
|
|
|
deletProductFromSummary(idProduct+'_'+idCombination);
|
|
|
|
},
|
|
|
|
error: function() {alert('ERROR: unable to delete the product');}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
//hide the products displayed in the page but no more in the json data
|
|
|
|
hideOldProducts : function(jsonData) {
|
|
|
|
//delete an eventually removed product of the displayed cart (only if cart is not empty!)
|
|
|
|
if($('#cart_block #cart_block_list dl.products').length > 0)
|
|
|
|
{
|
|
|
|
var removedProductId = null;
|
|
|
|
var removedProductData = null;
|
|
|
|
var removedProductDomId = null;
|
|
|
|
//look for a product to delete...
|
|
|
|
$('#cart_block_list dl.products dt').each(function(){
|
|
|
|
//retrieve idProduct and idCombination from the displayed product in the block cart
|
|
|
|
var domIdProduct = $(this).attr('id');
|
|
|
|
var firstCut = domIdProduct.replace('cart_block_product_', '');
|
|
|
|
var ids = firstCut.split('_');
|
|
|
|
|
|
|
|
//try to know if the current product is still in the new list
|
|
|
|
var stayInTheCart = false;
|
|
|
|
for (aProduct in jsonData.products)
|
|
|
|
{
|
|
|
|
//we've called the variable aProduct because IE6 bug if this variable is called product
|
|
|
|
//if product has attributes
|
|
|
|
if (jsonData.products[aProduct]['id'] == ids[0] && (!ids[1] || jsonData.products[aProduct]['idCombination'] == ids[1]))
|
|
|
|
{
|
|
|
|
stayInTheCart = true;
|
|
|
|
// update the product customization display (when the product is still in the cart)
|
|
|
|
ajaxCart.hideOldProductCustomizations(jsonData.products[aProduct], domIdProduct);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//remove product if it's no more in the cart
|
|
|
|
if(!stayInTheCart)
|
|
|
|
{
|
|
|
|
removedProductId = $(this).attr('id');
|
|
|
|
//return false; // Regarding that the customer can only remove products one by one, we break the loop
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
//if there is a removed product, delete it from the displayed block cart
|
|
|
|
if (removedProductId != null)
|
|
|
|
{
|
|
|
|
var firstCut = removedProductId.replace('cart_block_product_', '');
|
|
|
|
var ids = firstCut.split('_');
|
|
|
|
|
|
|
|
$('#'+removedProductId).addClass('strike').fadeTo('slow', 0, function(){
|
|
|
|
$(this).slideUp('slow', function(){
|
|
|
|
$(this).remove();
|
|
|
|
//if the cart is now empty, show the 'no product in the cart' message
|
|
|
|
if($('#cart_block dl.products dt').length == 0)
|
|
|
|
{
|
|
|
|
$('p#cart_block_no_products:hidden').slideDown('fast');
|
|
|
|
$('div#cart_block dl.products').remove();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
$('dd#cart_block_combination_of_' + ids[0] + (ids[1] ? '_'+ids[1] : '') ).fadeTo('fast', 0, function(){
|
|
|
|
$(this).slideUp('fast', function(){
|
|
|
|
$(this).remove();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
hideOldProductCustomizations : function (product, domIdProduct)
|
|
|
|
{
|
|
|
|
var customizationList = $('#cart_block #cart_block_list ul#customization_' + product['id'] + '_' + product['idCombination']);
|
|
|
|
if(customizationList.length > 0)
|
|
|
|
{
|
|
|
|
$(customizationList).find("li").each(function(){
|
|
|
|
$(this).find("div").each(function() {
|
|
|
|
var customizationDiv = $(this).attr('id');
|
|
|
|
var tmp = customizationDiv.replace('deleteCustomizableProduct_', '');
|
|
|
|
var ids = tmp.split('_');
|
|
|
|
if ((parseInt(product.idCombination) == parseInt(ids[2])) && !ajaxCart.doesCustomizationStillExist(product, ids[0]))
|
|
|
|
$('#' + customizationDiv).parent().addClass('strike').fadeTo('slow', 0, function(){
|
|
|
|
$(this).slideUp('slow');
|
|
|
|
$(this).remove();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
var removeLinks = $('#cart_block_product_' + domIdProduct).find('a.ajax_cart_block_remove_link');
|
|
|
|
if (!product.hasCustomizedDatas && !removeLinks.length)
|
|
|
|
$('#' + domIdProduct + ' span.remove_link').html('<a class="ajax_cart_block_remove_link" rel="nofollow" href="' + baseDir + 'cart.php?delete&id_product=' + product['id'] + '&ipa=' + product['idCombination'] + '&token=' + static_token + '" title="' + removingLinkText + '"> </a>');
|
|
|
|
},
|
|
|
|
|
|
|
|
doesCustomizationStillExist : function (product, customizationId)
|
|
|
|
{
|
|
|
|
var exists = false;
|
|
|
|
|
|
|
|
$(product.customizedDatas).each(function() {
|
|
|
|
if (this.customizationId == customizationId)
|
|
|
|
{
|
|
|
|
exists = true;
|
|
|
|
// This return does not mean that we found nothing but simply break the loop
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return (exists);
|
|
|
|
},
|
|
|
|
|
|
|
|
//refresh display of vouchers (needed for vouchers in % of the total)
|
|
|
|
refreshVouchers : function (jsonData) {
|
|
|
|
if (jsonData.discounts.length == 0)
|
|
|
|
$('#vouchers').remove();
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$('.bloc_cart_voucher').each(function(){
|
|
|
|
var idElmt = $(this).attr('id').replace('bloc_cart_voucher_','');
|
|
|
|
var toDelete = true;
|
|
|
|
for (i=0;i<jsonData.discounts.length;i++)
|
|
|
|
{
|
|
|
|
if (jsonData.discounts[i].id == idElmt)
|
|
|
|
{
|
|
|
|
$('#bloc_cart_voucher_' + idElmt + ' td.price').text(jsonData.discounts[i].price);
|
|
|
|
toDelete = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (toDelete)
|
|
|
|
{
|
|
|
|
$('#bloc_cart_voucher_' + idElmt).fadeTo('fast', 0, function(){
|
|
|
|
$(this).remove();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
// Update product quantity
|
|
|
|
updateProductQuantity : function (product, quantity) {
|
2017-03-01 17:23:45 +01:00
|
|
|
var old_quantity = parseInt($('dt#cart_block_product_' + product.id + (product.idCombination ? '_' + product.idCombination : '') + ' .quantity').text());
|
|
|
|
if(old_quantity != quantity) {
|
|
|
|
$('dt#cart_block_product_' + product.id + (product.idCombination ? '_' + product.idCombination : '') + ' .quantity').fadeTo('fast', 0, function() {
|
|
|
|
$(this).text(quantity);
|
|
|
|
$(this).fadeTo('fast', 1, function(){
|
|
|
|
$(this).fadeTo('fast', 0, function(){
|
|
|
|
$(this).fadeTo('fast', 1, function(){
|
|
|
|
$(this).fadeTo('fast', 0, function(){
|
|
|
|
$(this).fadeTo('fast', 1);
|
|
|
|
});
|
2016-01-04 12:49:26 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2017-03-01 17:23:45 +01:00
|
|
|
}
|
2016-01-04 12:49:26 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
//display the products witch are in json data but not already displayed
|
|
|
|
displayNewProducts : function(jsonData) {
|
|
|
|
//add every new products or update displaying of every updated products
|
|
|
|
$(jsonData.products).each(function(){
|
|
|
|
//fix ie6 bug (one more item 'undefined' in IE6)
|
|
|
|
if (this.id != undefined)
|
|
|
|
{
|
|
|
|
//create a container for listing the products and hide the 'no product in the cart' message (only if the cart was empty)
|
2016-09-21 14:29:34 +02:00
|
|
|
if ($('div#cart_block dl.products').length == 0)
|
2016-01-04 12:49:26 +01:00
|
|
|
$('p#cart_block_no_products').hide('fast', 0, function(){
|
|
|
|
}).before('<dl class="products"></dl>');
|
|
|
|
|
|
|
|
//if product is not in the displayed cart, add a new product's line
|
|
|
|
var domIdProduct = this.id + (this.idCombination ? '_' + this.idCombination : '');
|
|
|
|
var domIdProductAttribute = this.id + '_' + (this.idCombination ? this.idCombination : '0');
|
|
|
|
if($('#cart_block dt#cart_block_product_'+ domIdProduct ).length == 0)
|
|
|
|
{
|
2016-09-21 14:29:34 +02:00
|
|
|
var productId = parseInt(this.id);
|
2016-01-04 12:49:26 +01:00
|
|
|
var productAttributeId = (this.hasAttributes ? parseInt(this.attributes) : 0);
|
|
|
|
var name = (this.name.length > 40 ? this.name.substring(0, 10) + '...' : this.name);
|
|
|
|
var content = '<dt class="hidden" id="cart_block_product_' + domIdProduct + '">';
|
|
|
|
content += '<a class="img_cart" href="' + this.link + '" title="' + this.name + '"><img src="' + this.id_image + '" alt="' + this.name +'"></a>';
|
|
|
|
content += '<a class="cart_block_product_name" href="' + this.link + '" title="' + this.name + '">' + name + '</a>';
|
2017-03-01 17:23:45 +01:00
|
|
|
content += '<p class="label_quantity">Quantité : ';
|
|
|
|
content += '<span class="quantity">' + this.quantity + '</span>';
|
2017-03-28 10:28:57 +02:00
|
|
|
content += ' <a rel="nofollow" class="cart_quantity_down" id="cart_quantity_down_'+productId+'_'+(this.hasAttributes ? parseInt(this.idCombination) : 0)+'" onclick="updateQuantity('+productId+','+(this.hasAttributes ? parseInt(this.idCombination) : 0)+',\'down\');"><img src="'+baseDir+'themes/site/img/moins.png" alt="-" width="13" height="13" /></a>';
|
|
|
|
content += ' <a rel="nofollow" class="cart_quantity_up" id="cart_quantity_up_'+productId+'_'+(this.hasAttributes ? parseInt(this.idCombination) : 0)+'" onclick="updateQuantity('+productId+','+(this.hasAttributes ? parseInt(this.idCombination) : 0)+',\'up\');"><img src="'+baseDir+'themes/site/img/plus.png" alt="-" width="13" height="13" /></a>';
|
2016-01-04 12:49:26 +01:00
|
|
|
content += '<span class="remove_link"><a rel="nofollow" class="ajax_cart_block_remove_link" href="' + baseDir + 'cart.php?delete&id_product=' + productId + '&token=' + static_token + (this.hasAttributes ? '&ipa=' + parseInt(this.idCombination) : '') + '"> </a></span>';
|
2017-03-28 10:09:35 +02:00
|
|
|
content += '</p>';
|
2016-01-04 12:49:26 +01:00
|
|
|
content += '<p><span class="label_price">Prix unitaire : <span class="green price">' + this.unit_price + '</span></p>';
|
|
|
|
content += '</dt>';
|
|
|
|
// if (this.hasAttributes)
|
|
|
|
// content += '<dd id="cart_block_combination_of_' + domIdProduct + '" class="hidden"><a href="' + this.link + '" title="' + this.name + '">' + this.attributes + '</a>';
|
|
|
|
// if (this.hasCustomizedDatas)
|
|
|
|
// content += ajaxCart.displayNewCustomizedDatas(this);
|
|
|
|
// if (this.hasAttributes) content += '</dd>';
|
|
|
|
|
|
|
|
$('#cart_block dl.products').append(content);
|
|
|
|
$('p#cart_block_no_products').hide();
|
|
|
|
}
|
|
|
|
//else update the product's line
|
|
|
|
else{
|
|
|
|
var jsonProduct = this;
|
|
|
|
if($('dt#cart_block_product_' + domIdProduct + ' .quantity').text() != jsonProduct.quantity || $('dt#cart_block_product_' + domIdProduct + ' .price').text() != jsonProduct.priceByLine)
|
|
|
|
{
|
|
|
|
// Usual product
|
|
|
|
$('dt#cart_block_product_' + domIdProduct + ' .price').text(jsonProduct.unit_price);
|
|
|
|
ajaxCart.updateProductQuantity(jsonProduct, jsonProduct.quantity);
|
|
|
|
|
|
|
|
// Customized product
|
|
|
|
if (jsonProduct.hasCustomizedDatas)
|
|
|
|
{
|
|
|
|
customizationFormatedDatas = ajaxCart.displayNewCustomizedDatas(jsonProduct);
|
|
|
|
if (!$('#cart_block ul#customization_' + domIdProductAttribute).length)
|
|
|
|
{
|
|
|
|
if (jsonProduct.hasAttributes)
|
|
|
|
$('#cart_block dd#cart_block_combination_of_' + domIdProduct).append(customizationFormatedDatas);
|
|
|
|
else
|
|
|
|
$('#cart_block dl.products').append(customizationFormatedDatas);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
$('#cart_block ul#customization_' + domIdProductAttribute).append(customizationFormatedDatas);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$('#cart_block dl.products .hidden').slideDown('slow').removeClass('hidden');
|
|
|
|
|
|
|
|
var removeLinks = $('#cart_block_product_' + domIdProduct).find('a.ajax_cart_block_remove_link');
|
|
|
|
if (this.hasCustomizedDatas && removeLinks.length)
|
|
|
|
$(removeLinks).each(function() {
|
|
|
|
$(this).remove();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
displayNewCustomizedDatas : function(product)
|
|
|
|
{
|
|
|
|
var content = '';
|
|
|
|
var productId = parseInt(product.id);
|
|
|
|
var productAttributeId = typeof(product.idCombination) == 'undefined' ? 0 : parseInt(product.idCombination);
|
|
|
|
var hasAlreadyCustomizations = $('#cart_block ul#customization_' + productId + '_' + productAttributeId).length;
|
|
|
|
|
|
|
|
if (!hasAlreadyCustomizations)
|
|
|
|
{
|
|
|
|
if (!product.hasAttributes) content += '<dd id="cart_block_combination_of_' + productId + '" class="hidden">';
|
|
|
|
content += '<ul class="cart_block_customizations" id="customization_' + productId + '_' + productAttributeId + '">';
|
|
|
|
}
|
|
|
|
|
|
|
|
$(product.customizedDatas).each(function(){
|
|
|
|
var done = 0;
|
|
|
|
customizationId = parseInt(this.customizationId);
|
|
|
|
productAttributeId = typeof(product.idCombination) == 'undefined' ? 0 : parseInt(product.idCombination);
|
|
|
|
// If the customization is already displayed on the cart, no update's needed
|
|
|
|
if($('#cart_block').find("div[id^=deleteCustomizableProduct_" + customizationId + "_]").length)
|
|
|
|
return ('');
|
|
|
|
content += '<li name="customization"><div class="deleteCustomizableProduct" id="deleteCustomizableProduct_' + customizationId + '_' + productId + '_' + (productAttributeId ? productAttributeId : '0') + '"><a rel="nofollow" class="ajax_cart_block_remove_link" href="' + baseDir + 'cart.php?delete&id_product=' + productId + '&ipa=' + productAttributeId + '&id_customization=' + customizationId + '&token=' + static_token + '"> </a></div><span class="quantity-formated"><span class="quantity">' + parseInt(this.quantity) + '</span>x</span>';
|
|
|
|
|
|
|
|
// Give to the customized product the first textfield value as name
|
|
|
|
$(this.datas).each(function(){
|
|
|
|
if (this['type'] == CUSTOMIZE_TEXTFIELD)
|
|
|
|
{
|
|
|
|
$(this.datas).each(function(){
|
|
|
|
if (this['index'] == 0)
|
|
|
|
{
|
|
|
|
content += this.truncatedValue.replace(/<br \/>/g, ' ');
|
|
|
|
done = 1;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// If the customized product did not have any textfield, it will have the customizationId as name
|
|
|
|
if (!done)
|
|
|
|
content += customizationIdMessage + customizationId;
|
|
|
|
if (!hasAlreadyCustomizations) content += '</li>';
|
|
|
|
// Field cleaning
|
|
|
|
if (customizationId)
|
|
|
|
{
|
|
|
|
$('#uploadable_files li div.customizationUploadBrowse img').remove();
|
|
|
|
$('#text_fields li input').attr('value', '');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!hasAlreadyCustomizations)
|
|
|
|
{
|
|
|
|
content += '</ul>';
|
|
|
|
if (!product.hasAttributes) content += '</dd>';
|
|
|
|
}
|
|
|
|
return (content);
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
//genarally update the display of the cart
|
|
|
|
updateCart : function(jsonData) {
|
|
|
|
//user errors display
|
|
|
|
if (jsonData.hasError)
|
|
|
|
{
|
2016-06-28 14:45:48 +02:00
|
|
|
if (jsonData.popup_error_cart) {
|
|
|
|
$('.overlay_bbb').fadeIn();
|
|
|
|
$('#box_error_cart_text').text(jsonData.errors[0]);
|
|
|
|
$('#box_error_cart').fadeIn();
|
|
|
|
} else {
|
|
|
|
var errors = '';
|
|
|
|
for(error in jsonData.errors)
|
|
|
|
//IE6 bug fix
|
|
|
|
if(error != 'indexOf')
|
|
|
|
errors += jsonData.errors[error] + "\n";
|
|
|
|
alert(errors);
|
|
|
|
}
|
2016-01-04 12:49:26 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//giftvoucher.addToCart(jsonData);
|
|
|
|
ajaxCart.updateCartEverywhere(jsonData);
|
|
|
|
ajaxCart.hideOldProducts(jsonData);
|
|
|
|
ajaxCart.displayNewProducts(jsonData);
|
|
|
|
ajaxCart.refreshVouchers(jsonData);
|
|
|
|
|
|
|
|
//update 'first' and 'last' item classes
|
|
|
|
$('#cart_block dl.products dt').removeClass('first_item').removeClass('last_item').removeClass('item');
|
|
|
|
$('#cart_block dl.products dt:first').addClass('first_item');
|
|
|
|
$('#cart_block dl.products dt:not(:first,:last)').addClass('item');
|
|
|
|
$('#cart_block dl.products dt:last').addClass('last_item');
|
|
|
|
|
|
|
|
//reset the onlick events in relation to the cart block (it allow to bind the onclick event to the new 'delete' buttons added)
|
|
|
|
ajaxCart.overrideButtonsInThePage();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
//update general cart informations everywhere in the page
|
|
|
|
updateCartEverywhere : function(jsonData) {
|
|
|
|
$('.ajax_cart_total').text(jsonData.productTotal);
|
|
|
|
$('.ajax_cart_shipping_cost').text(jsonData.shippingCost);
|
|
|
|
$('.ajax_cart_tax_cost').text(jsonData.taxCost);
|
|
|
|
$('.cart_block_wrapping_cost').text(jsonData.wrappingCost);
|
|
|
|
$('.ajax_block_cart_total').text(jsonData.productTotal);
|
|
|
|
// $('.ajax_block_cart_total').text(jsonData.total);
|
|
|
|
if(parseInt(jsonData.nbTotalProducts) > 0)
|
|
|
|
{
|
|
|
|
$('#cart_block_summary').addClass('product');
|
|
|
|
$('.ajax_cart_no_product').hide();
|
|
|
|
$('.ajax_cart_quantity').text(jsonData.nbTotalProducts);
|
|
|
|
$('.ajax_cart_quantity').fadeIn('slow');
|
|
|
|
$('.ajax_cart_total').fadeIn('slow');
|
|
|
|
|
|
|
|
if(parseInt(jsonData.nbTotalProducts) > 1)
|
|
|
|
{
|
|
|
|
$('.ajax_cart_product_txt').each( function () {
|
|
|
|
$(this).hide ();
|
|
|
|
});
|
|
|
|
|
|
|
|
$('.ajax_cart_product_txt_s').each( function () {
|
|
|
|
$(this).show();
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$('.ajax_cart_product_txt').each( function () {
|
|
|
|
$(this).show();
|
|
|
|
});
|
|
|
|
|
|
|
|
$('.ajax_cart_product_txt_s').each( function () {
|
|
|
|
$(this).hide();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$('#cart_block_summary').removeClass('product');
|
|
|
|
$('.ajax_cart_quantity, .ajax_cart_product_txt_s, .ajax_cart_product_txt, .ajax_cart_total').each( function () {
|
|
|
|
$(this).hide();
|
|
|
|
});
|
|
|
|
$('.ajax_cart_no_product').show('slow');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-09-21 14:29:34 +02:00
|
|
|
function confirmation(idProduct, idCombination, quantity, json) {
|
2016-01-04 12:49:26 +01:00
|
|
|
top.document.ajaxCart.refresh();
|
2017-03-07 14:40:09 +01:00
|
|
|
var productToGA = {};
|
2016-09-21 14:29:34 +02:00
|
|
|
// send add product to cart information to GA
|
|
|
|
for (i=0;i < json.products.length; i++) {
|
|
|
|
if (json.products[i].id == idProduct) {
|
2016-09-21 16:08:54 +02:00
|
|
|
var prod_price = json.products[i].unit_price;
|
|
|
|
prod_price = prod_price.replace(",",".");
|
|
|
|
prod_price = prod_price.replace("€","");
|
|
|
|
productToGA = {
|
2016-09-21 14:29:34 +02:00
|
|
|
"id" : idProduct,
|
2016-09-21 16:08:54 +02:00
|
|
|
"variant" : idCombination,
|
2016-09-21 14:29:34 +02:00
|
|
|
"name" : ""+json.products[i].name+"",
|
2017-03-07 13:25:46 +01:00
|
|
|
"brand": ""+json.products[i].category_name+"",
|
|
|
|
"category": ""+json.products[i].category_name+"",
|
2016-09-21 16:08:54 +02:00
|
|
|
"price" : prod_price.trim(),
|
2016-09-21 14:29:34 +02:00
|
|
|
"qty" : quantity
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-04 12:49:26 +01:00
|
|
|
// AJOUT PANIER PAGE PRODUIT
|
|
|
|
if($('#quantity_sel').length > 0){
|
|
|
|
$('#quantity_sel').html(quantity);
|
2017-06-14 10:58:27 +02:00
|
|
|
var price = $('#our_price_display').html();
|
|
|
|
price = price.replace(' €','');
|
|
|
|
var price_float = price.replace(",", ".");
|
|
|
|
var new_price = parseFloat(price_float) * quantity;
|
|
|
|
$('#price_add_to_cart').html(String(new_price.toFixed(2)).replace('.',','));
|
2016-01-04 12:49:26 +01:00
|
|
|
$('.overlay_bbb').fadeIn();
|
|
|
|
$('.box_add_to_cart').fadeIn();
|
2016-09-21 16:08:54 +02:00
|
|
|
// send add product to cart information to GA
|
2016-10-19 16:23:01 +02:00
|
|
|
if (window.ga && ga.create){
|
|
|
|
addToCartToGA(productToGA);
|
|
|
|
}
|
2016-01-04 12:49:26 +01:00
|
|
|
}
|
|
|
|
// AJOUT PANIER ACHAT EXPRESS
|
|
|
|
else{
|
|
|
|
$.ajax({
|
|
|
|
type: 'POST',
|
|
|
|
url: baseDir + 'modules/blockcartex/ajax.php',
|
|
|
|
async: true,
|
|
|
|
cache: false,
|
|
|
|
dataType : "html",
|
|
|
|
data: 'id_product=' + idProduct +'&idCombination='+ idCombination +'&quantity='+quantity,
|
|
|
|
success: function(jsonData) {
|
|
|
|
window.parent.jQuery('body').append(jsonData);
|
|
|
|
window.parent.$('.overlay_bbb').fadeIn();
|
2016-06-28 14:45:48 +02:00
|
|
|
window.parent.$('.box_add_to_cart').fadeIn();
|
2016-09-21 16:08:54 +02:00
|
|
|
// send add product to cart information to GA
|
2016-10-19 16:23:01 +02:00
|
|
|
if (window.parent.ga && window.parent.ga.create){
|
|
|
|
window.parent.addToCartToGA(productToGA);
|
|
|
|
}
|
2016-01-04 12:49:26 +01:00
|
|
|
},
|
|
|
|
error: function() {alert('ERROR: unable to delete the product');}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-06-28 14:45:48 +02:00
|
|
|
function cannotAdd(idProduct, idCombination, quantity, error_text){
|
|
|
|
$.ajax({
|
2016-09-21 14:29:34 +02:00
|
|
|
type: 'POST',
|
|
|
|
url: baseDir + 'modules/blockcartex/ajax.php',
|
|
|
|
async: true,
|
|
|
|
cache: false,
|
|
|
|
dataType : "html",
|
|
|
|
data: 'id_product=' + idProduct +'&idCombination='+ idCombination +'&quantity='+quantity,
|
|
|
|
success: function(jsonData) {
|
|
|
|
window.parent.jQuery('body').append(jsonData);
|
|
|
|
window.parent.$('#box_error_cart_text').text(error_text);
|
|
|
|
window.parent.$('.overlay_bbb').fadeIn();
|
|
|
|
window.parent.$('#box_error_cart').fadeIn();
|
|
|
|
},
|
|
|
|
error: function() {alert('ERROR: unable to delete the product');}
|
|
|
|
});
|
2016-06-28 14:45:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function removeAllCart() {
|
|
|
|
$.ajax({
|
|
|
|
type: 'POST',
|
|
|
|
url: baseDir + 'cart.php',
|
|
|
|
async: true,
|
|
|
|
cache: false,
|
|
|
|
dataType : "json",
|
|
|
|
data: 'removeall=1&token=' + static_token + '&ajax=true',
|
|
|
|
success: function(jsonData) {
|
|
|
|
ajaxCart.updateCart(jsonData);
|
|
|
|
$('.overlay_bbb').fadeOut();
|
|
|
|
$('#box_error_cart').fadeOut();
|
|
|
|
},
|
|
|
|
error: function() {alert('ERROR: unable to remove your cart');}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-03-01 17:23:45 +01:00
|
|
|
function updateQuantity(id_product,id_product_attribute,op) {
|
|
|
|
$.ajax({
|
|
|
|
type: 'POST',
|
|
|
|
url: baseDir + 'cart.php',
|
|
|
|
async: true,
|
|
|
|
cache: false,
|
|
|
|
dataType : "json",
|
|
|
|
data: 'add=1&op='+op+'&id_product='+id_product+'&ipa='+id_product_attribute+'&qty=1&token=' + static_token + '&ajax=true',
|
|
|
|
success: function(jsonData) {
|
|
|
|
ajaxCart.updateCart(jsonData);
|
|
|
|
},
|
|
|
|
error: function() {alert('ERROR: unable to remove your cart');}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-01-04 12:49:26 +01:00
|
|
|
//when document is loaded...
|
|
|
|
$(document).ready(function(){
|
|
|
|
|
|
|
|
// expand/collapse management
|
|
|
|
$('#block_cart_collapse').click(function(){
|
|
|
|
ajaxCart.collapse();
|
|
|
|
});
|
|
|
|
$('#block_cart_expand').click(function(){
|
|
|
|
ajaxCart.expand();
|
|
|
|
});
|
|
|
|
document.ajaxCart = ajaxCart;
|
|
|
|
|
|
|
|
ajaxCart.overrideButtonsInThePage();
|
|
|
|
ajaxCart.refresh();
|
|
|
|
|
|
|
|
$('#close_add_to_cart').live('click', function(e){
|
|
|
|
$('.overlay_bbb').fadeOut();
|
|
|
|
$('.box_add_to_cart').fadeOut();
|
|
|
|
});
|
2016-06-28 14:45:48 +02:00
|
|
|
$('#close_error_cart').live('click', function(e){
|
|
|
|
$('.overlay_bbb').fadeOut();
|
|
|
|
$('#box_error_cart').fadeOut();
|
|
|
|
});
|
2016-01-04 12:49:26 +01:00
|
|
|
$('.overlay_bbb').live('click', function(e){
|
|
|
|
$('.overlay_bbb').fadeOut();
|
|
|
|
$('.box_add_to_cart').fadeOut();
|
2016-06-28 14:45:48 +02:00
|
|
|
$('#box_error_cart').fadeOut();
|
2016-01-04 12:49:26 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
});
|