1 |
mbroquet |
3730 |
<?php |
2 |
|
|
/** |
3 |
|
|
* Classe permettant de factoriser la génération du rendu des requêtes mémorisées |
4 |
|
|
* |
5 |
|
|
* Requêteur |
6 |
|
|
* principe de REQMO (requête memorisée): |
7 |
|
|
* permet de faire des requêtes memorisées |
8 |
|
|
* la requête est paramétrée en sql/typedebase/langue/obj.reqmo.inc.php |
9 |
|
|
* $reqmo['sql'] = requête paramétrable |
10 |
|
|
* les paramètres sont entre crochets |
11 |
|
|
* type de paramètre = $reqmo['parametre'] |
12 |
|
|
* checked : case à cocher pour que la zone soit prise en compte |
13 |
|
|
* liste : liste de valeur proposé pour paramétrer une sélection ou un tri |
14 |
|
|
* select : liste de valeur proposé pour paramétrer une sélection ou un tri |
15 |
|
|
* d'après une requête dans une table |
16 |
|
|
* $reqmo['libelle'] = libéllé de la requête |
17 |
|
|
* $reqmo['separateur'] = séparateur pour fichier csv |
18 |
|
|
* |
19 |
|
|
* @package openfoncier |
20 |
|
|
* @version SVN : $Id: reqmo.class.php 6046 2016-02-26 15:27:06Z fmichon $ |
21 |
|
|
*/ |
22 |
|
|
|
23 |
|
|
class reqmo { |
24 |
|
|
|
25 |
|
|
// utils |
26 |
|
|
var $f = ""; |
27 |
|
|
|
28 |
|
|
// Liste des fichiers reqmo |
29 |
|
|
var $tab_reqmo = array(); |
30 |
|
|
|
31 |
|
|
// Type de rendu |
32 |
|
|
var $sortie = ""; |
33 |
|
|
|
34 |
|
|
var $info; |
35 |
|
|
|
36 |
|
|
var $obj; |
37 |
|
|
|
38 |
|
|
var $extension; |
39 |
|
|
|
40 |
|
|
function __construct($f, $obj, $extension = "reqmo") { |
41 |
|
|
$this->f = $f; |
42 |
|
|
$this->obj = $obj; |
43 |
|
|
$this->extension = $extension; |
44 |
|
|
}// fin constructeur |
45 |
|
|
|
46 |
|
|
private function getReqmoFile() { |
47 |
|
|
$dir = getcwd(); |
48 |
|
|
$dir = substr($dir, 0, strlen($dir) - 4)."/sql/".OM_DB_PHPTYPE."/"; |
49 |
|
|
$dossier = opendir($dir); |
50 |
|
|
while ($entree = readdir($dossier)) { |
51 |
|
|
if (strstr($entree, $this->extension)) { |
52 |
|
|
|
53 |
|
|
// Si l'extention du fichier $entree est .inc.php |
54 |
|
|
if (strpos($entree, ".inc.php")) { |
55 |
|
|
$filext = strlen($this->extension)+9; |
56 |
|
|
} |
57 |
|
|
// Sinon on considere qu'elle est -> .inc (compatibilite) |
58 |
|
|
else { |
59 |
|
|
$filext = strlen($this->extension)+5; |
60 |
|
|
} |
61 |
|
|
|
62 |
|
|
array_push($this->tab_reqmo, |
63 |
|
|
array('file' => substr($entree, 0, strlen($entree) - $filext))); |
64 |
|
|
} |
65 |
|
|
} |
66 |
|
|
closedir($dossier); |
67 |
|
|
asort($this->tab_reqmo); |
68 |
|
|
|
69 |
|
|
return $this->tab_reqmo; |
70 |
|
|
} |
71 |
|
|
|
72 |
|
|
function displayReqmoList($url = "../scr/requeteur.php") { |
73 |
|
|
$this->getReqmoFile(); |
74 |
|
|
echo "\n<div id=\"".$this->extension."\">\n"; |
75 |
|
|
// |
76 |
|
|
echo "<fieldset class=\"cadre ui-corner-all ui-widget-content\">\n"; |
77 |
|
|
// |
78 |
|
|
echo "\t<legend class=\"ui-corner-all ui-widget-content ui-state-active\">"; |
79 |
|
|
echo _("Choix de la requete memorisee"); |
80 |
|
|
echo "</legend>\n"; |
81 |
|
|
// |
82 |
|
|
echo "\t<div class=\"list\">\n"; |
83 |
|
|
if (count($this->tab_reqmo) == 0) { |
84 |
|
|
echo "<p>"; |
85 |
|
|
echo _("Il n'y a aucun element de ce type dans l'application."); |
86 |
|
|
echo "</p>"; |
87 |
|
|
} |
88 |
|
|
// |
89 |
|
|
$this->f->layout->display_start_liste_responsive(); |
90 |
|
|
// |
91 |
|
|
$nbr_elements=0; |
92 |
|
|
foreach ($this->tab_reqmo as $elem) { |
93 |
|
|
$nbr_elements=$nbr_elements+1; |
94 |
|
|
$this->f->layout->display_start_block_liste_responsive($nbr_elements); |
95 |
|
|
echo "<span>\n"; |
96 |
|
|
// |
97 |
|
|
$params = array( |
98 |
|
|
"file" => $elem['file'] |
99 |
|
|
); |
100 |
|
|
// XXX passe plus par le layout dans le cas ou l'url est passée en paramètre |
101 |
|
|
// $this->f->layout->display_reqmo_lien($params); |
102 |
|
|
echo "<a "; |
103 |
|
|
echo " class=\"om-prev-icon reqmo-16\" href=\"".$url."?obj=".$params['file']."\">"; |
104 |
|
|
echo _($params['file']); |
105 |
|
|
echo "</a>"; |
106 |
|
|
|
107 |
|
|
echo "</span>\n"; |
108 |
|
|
$this->f->layout->display_close_block_liste_responsive(); |
109 |
|
|
// |
110 |
|
|
} |
111 |
|
|
$this->f->layout->display_close_liste_responsive(); |
112 |
|
|
echo "\t</div>\n"; |
113 |
|
|
// |
114 |
|
|
echo "</fieldset>\n"; |
115 |
|
|
// |
116 |
|
|
echo "</div>\n"; |
117 |
|
|
|
118 |
|
|
} |
119 |
|
|
|
120 |
|
|
/** |
121 |
|
|
* Ouverture du conteneur de contenu |
122 |
|
|
* @return [type] [description] |
123 |
|
|
*/ |
124 |
|
|
private function openContent() { |
125 |
|
|
/** |
126 |
|
|
* Ouverture du conteneur de la page |
127 |
|
|
*/ |
128 |
|
|
// |
129 |
|
|
echo "\n<div id=\"generator-generate\">\n"; |
130 |
|
|
// |
131 |
|
|
echo "<div id=\"formulaire\">\n\n"; |
132 |
|
|
// |
133 |
|
|
$this->f->layout->display_start_navbar(); |
134 |
|
|
echo "<ul>\n"; |
135 |
|
|
if (isset($reqmo["reqmo_libelle"])) { |
136 |
|
|
echo "\t<li><a href=\"#tabs-1\">". |
137 |
|
|
_("Export de : "). |
138 |
|
|
_($reqmo["reqmo_libelle"])."</a></li>\n"; |
139 |
|
|
} elseif (isset($reqmo["libelle"])) { |
140 |
|
|
echo "\t<li><a href=\"#tabs-1\">". |
141 |
|
|
_("Export de : "). |
142 |
|
|
_($reqmo["libelle"])."</a></li>\n"; |
143 |
|
|
} else { |
144 |
|
|
echo "\t<li><a href=\"#tabs-1\">". |
145 |
|
|
_("Export de : ")._($this->obj). |
146 |
|
|
"</a></li>\n"; |
147 |
|
|
} |
148 |
|
|
echo "</ul>\n"; |
149 |
|
|
// |
150 |
|
|
$this->f->layout->display_stop_navbar(); |
151 |
|
|
echo "\n<div id=\"tabs-1\">\n"; |
152 |
|
|
} |
153 |
|
|
|
154 |
|
|
/** |
155 |
|
|
* Affichage du formulaire de la requête mémorisée |
156 |
|
|
* @param [type] $validation [description] |
157 |
|
|
* @return [type] [description] |
158 |
|
|
*/ |
159 |
|
|
function displayForm( |
160 |
|
|
$validation, |
161 |
|
|
$urlRequet = "../scr/requeteur.php", |
162 |
|
|
$urlRetour = "../scr/reqmo.php", $error = false) { |
163 |
|
|
|
164 |
|
|
$this->openContent(); |
165 |
|
|
/** |
166 |
|
|
* Ouverture du formulaire |
167 |
|
|
*/ |
168 |
|
|
// Ouverture de la balise formulaire |
169 |
|
|
echo "<form method=\"post\" action=\"".$urlRequet."?obj=".$this->obj. |
170 |
|
|
"&step=1\" name=\"f1\">\n"; |
171 |
|
|
$param["obj"]=$this->obj; |
172 |
|
|
$param["db"]= $this->f->db; |
173 |
|
|
$param["validation"]=$validation; |
174 |
|
|
$param["cptemp"]= 0; |
175 |
|
|
$param["cpts"]=0; |
176 |
|
|
$param["cptsel"]=0; |
177 |
|
|
$param["extension"]=$this->extension; |
178 |
|
|
$param["error"]=$error; |
179 |
|
|
// XXX Plus possible d'utiliser cette méthode |
180 |
|
|
// $this->f->layout->display_requeteur_formulaire($param, $this->f); |
181 |
|
|
$this->display_requeteur_formulaire($param, $this->f); |
182 |
|
|
// |
183 |
|
|
// Affichage des actions de controles du formulaire |
184 |
|
|
echo "<div class=\"formControls\">"; |
185 |
|
|
// Bouton de validation du formulaire |
186 |
|
|
$param["input"]="<input type=\"submit\" name=\"valid.reqmo\" value=\"". |
187 |
|
|
_("Executer la requete sur :")." '"._($this->obj)."'\" />"; |
188 |
|
|
$this->f->layout->display_input($param); |
189 |
|
|
// Lien retour |
190 |
|
|
// XXX Plus possible |
191 |
|
|
$param["lien"]="<a href=\"".$urlRetour."\" class=\"retour\">"._("Retour")."</a>"; |
192 |
|
|
$this->f->layout->display_lien_retour($param); |
193 |
|
|
// Fermeture du conteneur des actions de controles du formulaire |
194 |
|
|
echo "</div>"; |
195 |
|
|
// Fermeture de la balise formulaire |
196 |
|
|
echo "\n</form>\n"; |
197 |
|
|
$this->closeContent(); |
198 |
|
|
} |
199 |
|
|
|
200 |
|
|
/** |
201 |
|
|
* Fermeture du conteneur de contenu |
202 |
|
|
* @return [type] [description] |
203 |
|
|
*/ |
204 |
|
|
private function displayBoutonRetour($url) { |
205 |
|
|
// Affichage des actions de controles du formulaire |
206 |
|
|
echo "<div class=\"formControls\">"; |
207 |
|
|
// Lien retour |
208 |
|
|
$param["lien"]="<a href=\"".$url."?obj=".$this->obj. |
209 |
|
|
"&step=0\" class=\"retour\">"._("Retour")."</a>"; |
210 |
|
|
$this->f->layout->display_lien_retour($param); |
211 |
|
|
// Fermeture du conteneur des actions de controles du formulaire |
212 |
|
|
echo "</div>"; |
213 |
|
|
} |
214 |
|
|
|
215 |
|
|
/** |
216 |
|
|
* Fermeture du conteneur de contenu |
217 |
|
|
* @return [type] [description] |
218 |
|
|
*/ |
219 |
|
|
private function closeContent() { |
220 |
|
|
// |
221 |
|
|
echo "</div>\n"; |
222 |
|
|
// |
223 |
|
|
echo "</div>\n"; |
224 |
|
|
// |
225 |
|
|
echo "</div>\n"; |
226 |
|
|
} |
227 |
|
|
|
228 |
|
|
function prepareRequest($reqmo) { |
229 |
|
|
//Variable qui sert à vérifier qu'au moins un des critères a été sélectionné |
230 |
|
|
$checked = false; |
231 |
|
|
$hasCritere = false; |
232 |
|
|
// |
233 |
|
|
$temp = explode ("[", $reqmo["sql"]); |
234 |
|
|
for($i = 1; $i < count($temp); $i++) { |
235 |
|
|
$temp1 = explode ("]", $temp [$i]); |
236 |
|
|
$temp4 = explode (" as ", $temp1 [0]); |
237 |
|
|
if (isset ($temp4 [1])) { |
238 |
|
|
$temp5 = $temp4 [1]; // uniquement as |
239 |
|
|
} else { |
240 |
|
|
$temp5 = $temp1 [0]; // en entier |
241 |
|
|
} |
242 |
|
|
|
243 |
|
|
if ($this->f->get_submitted_post_value($temp5) !== null && |
244 |
|
|
$this->f->get_submitted_post_value($temp5) !== '') { |
245 |
|
|
$temp2 = $this->f->get_submitted_post_value($temp5); |
246 |
|
|
} else { |
247 |
|
|
$temp2 = ""; |
248 |
|
|
} |
249 |
|
|
// **** |
250 |
|
|
if(isset($reqmo[$temp5])){ |
251 |
|
|
if($reqmo[$temp5]=="checked") { |
252 |
|
|
$hasCritere = true; |
253 |
|
|
if ($this->f->get_submitted_post_value($temp5) == 'Oui'|| |
254 |
|
|
$this->f->get_submitted_post_value($temp5) === '') { |
255 |
|
|
$reqmo ['sql'] = str_replace ("[".$temp1[0]."]", |
256 |
|
|
$temp1[0], |
257 |
|
|
$reqmo['sql']); |
258 |
|
|
// |
259 |
|
|
$checked=true; |
260 |
|
|
} else { |
261 |
|
|
$reqmo['sql']=str_replace("[".$temp1[0]."],", |
262 |
|
|
'', |
263 |
|
|
$reqmo['sql']); |
264 |
|
|
$reqmo['sql']=str_replace(",[".$temp1[0]."]", |
265 |
|
|
'', |
266 |
|
|
$reqmo['sql']); |
267 |
|
|
$reqmo['sql']=str_replace(", [".$temp1[0]."]", |
268 |
|
|
'', |
269 |
|
|
$reqmo['sql']); |
270 |
|
|
$reqmo['sql']=str_replace("[".$temp1[0]."]", |
271 |
|
|
'', |
272 |
|
|
$reqmo['sql']); |
273 |
|
|
} |
274 |
|
|
} else { |
275 |
|
|
if ($temp2=="") return _("Veuillez saisir toutes les valeurs du formulaire."); |
276 |
|
|
elseif (!$this->hasType($temp2, $reqmo['type'][$temp1[0]])) return _("Veuillez saisir les valeurs au bon format."); |
277 |
|
|
$reqmo['sql']=str_replace("[".$temp1[0]."]", |
278 |
|
|
$temp2, |
279 |
|
|
$reqmo['sql']); |
280 |
|
|
} |
281 |
|
|
//**** |
282 |
|
|
} else { |
283 |
|
|
if ($temp2=="") return _("Veuillez saisir toutes les valeurs du formulaire."); |
284 |
|
|
elseif (!$this->hasType($temp2, $reqmo['type'][$temp1[0]])) return _("Veuillez saisir les valeurs au bon format."); |
285 |
|
|
$reqmo['sql']=str_replace("[".$temp1[0]."]", |
286 |
|
|
$temp2, |
287 |
|
|
$reqmo['sql']); |
288 |
|
|
} |
289 |
|
|
//**** |
290 |
|
|
$temp1[0]=""; |
291 |
|
|
} |
292 |
|
|
// |
293 |
|
|
if (!$checked&&$hasCritere) return _("Veuillez choisir au moins un critère."); |
294 |
|
|
// |
295 |
|
|
$blanc = 0; |
296 |
|
|
$temp = ""; |
297 |
|
|
for($i=0;$i<strlen($reqmo['sql']);$i++) { |
298 |
|
|
if (substr($reqmo['sql'], $i, 1)==chr(13) or |
299 |
|
|
substr($reqmo['sql'], $i, 1)==chr(10) or |
300 |
|
|
substr($reqmo['sql'], $i, 1)==chr(32)) { |
301 |
|
|
if ($blanc==0){ |
302 |
|
|
$temp=$temp.chr(32); |
303 |
|
|
} |
304 |
|
|
$blanc=1; |
305 |
|
|
} else { |
306 |
|
|
$temp=$temp.substr($reqmo['sql'],$i,1); |
307 |
|
|
$blanc=0; |
308 |
|
|
} |
309 |
|
|
} |
310 |
|
|
$reqmo['sql']=$temp ; |
311 |
|
|
$reqmo['sql']=str_replace(',,', ',', $reqmo['sql']); |
312 |
|
|
$reqmo['sql']=str_replace(', ,', ',', $reqmo['sql']); |
313 |
|
|
$reqmo['sql']=str_replace(', from', ' from', $reqmo['sql']); |
314 |
|
|
$reqmo['sql']=str_replace(', FROM', ' FROM', $reqmo['sql']); |
315 |
|
|
$reqmo['sql']=str_replace('select ,', 'select ', $reqmo['sql']); |
316 |
|
|
$reqmo['sql']=str_replace('SELECT ,', 'SELECT ', $reqmo['sql']); |
317 |
|
|
// post limite |
318 |
|
|
if ($this->f->get_submitted_post_value('limite') !== null) { |
319 |
|
|
$limite = $this->f->get_submitted_post_value('limite'); |
320 |
|
|
} else { |
321 |
|
|
$limite = 100; |
322 |
|
|
} |
323 |
|
|
// post sortie |
324 |
|
|
if ($this->f->get_submitted_post_value('sortie') !== null) { |
325 |
|
|
$sortie= $this->f->get_submitted_post_value('sortie'); |
326 |
|
|
} else { |
327 |
|
|
$sortie ='tableau'; |
328 |
|
|
} |
329 |
|
|
// |
330 |
|
|
if($sortie =='tableau'&&!is_numeric($limite)){ |
331 |
|
|
return _("Veuillez saisir une valeur numérique pour le nombre limite d'enregistrement à afficher."); |
332 |
|
|
} |
333 |
|
|
// limite uniquement pour tableau |
334 |
|
|
if ($sortie =='tableau') { |
335 |
|
|
$reqmo['sql']= $reqmo['sql']." limit ".$limite; |
336 |
|
|
} |
337 |
|
|
$this->reqmo = $reqmo; |
338 |
|
|
return true; |
339 |
|
|
} |
340 |
|
|
|
341 |
|
|
function displayTable($url = "../scr/requeteur.php") { |
342 |
|
|
// execution de la requete |
343 |
|
|
$res_reqmo = $this->f->db-> query ($this->reqmo['sql']); |
344 |
|
|
$this->f->isDatabaseError($res_reqmo); |
345 |
|
|
|
346 |
|
|
$this->info = $res_reqmo -> tableInfo (); |
347 |
|
|
// |
348 |
|
|
echo " "; |
349 |
|
|
$param['class']="tab"; |
350 |
|
|
$param['idcolumntoggle']="requeteur"; |
351 |
|
|
$this->f->layout->display_table_start($param); |
352 |
|
|
//echo "<table class=\"tab-tab\">\n"; |
353 |
|
|
// |
354 |
|
|
echo "<thead><tr class=\"ui-tabs-nav ui-accordion ui-state-default tab-title\">"; |
355 |
|
|
$key=0; |
356 |
|
|
foreach($this->info as $elem) { |
357 |
|
|
$param = array( |
358 |
|
|
"key" => $key, |
359 |
|
|
"info" => $this->info |
360 |
|
|
); |
361 |
|
|
$this->f->layout->display_table_cellule_entete_colonnes($param); |
362 |
|
|
echo "<center>"._($elem['name'])."</center></th>"; |
363 |
|
|
$key=$key+1; |
364 |
|
|
} |
365 |
|
|
echo "</tr></thead>\n"; |
366 |
|
|
// |
367 |
|
|
$cptenr = 0; |
368 |
|
|
while ($row=& $res_reqmo->fetchRow()) { |
369 |
|
|
// |
370 |
|
|
echo "<tr class=\"tab-data ".($cptenr % 2 == 0 ? "odd" : "even")."\">\n"; |
371 |
|
|
// |
372 |
|
|
$cptenr = $cptenr + 1; |
373 |
|
|
$i = 0; |
374 |
|
|
foreach ($row as $elem) { |
375 |
|
|
if (is_numeric($elem)) { |
376 |
|
|
echo "<td class='resultrequete' align='right'>"; |
377 |
|
|
} else { |
378 |
|
|
echo "<td class='resultrequete'>"; |
379 |
|
|
} |
380 |
|
|
$tmp=""; |
381 |
|
|
$tmp=str_replace(chr(13).chr(10), '<br>', $elem); |
382 |
|
|
echo $tmp."</td>"; |
383 |
|
|
$i++; |
384 |
|
|
} |
385 |
|
|
echo "</tr>\n"; |
386 |
|
|
} |
387 |
|
|
// |
388 |
|
|
echo "</tbody></table>\n"; |
389 |
|
|
if ($cptenr==0){ |
390 |
|
|
echo "<br>"._('aucun')." "._('enregistrement')."<br>"; |
391 |
|
|
} |
392 |
|
|
$this->displayBoutonRetour($url); |
393 |
|
|
} |
394 |
|
|
|
395 |
|
|
function displayCSV($separateur, $url = "../scr/requeteur.php") { |
396 |
|
|
|
397 |
|
|
// execution de la requete |
398 |
|
|
$res_reqmo = $this->f->db-> query ($this->reqmo['sql']); |
399 |
|
|
$this->f->isDatabaseError($res_reqmo); |
400 |
|
|
|
401 |
|
|
$this->info = $res_reqmo -> tableInfo (); |
402 |
|
|
|
403 |
|
|
$inf=""; |
404 |
|
|
foreach ($this->info as $elem) { |
405 |
|
|
$inf=$inf.$elem['name'].$separateur; |
406 |
|
|
} |
407 |
|
|
$inf .= "\n"; |
408 |
|
|
$cptenr=0; |
409 |
|
|
while ($row=& $res_reqmo->fetchRow()) { |
410 |
|
|
$cptenr=$cptenr+1; |
411 |
|
|
$i=0; |
412 |
|
|
foreach($row as $elem) { |
413 |
|
|
//**** |
414 |
|
|
$tmp=""; |
415 |
|
|
$tmp=str_replace(chr(13).chr(10), ' / ', $elem); |
416 |
|
|
$tmp=str_replace(';', ' ', $tmp); |
417 |
|
|
//***** |
418 |
|
|
$inf .= $tmp.$separateur; |
419 |
|
|
$i++; |
420 |
|
|
} |
421 |
|
|
$inf .= "\n"; |
422 |
|
|
} |
423 |
|
|
if ($cptenr==0){ |
424 |
|
|
$inf .="\n"._('aucun')." "._('enregistrement')."\n"; |
425 |
|
|
} |
426 |
|
|
|
427 |
|
|
/** |
428 |
|
|
* Écriture de l'export dans un fichier sur le disque et affichage du |
429 |
|
|
* lien de téléchargement. |
430 |
|
|
*/ |
431 |
|
|
// Composition du nom du fichier |
432 |
|
|
$nom_fichier = "export_".$this->obj.".csv"; |
433 |
|
|
// Composition des métadonnées du fichier |
434 |
|
|
$metadata_fichier = array( |
435 |
|
|
"filename" => $nom_fichier, |
436 |
|
|
"size" => strlen($inf), |
437 |
|
|
"mimetype" => "text/csv", |
438 |
|
|
); |
439 |
|
|
// Écriture du fichier |
440 |
|
|
$uid_fichier = $this->f->storage->create_temporary($inf, $metadata_fichier); |
441 |
|
|
// |
442 |
|
|
echo _("Le fichier a ete exporte, vous pouvez l'ouvrir immediatement en cliquant sur : "); |
443 |
|
|
$msg = "<a class=\"om-prev-icon trace-16\" href=\"../spg/file.php?uid=".$uid_fichier."&mode=temporary\" target=\"_blank\">"; |
444 |
|
|
$msg .= _("Telecharger le fichier")." [".$nom_fichier."]"; |
445 |
|
|
$msg .= "</a>"; |
446 |
|
|
// |
447 |
|
|
$param['lien']=$msg; |
448 |
|
|
$this->f->layout->display_lien($param); |
449 |
|
|
$msg .= "<br />"; |
450 |
|
|
$this->displayBoutonRetour($url); |
451 |
|
|
} |
452 |
|
|
|
453 |
|
|
function displayPDF($url = "../scr/requeteur.php") { |
454 |
|
|
require_once "../core/fpdf_etat.php"; |
455 |
|
|
|
456 |
|
|
$pdf = new PDF($this->reqmo['om_sousetat_orientation'], "mm", $this->reqmo['om_sousetat_format'], |
457 |
|
|
true, |
458 |
|
|
'UTF-8'); |
459 |
|
|
$pdf->setPrintHeader(false); |
460 |
|
|
// Affichage de la mention Page X/X en pied de page |
461 |
|
|
$pdf->startPageGroup(); |
462 |
|
|
$pdf->set_footer(array( |
463 |
|
|
"offset" => 12, |
464 |
|
|
"html" => sprintf( |
465 |
|
|
'<p style="text-align:center;font-size:8pt;"><em>Page %s/%s</em></p>', |
466 |
|
|
$pdf->getPageNumGroupAlias(), |
467 |
|
|
$pdf->getPageGroupAlias() |
468 |
|
|
), |
469 |
|
|
)); |
470 |
|
|
// Ajoute une nouvelle page à l'édition |
471 |
|
|
$pdf->AddPage(); |
472 |
|
|
// On récupère l'enregistrement 'om_sousetat' de la collectivité en cours dans |
473 |
|
|
// l'état 'actif' |
474 |
|
|
$niveau = $_SESSION['niveau']; |
475 |
|
|
$sql = " select * from ".DB_PREFIXE."om_sousetat "; |
476 |
|
|
$sql .= " where id='".$this->reqmo["om_sousetat"]."' "; |
477 |
|
|
$sql .= " and actif IS TRUE "; |
478 |
|
|
$sql .= " and om_collectivite='".$_SESSION['collectivite']."' "; |
479 |
|
|
$res2 = $this->f->db->query($sql); |
480 |
|
|
$this->f->addToLog("pdfetat.php: db->query(\"".$sql."\");", VERBOSE_MODE); |
481 |
|
|
$this->f->isDatabaseError($res2); |
482 |
|
|
// Si on obtient aucun résultat |
483 |
|
|
if ($res2->numrows() == 0) { |
484 |
|
|
// On libère le résultat de la requête précédente |
485 |
|
|
$res2->free(); |
486 |
|
|
// |
487 |
|
|
if ($niveau == "") { |
488 |
|
|
// On récupère l'identifiant de la collectivité de niveau 2 |
489 |
|
|
$sql = "select om_collectivite from ".DB_PREFIXE."om_collectivite "; |
490 |
|
|
$sql .= " where niveau='2' "; |
491 |
|
|
$niveau = $this->f->db->getone($sql); |
492 |
|
|
$this->f->addToLog("pdfetat.php: db->getone(\"".$sql."\");", VERBOSE_MODE); |
493 |
|
|
$this->f->isDatabaseError($niveau); |
494 |
|
|
} |
495 |
|
|
// On récupère l'enregistrement 'om_sousetat' de la collectivité de niveau |
496 |
|
|
// 2 dans l'état 'actif' |
497 |
|
|
$sql = " select * from ".DB_PREFIXE."om_sousetat "; |
498 |
|
|
$sql .= " where id='".$this->reqmo["om_sousetat"]."'"; |
499 |
|
|
$sql .= " and actif IS TRUE "; |
500 |
|
|
$sql .= " and om_collectivite='".$niveau."' "; |
501 |
|
|
$res2 = $this->f->db->query($sql); |
502 |
|
|
$this->f->addToLog("pdfetat.php: db->query(\"".$sql."\");", VERBOSE_MODE); |
503 |
|
|
$this->f->isDatabaseError($res2); |
504 |
|
|
// Si on obtient aucun résultat |
505 |
|
|
if ($res2->numrows() == 0) { |
506 |
|
|
// On libère le résultat de la requête précédente |
507 |
|
|
$res2->free(); |
508 |
|
|
// On récupère l'enregistrement 'om_sousetat' de la collectivité de |
509 |
|
|
// niveau 2 dans n'importe quel état |
510 |
|
|
$sql = " select * from ".DB_PREFIXE."om_sousetat "; |
511 |
|
|
$sql .= " where id='".$this->reqmo["om_sousetat"]."' "; |
512 |
|
|
$sql .= " and om_collectivite='".$niveau."' "; |
513 |
|
|
$res2 = $this->f->db->query($sql); |
514 |
|
|
$this->f->addToLog("pdfetat.php: db->query(\"".$sql."\");", VERBOSE_MODE); |
515 |
|
|
$this->f->isDatabaseError($res2); |
516 |
|
|
} |
517 |
|
|
} |
518 |
|
|
|
519 |
|
|
// |
520 |
|
|
while ($sousetat =& $res2->fetchRow(DB_FETCHMODE_ASSOC)) { |
521 |
|
|
$idx = ""; |
522 |
|
|
$_GET['idx'] = ""; |
523 |
|
|
// |
524 |
|
|
$titre = ''; |
525 |
|
|
$titre = $sousetat['titre']; |
526 |
|
|
$titre = str_replace("&aujourdhui", date('d/m/Y'), $titre); |
527 |
|
|
$collectivite = isset($collectivite)&&$collectivite != array()? |
528 |
|
|
$collectivite: |
529 |
|
|
$this->f->getCollectivite(); |
530 |
|
|
if (isset($collectivite) && $collectivite != array()) { |
531 |
|
|
// |
532 |
|
|
foreach (array_keys($collectivite) as $elem) { |
533 |
|
|
// |
534 |
|
|
$temp = "&".$elem; |
535 |
|
|
$titre = str_replace($temp, $collectivite[$elem], $titre); |
536 |
|
|
$sql = str_replace($temp, $collectivite[$elem], $sql); |
537 |
|
|
if ( strstr($elem, "ged_") === false && strstr($elem, "erp_") === false |
538 |
|
|
&& strstr($elem, "id_") === false && strstr($elem, "sig_") === false |
539 |
|
|
&& strstr($elem, "option_") === false ) { |
540 |
|
|
$champs_remplacement_etat[] = "&".$elem; |
541 |
|
|
} |
542 |
|
|
} |
543 |
|
|
} |
544 |
|
|
//Date au format jour_de_la_semaine jour_du_mois mois_de_l'année |
545 |
|
|
//Ex. Lundi 12 Mars |
546 |
|
|
$jourSemaine = array(_('Dimanche'),_('Lundi'),_('Mardi'),_('Mercredi'),_('Jeudi'), |
547 |
|
|
_('Vendredi'),_('Samedi')); |
548 |
|
|
$moisAnnee = array(_('Janvier'),_('Fevrier'),_('Mars'),_('Avril'),_('Mai'), |
549 |
|
|
_('Juin'),_('Juillet'),_('Aout'),_('Septembre'),_('Octobre'),_('Novembre') |
550 |
|
|
,_('Decembre')); |
551 |
|
|
$titre=str_replace("&jourSemaine",$jourSemaine[date('w')]." ".date('d')." ".$moisAnnee[date('n')-1]." ".date('Y'),$titre); |
552 |
|
|
$sousetat['titre'] = $titre; |
553 |
|
|
$sousetat['om_sql'] = $this->reqmo['sql']; |
554 |
|
|
// imprime les colonnes de la requete |
555 |
|
|
$edition = array( |
556 |
|
|
'se_font' => 'helvetica', |
557 |
|
|
'se_couleurtexte' => array(0,0,0) |
558 |
|
|
); |
559 |
|
|
$pdf->sousetatdb($this->f->db, $edition, $sousetat); |
560 |
|
|
} |
561 |
|
|
|
562 |
|
|
// Construction du nom du fichier |
563 |
|
|
$filename = date("Ymd-His"); |
564 |
|
|
$filename .= "-reqmo"; |
565 |
|
|
$filename .= "-".$this->obj; |
566 |
|
|
$filename .= ".pdf"; |
567 |
|
|
$contenu = $pdf->Output($filename, "S"); |
568 |
|
|
|
569 |
|
|
// Métadonnées du fichier csv résultat |
570 |
|
|
$metadata['filename'] = $filename; |
571 |
|
|
$metadata['size'] = strlen($contenu); |
572 |
|
|
$metadata['mimetype'] = "application/pdf"; |
573 |
|
|
// Création du fichier sur le storage temporaire |
574 |
|
|
$pdf_res_uid = $this->f->storage->create_temporary($contenu, $metadata); |
575 |
|
|
// Affichage du message d'erreur ou de validation |
576 |
|
|
if($pdf_res_uid === "OP_FAILURE" ){ |
577 |
|
|
$this->f->addToMessage("error", _("Erreur de configuration. Contactez votre administrateur.")); |
578 |
|
|
} else { |
579 |
|
|
$msg = _("Le fichier a ete exporte, vous pouvez l'ouvrir immediatement en cliquant sur : "); |
580 |
|
|
$msg .= "<a class='bold' target='_blanc' href=\"../spg/file.php?uid=".$pdf_res_uid."&mode=temporary\">"; |
581 |
|
|
$msg .= _("Telecharger le fichier")." [".$filename."]"; |
582 |
|
|
$msg .= "</a>"; |
583 |
|
|
$this->f->addToMessage("ok", $msg); |
584 |
|
|
} |
585 |
|
|
$this->f->displayMessages(); |
586 |
|
|
// |
587 |
|
|
echo "<br />"; |
588 |
|
|
$this->displayBoutonRetour($url); |
589 |
|
|
} |
590 |
|
|
|
591 |
|
|
public function display_requeteur_formulaire($param,$f) { |
592 |
|
|
// |
593 |
|
|
// requeteur formulaire |
594 |
|
|
// |
595 |
|
|
$db=$param["db"]; |
596 |
|
|
$extension = $param["extension"]; |
597 |
|
|
if (file_exists ("../sql/".OM_DB_PHPTYPE."/".$this->obj.".".$extension.".inc.php")) { |
598 |
|
|
include ("../sql/".OM_DB_PHPTYPE."/".$this->obj.".".$extension.".inc.php"); |
599 |
|
|
} |
600 |
|
|
elseif (file_exists ("../sql/".OM_DB_PHPTYPE."/".$this->obj.".".$extension.".inc")) { |
601 |
|
|
include ("../sql/".OM_DB_PHPTYPE."/".$this->obj.".".$extension.".inc"); |
602 |
|
|
} |
603 |
|
|
$validation = $param["validation"]; |
604 |
|
|
$cptemp = $param["cptemp"]; |
605 |
|
|
$cpts=$param["cpts"]; |
606 |
|
|
$cptsel=$param["cptsel"]; |
607 |
|
|
$error = $param["error"]; |
608 |
|
|
echo "<table cellpadding=\"0\" class=\"formEntete ui-corner-all\">\n"; |
609 |
|
|
// |
610 |
|
|
if ($error !== false){ |
611 |
|
|
require_once PATH_OPENMAIRIE."om_message.class.php"; |
612 |
|
|
$message = new message(); |
613 |
|
|
$message->displayMessage("error", $error); |
614 |
|
|
} |
615 |
|
|
echo "<tr><td colspan=\"2\">"; |
616 |
|
|
// |
617 |
|
|
echo "<fieldset class=\"cadre ui-corner-all ui-widget-content\">\n"; |
618 |
|
|
// |
619 |
|
|
echo "\t<legend class=\"ui-corner-all ui-widget-content ui-state-active\">"; |
620 |
|
|
echo _("Criteres de la requete"); |
621 |
|
|
echo "</legend>\n"; |
622 |
|
|
// |
623 |
|
|
echo "<table>"; |
624 |
|
|
// On separe tous les champs entre crochets dans la requête |
625 |
|
|
$temp = explode ("[", $reqmo["sql"]); |
626 |
|
|
// |
627 |
|
|
for ($i = 1; $i < sizeof($temp); $i++) { |
628 |
|
|
// On vire le crochet de la fin |
629 |
|
|
$temp1 = explode("]", $temp[$i]); |
630 |
|
|
// On check si alias |
631 |
|
|
$temp4 = explode (" as ", $temp1[0]); |
632 |
|
|
if (isset($temp4[1])) { |
633 |
|
|
$temp1[0] = $temp4[1]; |
634 |
|
|
} |
635 |
|
|
// |
636 |
|
|
$temp6 = $temp1[0]; |
637 |
|
|
|
638 |
|
|
if (!isset($reqmo[$temp1[0]])) { |
639 |
|
|
// saisie criteres where |
640 |
|
|
// |
641 |
|
|
if ($cpts == 0) { |
642 |
|
|
echo "<tr>\n"; |
643 |
|
|
} elseif ($cpts == 4) { |
644 |
|
|
echo "</tr>\n<tr>\n"; |
645 |
|
|
$cpts = 0; |
646 |
|
|
} |
647 |
|
|
// |
648 |
|
|
echo "\t<td class=\"tri\">"; |
649 |
|
|
echo " "._($temp6)." <input type=\"text\" name=\"".$temp1[0]."\" value=\"\" size=\"30\" class=\"champFormulaire\" />"; |
650 |
|
|
echo "</td>\n"; |
651 |
|
|
// |
652 |
|
|
$cpts++; |
653 |
|
|
} else { |
654 |
|
|
// |
655 |
|
|
|
656 |
|
|
if ($reqmo[$temp1[0]] == "checked") { |
657 |
|
|
// |
658 |
|
|
if ($cptemp == 0) { |
659 |
|
|
echo "<tr>\n"; |
660 |
|
|
echo "\t<td colspan=\"4\"><b>"; |
661 |
|
|
echo _("Choix des champs a afficher"); |
662 |
|
|
echo "</b></td>\n"; |
663 |
|
|
echo "</tr>\n<tr>\n"; |
664 |
|
|
} elseif ($cptemp == 4) { |
665 |
|
|
echo "</tr>\n<tr>\n"; |
666 |
|
|
$cptemp = 0; |
667 |
|
|
} |
668 |
|
|
// |
669 |
|
|
echo "\t<td colspan='2' class='champs'>"; |
670 |
|
|
echo "<input type=\"checkbox\" value=\"".(($this->f->get_submitted_post_value($temp1[0])!==null||$this->f->get_submitted_get_value('step')===null||$this->f->get_submitted_get_value('step')=="0")?"Oui":"")."\" name=\"".$temp1[0]."\" size=\"40\" class=\"champFormulaire\" ".(($this->f->get_submitted_post_value($temp1[0])=="Oui"||$this->f->get_submitted_get_value('step')===null||$this->f->get_submitted_get_value('step')=="0")?"checked=\"checked\"":"")." />"; |
671 |
|
|
echo " "._($temp6)." "; |
672 |
|
|
echo "</td>\n"; |
673 |
|
|
// |
674 |
|
|
$cptemp++; |
675 |
|
|
} else { |
676 |
|
|
// |
677 |
|
|
$temp3 = ""; |
678 |
|
|
$temp3 = $reqmo[$temp1[0]]; |
679 |
|
|
if(!is_array($temp3)) { |
680 |
|
|
$temp3 = substr($temp3, 0, 6); |
681 |
|
|
} |
682 |
|
|
// |
683 |
|
|
if ($temp3 == "select") { |
684 |
|
|
// |
685 |
|
|
if ($cptsel == 0) { |
686 |
|
|
echo "</tr><tr>\n"; |
687 |
|
|
echo "\t<td colspan=\"4\"><b>"; |
688 |
|
|
echo _("Choix des criteres de tri"); |
689 |
|
|
echo "</b></td>\n"; |
690 |
|
|
echo "</tr>\n"; |
691 |
|
|
} elseif ($cptsel == 4) { |
692 |
|
|
echo "</tr>\n<tr>\n"; |
693 |
|
|
$cptsel = 0; |
694 |
|
|
} |
695 |
|
|
// |
696 |
|
|
echo "\t<td class=\"tri\">"; |
697 |
|
|
echo _($temp6)." "; |
698 |
|
|
echo "<select name=\"".$temp1[0]."\" class=\"champFormulaire\">"; |
699 |
|
|
$res1 = $db->query($reqmo[$temp1[0]]); |
700 |
|
|
$f->isDatabaseError($res1); |
701 |
|
|
while ($row1 =& $res1->fetchRow()) { |
702 |
|
|
echo "<option value=\"".$row1[0]."\" ".(($this->f->get_submitted_post_value($temp1[0])==$row1[0])?"selected=\"selected\"":"").">".$row1[1]."</option>"; |
703 |
|
|
} |
704 |
|
|
echo "</select>"; |
705 |
|
|
echo "</td>\n"; |
706 |
|
|
// |
707 |
|
|
$cptsel++; |
708 |
|
|
} |
709 |
|
|
//Si un tableau est fourni |
710 |
|
|
elseif(is_array($temp3)) { |
711 |
|
|
// |
712 |
|
|
if ($cptsel == 0) { |
713 |
|
|
echo "</tr><tr>\n"; |
714 |
|
|
echo "\t<td colspan=\"4\"><b>"; |
715 |
|
|
echo _("Choix des criteres de tri"); |
716 |
|
|
echo "</b></td>\n"; |
717 |
|
|
echo "</tr><tr>\n"; |
718 |
|
|
} elseif ($cptsel == 4) { |
719 |
|
|
echo "</tr>\n<tr>\n"; |
720 |
|
|
$cptsel = 0; |
721 |
|
|
} |
722 |
|
|
// |
723 |
|
|
echo "\t<td class=\"tri\">"; |
724 |
|
|
echo _($temp6)." "; |
725 |
|
|
echo "<select name=\"".$temp1[0]."\" class=\"champFormulaire\">"; |
726 |
|
|
foreach ($reqmo [$temp1 [0]] as $elem) { |
727 |
|
|
echo "<option value='".$elem."' ".(($this->f->get_submitted_post_value($temp1[0])==$elem)?"selected='selected'":"").">"._($elem)."</option>"; |
728 |
|
|
} |
729 |
|
|
echo "</select>"; |
730 |
|
|
echo "</td>\n"; |
731 |
|
|
// |
732 |
|
|
$cptsel++; |
733 |
|
|
} |
734 |
|
|
// Si un input est fourni |
735 |
|
|
else { |
736 |
|
|
// |
737 |
|
|
if ($cptsel == 0) { |
738 |
|
|
echo "</tr><tr>\n"; |
739 |
|
|
echo "\t<td colspan=\"4\"><b>"; |
740 |
|
|
echo _("Choix des criteres de tri"); |
741 |
|
|
echo "</b></td>\n"; |
742 |
|
|
echo "</tr><tr>\n"; |
743 |
|
|
} elseif ($cptsel == 4) { |
744 |
|
|
echo "</tr>\n<tr>\n"; |
745 |
|
|
$cptsel = 0; |
746 |
|
|
} |
747 |
|
|
// |
748 |
|
|
echo "\t<td class=\"tri\">"; |
749 |
|
|
echo _($temp6)." "; |
750 |
|
|
echo "<input type=\"text\" name=\""._($temp6)."\" placeholder=\"".$reqmo[$temp6]."\" value=\"".$this->f->get_submitted_post_value($temp1[0])."\" size=\"10\" class=\"champFormulaire\" />"; |
751 |
|
|
echo "</td>\n"; |
752 |
|
|
// |
753 |
|
|
$cptsel++; |
754 |
|
|
} |
755 |
|
|
} |
756 |
|
|
} |
757 |
|
|
// re initialisation |
758 |
|
|
$temp1[0] = ""; |
759 |
|
|
} |
760 |
|
|
echo "</tr>"; |
761 |
|
|
echo "</table>"; |
762 |
|
|
// |
763 |
|
|
echo "</fieldset>\n"; |
764 |
|
|
// |
765 |
|
|
//echo "<table>\n"; |
766 |
|
|
// |
767 |
|
|
echo "<tr><td colspan=\"2\">"; |
768 |
|
|
// |
769 |
|
|
echo "<fieldset class=\"cadre ui-corner-all ui-widget-content\">\n"; |
770 |
|
|
// |
771 |
|
|
echo "\t<legend class=\"ui-corner-all ui-widget-content ui-state-active\">"; |
772 |
|
|
echo _("Parametres de sortie"); |
773 |
|
|
echo "</legend>\n"; |
774 |
|
|
// |
775 |
|
|
echo "<table>"; |
776 |
|
|
// |
777 |
|
|
echo "<tr>"; |
778 |
|
|
// |
779 |
|
|
echo "<td class=\"params\">"._("Choix du format de sortie")." "; |
780 |
|
|
echo "<select name=\"sortie\" class=\"champFormulaire\">"; |
781 |
|
|
echo "<option value=\"tableau\" ".(($this->f->get_submitted_post_value('sortie')=="tableau")?"selected='selected'":"").">"._("Tableau - Affichage a l'ecran")."</option>"; |
782 |
|
|
echo "<option value=\"csv\" ".(($this->f->get_submitted_post_value('sortie')=="csv")?"selected='selected'":"").">"._("CSV - Export vers logiciel tableur")."</option>"; |
783 |
|
|
|
784 |
|
|
if(isset($reqmo["om_sousetat"]) AND $reqmo["om_sousetat"] != "") { |
785 |
|
|
echo "<option value=\"pdf\" ".(($this->f->get_submitted_post_value('sortie')=="pdf")?"selected='selected'":"").">"._("PDF - Version imprimable")."</option>"; |
786 |
|
|
} |
787 |
|
|
echo "</select>"; |
788 |
|
|
echo "</td>"; |
789 |
|
|
// |
790 |
|
|
echo "</tr>"; |
791 |
|
|
echo "<tr>"; |
792 |
|
|
// |
793 |
|
|
echo "<td class=\"params\">"._("Separateur de champs (pour le format CSV)")." "; |
794 |
|
|
echo "<select name=\"separateur\" class=\"champFormulaire\">"; |
795 |
|
|
echo "<option ".(($this->f->get_submitted_post_value('separateur')==";")?"selected='selected'":"").">;</option>"; |
796 |
|
|
echo "<option ".(($this->f->get_submitted_post_value('separateur')=="|")?"selected='selected'":"").">|</option>"; |
797 |
|
|
echo "<option ".(($this->f->get_submitted_post_value('separateur')==",")?"selected='selected'":"").">,</option>"; |
798 |
|
|
echo "</select>"; |
799 |
|
|
echo "</td>"; |
800 |
|
|
// |
801 |
|
|
echo "</tr>"; |
802 |
|
|
echo "<tr>"; |
803 |
|
|
// |
804 |
|
|
echo "<td class=\"params\" >"._("Nombre limite d'enregistrements a afficher (pour le format Tableau)")." "; |
805 |
|
|
echo "<input type=\"text\" name=\"limite\" value=\"".(($this->f->get_submitted_post_value('limite')!==""&&$this->f->get_submitted_get_value('step')!==null&&$this->f->get_submitted_get_value('step')!="0")?$this->f->get_submitted_post_value('limite'):"100")."\" size=\"5\" class=\"champFormulaire\" />"; |
806 |
|
|
echo "</td>"; |
807 |
|
|
echo "</tr>"; |
808 |
|
|
echo "</table>"; |
809 |
|
|
// |
810 |
|
|
echo "</fieldset>\n"; |
811 |
|
|
// |
812 |
|
|
echo "</td></tr>\n"; |
813 |
|
|
// Fermeture de la balise table |
814 |
|
|
echo "</table>\n"; |
815 |
|
|
} |
816 |
|
|
|
817 |
|
|
/** |
818 |
|
|
* Test si la valeur passée en argument est du type attendu |
819 |
|
|
* @param type $valeur Valeur à tester |
820 |
|
|
* @param type $type Type attendu de la donnée |
821 |
|
|
*/ |
822 |
|
|
function hasType($valeur, $type){ |
823 |
|
|
|
824 |
|
|
switch ($type){ |
825 |
|
|
case 'date' : |
826 |
|
|
$d = DateTime::createFromFormat('d/m/Y', $valeur); |
827 |
|
|
return $d && $d->format('d/m/Y') == $valeur; |
828 |
|
|
case 'integer' : |
829 |
|
|
return is_numeric($valeur); |
830 |
|
|
case 'string' : |
831 |
|
|
return is_string($valeur); |
832 |
|
|
default : |
833 |
|
|
return false; |
834 |
|
|
} |
835 |
|
|
} |
836 |
|
|
|
837 |
|
|
}// fin classe |
838 |
|
|
?> |