$(document).ready(function(){
	var tsTimeStamp= new Date().getTime();
	
	$("#panier").load("/fr/location-ete/get/"+tsTimeStamp);
	$('.add_panier_bouton').click(function(){
		$(this).next().show();
		return false;
	});
	
	$.datepicker.setDefaults($.extend({dateFormat: 'dd/mm/yy', firstDay: 1, minDate: +1}, $.datepicker.regional['']));
	$('.date-pick','#miniloc_module').datepicker($.datepicker.regional['fr']);

	
	
	$('.add_bouton').click(function(){					
		var panier_height = $("#panier_height").height();
		var parent = $(this).attr("id");
		var id_produit = $("#block_"+parent).find('input[name=id_produit]').val();
		var date_debut = $("#block_"+parent).find('input[name=date_debut]').val();
		var qt = $("#block_"+parent).find('select option:selected').get(0).value;

		$("#panier_height").height(panier_height);
		$("#panier").hide();
		$("#loadingpanier").show();
		
		$.post('/fr/location-ete/add',{
			id_produit: id_produit,
			date_debut: date_debut,
			qt: qt
		}, function(returnval){
			var tsTimeStamp= new Date().getTime();
			$("#panier").load("/fr/location-ete/get/"+tsTimeStamp, function(){
				$("#panier").fadeIn(1000);
				$("#loadingpanier").fadeOut(1000);
				$("#panier_height").attr("style","position:relative");
			});
		});
		$("#block_"+parent).hide();
		
	});
	$('.close_bouton').click(function(){
		var parent = $(this).parent().get(0).id;
		$("#"+parent).hide();
		return false;
	});
});


function miniloc_set_panier(){
	$.datepicker.setDefaults($.extend({dateFormat: 'dd/mm/yy', firstDay: 1, minDate: +1}, $.datepicker.regional['']));
	$('.date-pick','#miniloc_module').datepicker($.datepicker.regional['fr']);
	
	$('.panier_sup_button').click(function(){
		var href = $(this).attr("href");
		var panier_height = $("#panier_height").height();
		$("#panier_height").height(panier_height);
		$("#loadingpanier").show();
		$("#panier").hide();
		$.get(href, function(){
			var tsTimeStamp= new Date().getTime();
			$("#panier").load("/fr/location-ete/get/"+tsTimeStamp, function(){
				$("#panier").fadeIn(1000);
				$("#loadingpanier").fadeOut(1000);
				$("#panier_height").attr("style","position:relative");
			});
		});
		return false;
	});

	$('.update_bouton').click(function(){
		var panier_height = $("#panier_height").height();
		$("#panier_height").height(panier_height);
		$("#panier").hide();
		$("#loadingpanier").show();
		var parent = $(this).parents('.panier_line').find('p:first').attr('id');
		var id = $("#id_"+parent).val();
		var id_produit = $("#id_produit_"+parent).val();
		var date_debut = $("#date_debut_"+parent).val();
		var qt = $(this).parents('.panier_line').find('select').val();
	
		$.post('/fr/location-ete/update',{
			id: id,
			id_produit: id_produit,
			date_debut: date_debut,
			qt: qt
		}, function(returnval){
			var tsTimeStamp= new Date().getTime();
			$("#panier").load("/fr/location-ete/get/"+tsTimeStamp, function(){
				$("#panier").fadeIn(1000);
				$("#loadingpanier").fadeOut(1000);
				$("#panier_height").attr("style","position:relative");				
			});
		});
		$("#"+parent).hide();
	});	
}

