﻿function debentureAction(){
	   $.getJSON("index.php?mod=basket&action=debenture", { value: $('input[name=dodajKod]').val() },
       function(data){
	   switch(data.code){
	      case 1:
		  $('.kwotaPrezenty').each(function(index, item){
				$(item).html(data.sum+"ł");
			});
		  $('#bonyInfo').show();
		  $('input[name=dodajKod]').val('Tutaj wpisz kod z bonu');
	      break;
		  case 2:
		  $('input[name=dodajKod]').css({'color':'red','border':' 1px solid red','font-size':'10px'});
		  $('input[name=dodajKod]').val('Zły kod. Spróbuj ponownie');
		  break;
		  case 3:
		  alert('Podany kod już jest uwzględniony');
		  break;
	   }
	   
       });
}

$(document).ready(function(){
	$('input[name=dodajKod]').click(function(){
		$(this).val('');
	});

	$('input[name=dodajKod]').blur(function(){
		if($(this).val()=='') $(this).val('Tutaj wpisz kod z bonu');
	});
      $('input[name=dodajKod]').keypress(function(e) {
      if(e.keyCode == 13) {
		e.preventDefault();
		debentureAction();
      }
      });
	$('input[name=dodajKodWyslij]').click(function(event){
	   event.preventDefault();
	   debentureAction();

	});

});