Text copy

This commit is contained in:
2025-12-27 20:41:08 +00:00
parent 1a44f868ca
commit 99ca118fe2
6 changed files with 145 additions and 4 deletions

View File

@@ -110,4 +110,10 @@ class Police extends Modele {
return $ligne['nb_non_facturees'];
}
public function getTextecp($id) {
$sql = 'select texteCp from police where (id=?)';
$textecp = $this->executerRequete($sql, array($id));
return $textecp->fetch(PDO::FETCH_ASSOC);
}
}