Correction du nouveau format de la sauvegarde de formulaire local
This commit is contained in:
parent
da91926146
commit
88a8f5720a
|
@ -444,10 +444,10 @@ inputPhoneFiche.prototype.sync = function(){
|
||||||
|
|
||||||
/* (4) Sinon, on utilise les données de la MINI */
|
/* (4) Sinon, on utilise les données de la MINI */
|
||||||
}else{
|
}else{
|
||||||
ficheData[key].sexe = miniData.sexe;
|
ficheData[key].sexe = miniData.sexe;
|
||||||
ficheData[key].age = miniData.age;
|
ficheData[key].age = miniData.age;
|
||||||
ficheData[key].studies = miniData.studies;
|
ficheData[key].studies = miniData.studies;
|
||||||
ficheData[key].loc = miniData.loc;
|
ficheData[key].loc = miniData.loc;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* (5) On enregistre les modifications */
|
/* (5) On enregistre les modifications */
|
||||||
|
|
|
@ -269,7 +269,7 @@
|
||||||
$checkMini = isset($mini['uid']) && is_numeric($mini['uid']);
|
$checkMini = isset($mini['uid']) && is_numeric($mini['uid']);
|
||||||
$checkMini = $checkMini && isset($mini['sexe']) && is_array($mini['sexe']);
|
$checkMini = $checkMini && isset($mini['sexe']) && is_array($mini['sexe']);
|
||||||
$checkMini = $checkMini && isset($mini['age']) && is_string($mini['age']);
|
$checkMini = $checkMini && isset($mini['age']) && is_string($mini['age']);
|
||||||
$checkMini = $checkMini && isset($mini['job']) && is_string($mini['job']);
|
$checkMini = $checkMini && isset($mini['studies']) && is_string($mini['studies']);
|
||||||
$checkMini = $checkMini && isset($mini['loc']) && is_array($mini['loc']);
|
$checkMini = $checkMini && isset($mini['loc']) && is_array($mini['loc']);
|
||||||
|
|
||||||
// Si erreur des attributs des mini-fiches incorrects ou manquants
|
// Si erreur des attributs des mini-fiches incorrects ou manquants
|
||||||
|
@ -287,7 +287,6 @@
|
||||||
$checkFiche = $checkFiche && isset($fiches['age']) && is_string($fiches['age']);
|
$checkFiche = $checkFiche && isset($fiches['age']) && is_string($fiches['age']);
|
||||||
$checkFiche = $checkFiche && isset($fiches['job']) && is_string($fiches['job']);
|
$checkFiche = $checkFiche && isset($fiches['job']) && is_string($fiches['job']);
|
||||||
$checkFiche = $checkFiche && isset($fiches['loc']) && is_array($fiches['loc']);
|
$checkFiche = $checkFiche && isset($fiches['loc']) && is_array($fiches['loc']);
|
||||||
$checkFiche = $checkFiche && isset($fiches['loc2']) && is_array($fiches['loc2']);
|
|
||||||
$checkFiche = $checkFiche && isset($fiches['studies']) && is_string($fiches['studies']);
|
$checkFiche = $checkFiche && isset($fiches['studies']) && is_string($fiches['studies']);
|
||||||
$checkFiche = $checkFiche && isset($fiches['famsit']) && is_array($fiches['famsit']);
|
$checkFiche = $checkFiche && isset($fiches['famsit']) && is_array($fiches['famsit']);
|
||||||
$checkFiche = $checkFiche && isset($fiches['reltype']) && is_array($fiches['reltype']);
|
$checkFiche = $checkFiche && isset($fiches['reltype']) && is_array($fiches['reltype']);
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue