2017-03-30 17:00:35 +02:00
|
|
|
$(document).on('turbolinks:load', button_edit_procedure_init);
|
2016-08-24 11:40:53 +02:00
|
|
|
|
|
|
|
function button_edit_procedure_init(){
|
2017-04-04 16:15:33 +02:00
|
|
|
buttons_api_carto();
|
|
|
|
button_cerfa();
|
|
|
|
button_individual();
|
2016-08-24 11:40:53 +02:00
|
|
|
}
|
2015-12-08 10:11:58 +01:00
|
|
|
|
|
|
|
function buttons_api_carto () {
|
|
|
|
|
2017-04-12 11:12:05 +02:00
|
|
|
$("#procedure-module-api-carto-use-api-carto").on('change', function() {
|
|
|
|
$("#modules-api-carto").toggle()
|
2017-04-04 16:15:33 +02:00
|
|
|
});
|
2015-12-08 10:11:58 +01:00
|
|
|
|
2017-04-12 11:12:05 +02:00
|
|
|
if ($('#procedure-module-api-carto-use-api-carto').is(':checked'))
|
|
|
|
$("#modules-api-carto").show();
|
2016-08-24 11:40:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function button_cerfa () {
|
|
|
|
|
2017-04-04 16:15:33 +02:00
|
|
|
$("#procedure_cerfa_flag").on('change', function() {
|
2017-04-12 11:12:05 +02:00
|
|
|
$("#procedure-lien-demarche").toggle()
|
2017-04-04 16:15:33 +02:00
|
|
|
});
|
2016-08-24 11:40:53 +02:00
|
|
|
|
2017-04-04 16:15:33 +02:00
|
|
|
if ($('#procedure_cerfa_flag').is(':checked'))
|
2017-04-12 11:12:05 +02:00
|
|
|
$("#procedure-lien-demarche").show();
|
2016-10-05 10:48:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function button_individual () {
|
|
|
|
|
2017-04-04 16:15:33 +02:00
|
|
|
$("#procedure_for_individual").on('change', function() {
|
2017-04-12 11:12:05 +02:00
|
|
|
$("#individual-with-siret").toggle()
|
2017-04-04 16:15:33 +02:00
|
|
|
});
|
2016-10-05 10:48:11 +02:00
|
|
|
|
2017-04-04 16:15:33 +02:00
|
|
|
if ($('#procedure_for_individual').is(':checked'))
|
2017-04-12 11:12:05 +02:00
|
|
|
$("#individual-with-siret").show();
|
2017-03-30 17:00:35 +02:00
|
|
|
}
|