This commit is contained in:
2026-02-14 13:43:58 +00:00
parent f5e04f3452
commit 90b79c9d5c
2 changed files with 29 additions and 8 deletions

View File

@@ -1301,5 +1301,12 @@ public function getTarifActeAdherent($idAdherent)
$this->executerRequete($sql, array($idOtpprestation, $otpStatus, $user));
}
public function getVersionTagCarteEncours() {
$sql = 'SELECT versionTagCarte FROM societeuser LIMIT 1;';
$resultat = $this->executerRequete($sql);
$ligne = $resultat->fetch(PDO::FETCH_ASSOC);
return $ligne['versionTagCarte'];
}
}