Nombre de missions : ' + number_of_missions + '' + 'Membre vérifié : ' + verified + '
Langues : ' + languages + '
' + '' + '' + '' + '
'; $('#resultsearch').append(result); }); } }) }); /** * CALCUL EN DIRECT DU PRIX DE LA PRESTATIONS * */ var price_surface = 0; var price_linge = 0; var price_arriveedepart = 29; var t_price = 0; var exist_errors = 0; $('#select_change_surface_ajax').change(function () { var surface = $(this).val(); var st_price = parseInt($('#st_price').html()); var st_initial_price = parseInt($('input[name="initial_price"]').val()); var number_format = '.00'; $('#st_price').html(st_initial_price+number_format); $.ajax({ url: '/ajax/changesurface', dataType: 'json', method: 'POST', data: { id_concierge: $('#from_search_concierge').val(), surface: surface }, success: function (data) { if('empty' === data.error) { if(exist_errors <= 1) { exist_errors += 1; } console.log('NBR D\'ERREUR : ' + exist_errors); $('#messages').show(); $('#messages').html(' Attention ce concierge ne propose pas la surface séléctionné
'); setTimeout(function () { $('#messages').fadeOut('slow'); }, 3000); $('#submit_cart').prop('disabled', true); } else { if(exist_errors >= 1) { exist_errors -= 1; } console.log('NBR D\'ERREUR : ' + exist_errors); $('messages').html(''); $('#submit_cart').prop('disabled', false); } if(exist_errors>=1) { $('#submit_cart').prop('disabled', true); } $('#price_surface').html(data.price+number_format+' €'); st_price = st_initial_price+data.price; price_surface = parseInt(data.price); if(0 !== price_linge) { st_price = st_initial_price+data.price+price_linge; t_price = st_price; } console.log('NOUVEAU SOUS TOTAL : ' + st_price); $('#st_price').html(st_price+number_format); $('#t_price').html(st_price+number_format+' €'); $('input[name="post_price"]').val(st_price); } }); }); $('#select_change_linge_ajax').change(function () { var linge = $(this).val(); var st_price = parseInt($('#st_price').html()); var st_initial_price = parseInt($('input[name="initial_price"]').val()); var number_format = '.00'; $.ajax({ url: '/ajax/changesetlinge', dataType: 'json', method: 'POST', data: { id_concierge: $('#from_search_concierge').val(), linge: linge }, success: function (data) { if('empty' === data.error) { if(exist_errors <= 1) { exist_errors += 1; } console.log('NBR D\'ERREUR : ' + exist_errors); $('#messages').show(); $('#messages').html(' Attention ce concierge ne propose pas le nombre de set de linge que vous avez séléctionné
'); setTimeout(function () { $('#messages').fadeOut('slow'); }, 3000); $('#submit_cart').prop('disabled', true); } else { if(exist_errors >= 1) { exist_errors -= 1; } console.log('NBR D\'ERREUR : ' + exist_errors); $('#messages').html(''); $('#submit_cart').prop('disabled', false); } if(exist_errors>=1) { $('#submit_cart').prop('disabled', true); } $('#price_linge').html(data.price+number_format+' €'); if(null !== price_surface) { st_price = st_initial_price+data.price; } price_linge = parseInt(data.price); if(0 !== price_surface) { st_price = st_initial_price+data.price+price_linge; t_price = st_price; } console.log('NOUVEAU SOUS TOTAL : ' + st_price); $('#st_price').html(st_price+number_format); $('#t_price').html(st_price+number_format+' €'); $('input[name="post_price"]').val(st_price); } }); });