Liste des pièces nécessaires pour vos formalités
Identifiez les documents obligatoires à fournir pour votre formalité d'entreprise
Quel type de formalité souhaitez-vous faire ?
Aucune formalité ne correspond à cette recherche.
Quelques précisions
Veuillez répondre à toutes les questions
";
var iframe = document.createElement("iframe");
iframe.setAttribute("aria-hidden", "true");
iframe.style.cssText = "position:fixed;right:0;bottom:0;width:0;height:0;border:0;";
document.body.appendChild(iframe);
var doc = iframe.contentWindow.document;
doc.open(); doc.write(skeleton); doc.close();
/* Insertion sûre : textContent + clonage de nœud (aucun re-parse de HTML) */
doc.title = nomFichier; // → nom du fichier PDF proposé
doc.querySelector(".pdf-title").textContent = titre;
doc.querySelector(".pdf-sub").textContent = "Document généré le " + dateFr;
var clone = doc.importNode(src, true);
clone.removeAttribute("id");
doc.getElementById("pdf-mount").appendChild(clone);
setTimeout(function(){
iframe.contentWindow.focus();
iframe.contentWindow.print();
setTimeout(function(){ iframe.remove(); }, 1000);
}, 120);
});
/* ── Défaut au chargement : Constitutions > Création EURL/SARL ── */
(function(){
var dg = DATA.groupes.filter(function(g){ return g.i === 1; })[0];
var di = DATA.items.filter(function(it){ return it.k === 'lb:CREATION_EURL'; })[0];
if (!dg || !di) return;
groupeActif = dg;
document.querySelectorAll('#groupes .choix-btn').forEach(function(b){
if (b.textContent === dg.l.toUpperCase()) b.classList.add('actif');
});
afficherFormalites(DATA.items.filter(function(it){ return it.g === dg.i; }), dg.t);
itemActif = di;
document.querySelectorAll('#formalites .choix-btn').forEach(function(b){
if (b.textContent === di.n) b.classList.add('actif');
});
afficherResultatLB(di);
})();
})();