Commit 7a830c75 by Etienne Freiss

sans street2

parent 05ef2f71
Pipeline #1483 passed with stage
in 1 minute 31 seconds
...@@ -34,7 +34,7 @@ function init_my_info() { ...@@ -34,7 +34,7 @@ function init_my_info() {
} else { } else {
$(".member_mobile").hide(); $(".member_mobile").hide();
} }
$(".member_phone").empty(); $(".member_phone").empty();
if (partner_data.phone !== "" && partner_data.phone !== "False" && partner_data.phone !== false && partner_data.phone !== null) { if (partner_data.phone !== "" && partner_data.phone !== "False" && partner_data.phone !== false && partner_data.phone !== null) {
$(".member_phone") $(".member_phone")
...@@ -47,60 +47,60 @@ function init_my_info() { ...@@ -47,60 +47,60 @@ function init_my_info() {
$(".member_phone_line").hide(); $(".member_phone_line").hide();
} }
$('#edit_address').off('click').on('click', (e) => { $('#edit_address').off('click')
$("#street_form").val(partner_data.street); .on('click', () => {
$("#street2_form").val(partner_data.street2); $("#street_form").val(partner_data.street);
$("#city_form").val(partner_data.city); // $("#street2_form").val(partner_data.street2);
$('#edit_address_value').hide(); $("#city_form").val(partner_data.city);
$('#edit_address_form').show(); $('#edit_address_value').hide();
}); $('#edit_address_form').show();
$('#cancel_edit_address').on('click', (e) => { });
$('#edit_address_form').hide(); $('#cancel_edit_address').
$('#edit_address_value').show(); on('click', () => {
}); $('#edit_address_form').hide();
$('#save_edit_address').off('click').on('click', (e) => { $('#edit_address_value').show();
data= []; });
data['street']= $("#street_form").val(); $('#save_edit_address').off('click')
data['street2']= $("#street2_form").val(); .on('click', () => {
data['city']= $("#city_form").val(); data= [];
data['street']= $("#street_form").val();
saveInfo(data, 'address') // data['street2']= $("#street2_form").val();
}); data['city']= $("#city_form").val();
$('#edit_phone').off('click').on('click', (e) => { saveInfo(data, 'address');
$("#phone_form").val(partner_data.phone); });
$("#mobile_form").val(partner_data.mobile);
$('#edit_phone_value').hide(); $('#edit_phone').off('click')
$('#edit_phone_form').show(); .on('click', () => {
}); $("#phone_form").val(partner_data.phone);
$('#cancel_edit_phone').off('click').on('click', (e) => { $("#mobile_form").val(partner_data.mobile);
$('#edit_phone_form').hide(); $('#edit_phone_value').hide();
$('#edit_phone_value').show(); $('#edit_phone_form').show();
}); });
$('#save_edit_phone').off('click').on('click', (e) => { $('#cancel_edit_phone').off('click')
console.log('ici'); .on('click', () => {
data =[]; $('#edit_phone_form').hide();
data['phone']= $("#phone_form").val(); $('#edit_phone_value').show();
data['mobile']= $("#mobile_form").val(); });
$('#save_edit_phone').off('click')
.on('click', () => {
saveInfo(data, 'phone') console.log('ici');
}); data =[];
data['phone']= $("#phone_form").val();
data['mobile']= $("#mobile_form").val();
saveInfo(data, 'phone');
});
} }
function saveInfo(data, field){ function saveInfo(data, field) {
tData = '&idPartner=' + partner_data.partner_id tData = '&idPartner=' + partner_data.partner_id
+ '&shift_type=' + partner_data.shift_type + '&shift_type=' + partner_data.shift_type
+ '&verif_token=' + partner_data.verif_token + '&verif_token=' + partner_data.verif_token;
for(d in data){ for (d in data) {
tData+="&"+d+"="+data[d]; tData+="&"+d+"="+data[d];
} }
tUrl = '/members/save_partner_info'; tUrl = '/members/save_partner_info';
$.ajax({ $.ajax({
type: 'POST', type: 'POST',
...@@ -108,22 +108,22 @@ function saveInfo(data, field){ ...@@ -108,22 +108,22 @@ function saveInfo(data, field){
dataType:"json", dataType:"json",
data: tData, data: tData,
timeout: 3000, timeout: 3000,
success: function(res) { success: function() {
for(d in data){ for (d in data) {
partner_data[d]=data[d] partner_data[d]=data[d];
} }
init_my_info(); init_my_info();
if(field == 'address'){ if (field == 'address') {
$('#edit_address_form').hide(); $('#edit_address_form').hide();
$('#edit_address_value').show(); $('#edit_address_value').show();
} }
if(field == 'phone'){ if (field == 'phone') {
$('#edit_phone_form').hide(); $('#edit_phone_form').hide();
$('#edit_phone_value').show(); $('#edit_phone_value').show();
} }
}, },
error: function(error) { error: function(error) {
console.log(error) console.log(error);
} }
}); });
} }
\ No newline at end of file
...@@ -64,7 +64,7 @@ ...@@ -64,7 +64,7 @@
</div> </div>
<div class="my_info_line_right member_address_area1" id="edit_address_form"> <div class="my_info_line_right member_address_area1" id="edit_address_form">
<input type="text" name="street_form" id="street_form" placeholder="Rue"> <input type="text" name="street_form" id="street_form" placeholder="Rue">
<input type="text" name="street2_form" id="street2_form" placeholder="Complément"> <!-- <input type="text" name="street2_form" id="street2_form" placeholder="Complément"> -->
<input type="text" name="city_form" id="city_form" placeholder="Ville"> <br> <input type="text" name="city_form" id="city_form" placeholder="Ville"> <br>
<span id="cancel_edit_address"><i class="fas fa-times tile_icon edit-btn"></i></span> <span id="cancel_edit_address"><i class="fas fa-times tile_icon edit-btn"></i></span>
<span id="save_edit_address"><i class="fas fa-check tile_icon edit-btn"></i></span> <span id="save_edit_address"><i class="fas fa-check tile_icon edit-btn"></i></span>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment