19 lines
694 B
JavaScript
Executable File
19 lines
694 B
JavaScript
Executable File
// ---------------------------------------------------
|
|
// Modification adresse fact
|
|
// ---------------------------------------------------
|
|
function validerModifFact (){
|
|
debugLocal=0;
|
|
if (debugLocal==1) alert('valider modifFact : '+document.getElementById('flagUpdFact').value);
|
|
if (document.getElementById('flagUpdFact').value=='Oui') {
|
|
document.getElementById('codeOpe').value='faireMajFact';
|
|
document.adresseFact.submit();
|
|
}
|
|
else continuerVersLiv();
|
|
}
|
|
|
|
// ---------------------------------------------------
|
|
// Redirection vers addr Liv
|
|
// ---------------------------------------------------
|
|
function continuerVersLiv(){
|
|
self.location.href = 'adresse-livraison';
|
|
} |