1 |
<?php |
2 |
//$Id$ |
3 |
//gen openMairie le 08/11/2012 14:00 |
4 |
|
5 |
require_once ("../gen/obj/demande.class.php"); |
6 |
|
7 |
class demande extends demande_gen { |
8 |
|
9 |
var $valIdDemandeur = array("petitionnaire_principal" => "", |
10 |
"delegataire" => "", |
11 |
"petitionnaire" => array()); |
12 |
var $postedIdDemandeur = array("petitionnaire_principal" => "", |
13 |
"delegataire" => "", |
14 |
"petitionnaire" => array()); |
15 |
|
16 |
var $autreDossierEnCour; |
17 |
|
18 |
function demande($id,&$db,$debug) { |
19 |
$this->constructeur($id,$db,$debug); |
20 |
}// fin constructeur |
21 |
|
22 |
function setValF($val) { |
23 |
parent::setValF($val); |
24 |
// Récupération des id demandeurs postés |
25 |
$this->getPostedValues(); |
26 |
//$this->valIdDemandeur=$this->postedIdDemandeur; |
27 |
} |
28 |
|
29 |
/** |
30 |
* Méthode permettant de récupérer les valeurs du dossier d'autorisation |
31 |
* correspondant à la nouvelle demande |
32 |
*/ |
33 |
function getValFromDossier($dossier_autorisation) { |
34 |
include "../sql/pgsql/demande.form.inc.php"; |
35 |
$sql=str_replace("<idx>",$this->getParameter("idx_dossier"), |
36 |
$sql_infos_dossier); |
37 |
$res = $this->db->query($sql); |
38 |
$this->f->addToLog("getValFromDossier(): db->query(\"".$sql."\")", VERBOSE_MODE); |
39 |
if ( database::isError($res)){ |
40 |
die(); |
41 |
} |
42 |
$row = & $res->fetchRow(DB_FETCHMODE_ASSOC); |
43 |
return $row; |
44 |
} |
45 |
|
46 |
/* |
47 |
* La date du jour par défaut dans le champs date_demande |
48 |
* Put the date of the day by default into the field date_demande |
49 |
*/ |
50 |
function setVal(&$form, $maj, $validation, &$db) { |
51 |
if($maj == 0) { |
52 |
$form->setVal("date_demande",date('d/m/Y')); |
53 |
|
54 |
// Récupération des valeurs du dossier d'autorisation correspondant |
55 |
if($this->getParameter("idx_dossier") != "") { |
56 |
$val_autorisation = $this->getValFromDossier( |
57 |
$this->getParameter("idx_dossier")); |
58 |
foreach($val_autorisation as $champ => $value) { |
59 |
$form->setVal($champ,$value); |
60 |
} |
61 |
} |
62 |
} |
63 |
} |
64 |
function getDataSubmit() { |
65 |
|
66 |
$datasubmit = parent::getDataSubmit(); |
67 |
if($this->getParameter("idx_dossier") != "") { |
68 |
$datasubmit .= "&idx_dossier=".$this->getParameter("idx_dossier"); |
69 |
} |
70 |
return $datasubmit; |
71 |
} |
72 |
|
73 |
/** |
74 |
* Méthode de verification du contenu |
75 |
*/ |
76 |
function verifier($val, &$db, $DEBUG) { |
77 |
parent::verifier($val, $db, $DEBUG); |
78 |
|
79 |
if(!isset($this->postedIdDemandeur["petitionnaire_principal"]) OR |
80 |
empty($this->postedIdDemandeur["petitionnaire_principal"]) AND |
81 |
!is_null($this->form)) { |
82 |
$this->correct = false; |
83 |
$this->addToMessage(_("La saisie d'un petitionnaire principal est obligatoire.")); |
84 |
} |
85 |
} |
86 |
|
87 |
/** |
88 |
* Configuration des select |
89 |
*/ |
90 |
function setSelect(&$form, $maj,&$db,$debug) { |
91 |
|
92 |
if(file_exists ("../sql/".$db->phptype."/".$this->table.".form.inc.php")) |
93 |
include ("../sql/".$db->phptype."/".$this->table.".form.inc.php"); |
94 |
elseif(file_exists ("../sql/".$db->phptype."/".$this->table.".form.inc")) |
95 |
include ("../sql/".$db->phptype."/".$this->table.".form.inc"); |
96 |
|
97 |
// |
98 |
$form->setSelect('demande_type', $this->loadSelectDemandeType($form, $maj, $db, $debug, "dossier_autorisation_type_detaille")); |
99 |
|
100 |
// arrondissement |
101 |
$this->init_select($form, $db, $maj, $debug, "arrondissement", |
102 |
$sql_arrondissement, $sql_arrondissement_by_id, false); |
103 |
|
104 |
// dossier_autorisation_type_detaille |
105 |
$this->init_select($form, $db, $maj, $debug, "dossier_autorisation_type_detaille", |
106 |
$sql_dossier_autorisation_type_detaille, $sql_dossier_autorisation_type_detaille_by_id, false); |
107 |
|
108 |
} |
109 |
|
110 |
/** |
111 |
* Charge le select du champ type de demande |
112 |
* @param object $form Formulaire |
113 |
* @param int $maj Mode d'insertion |
114 |
* @param object $db Database |
115 |
* @param bool $debug Debug active ou pas |
116 |
* @param string $champ champ activant le filtre |
117 |
* @return array Contenu du select |
118 |
*/ |
119 |
function loadSelectDemandeType(&$form, $maj, &$db, $debug, $champ) { |
120 |
|
121 |
// |
122 |
if(file_exists ("../sql/".$db->phptype."/".$this->table.".form.inc.php")) |
123 |
include ("../sql/".$db->phptype."/".$this->table.".form.inc.php"); |
124 |
elseif(file_exists ("../sql/".$db->phptype."/".$this->table.".form.inc")) |
125 |
include ("../sql/".$db->phptype."/".$this->table.".form.inc"); |
126 |
|
127 |
// Contenu de la liste à choix |
128 |
$contenu=array(); |
129 |
$contenu[0][0]=''; |
130 |
$contenu[1][0]=_('choisir')." "._("demande_type"); |
131 |
|
132 |
//Récupère l'id du type de dossier d'autorisation détaillé |
133 |
$id_dossier_autorisation_type_detaille = ""; |
134 |
if (isset($_POST[$champ])) { |
135 |
$id_dossier_autorisation_type_detaille = $_POST[$champ]; |
136 |
} elseif($this->getParameter($champ) != "") { |
137 |
$id_dossier_autorisation_type_detaille = $this->getParameter($champ); |
138 |
} elseif(isset($form->val[$champ])) { |
139 |
$id_dossier_autorisation_type_detaille = $form->val[$champ]; |
140 |
} |
141 |
|
142 |
// Récupération de paramètre pour le rechargement ajax du select |
143 |
$idx_dossier = $this->getParameter("idx_dossier"); |
144 |
|
145 |
// Récupère l'id de la nature de la demande |
146 |
$id_demande_nature = "1"; |
147 |
if (isset($idx_dossier) AND $idx_dossier != "") { |
148 |
$id_demande_nature = '2'; |
149 |
} |
150 |
|
151 |
// Ajout de condition pour la requête |
152 |
$ajout_condition_requête = ""; |
153 |
if ($id_demande_nature == '2') { |
154 |
$ajout_condition_requête = " AND dossier.dossier = '".$idx_dossier."'"; |
155 |
} |
156 |
|
157 |
// |
158 |
if ($id_dossier_autorisation_type_detaille != "") { |
159 |
//Si l'id du type de dossier d'autorisation détaillé est renseigné |
160 |
$sql_demande_type_by_dossier_autorisation_type_detaille = str_replace('<idx_dossier_autorisation_type_detaille>', $id_dossier_autorisation_type_detaille, $sql_demande_type_by_dossier_autorisation_type_detaille); |
161 |
// Ajoute une condition sur la nature de la demande |
162 |
$sql_demande_type_by_dossier_autorisation_type_detaille = str_replace('<idx_demande_nature>', $id_demande_nature, $sql_demande_type_by_dossier_autorisation_type_detaille); |
163 |
// Permet d'ajouter une condition |
164 |
$sql_demande_type_by_dossier_autorisation_type_detaille = str_replace('<ajout_condition_requête>', $ajout_condition_requête, $sql_demande_type_by_dossier_autorisation_type_detaille); |
165 |
$res = $this->db->query($sql_demande_type_by_dossier_autorisation_type_detaille); |
166 |
$this->addToLog("db->query(\"".$sql_demande_type_by_dossier_autorisation_type_detaille."\");", VERBOSE_MODE); |
167 |
$this->f->isDatabaseError($res); |
168 |
//Les résultats de la requête sont stocké dans le tableau contenu |
169 |
$k=1; |
170 |
while ($row=& $res->fetchRow()){ |
171 |
$contenu[0][$k]=$row[0]; |
172 |
$contenu[1][$k]=$row[1]; |
173 |
$k++; |
174 |
} |
175 |
} |
176 |
|
177 |
// Retourne le contenu de la liste |
178 |
return $contenu; |
179 |
} |
180 |
|
181 |
/* |
182 |
* Ajout du fielset |
183 |
* Add fieldset |
184 |
*/ |
185 |
function setLayout(&$form, $maj){ |
186 |
if ( $maj < 2 OR $maj == 3 ) { |
187 |
|
188 |
/*Champ sur lequel s'ouvre le bloc 1 */ |
189 |
$form->setBloc('dossier_autorisation_type_detaille','D',"","dossier_type col_8"); |
190 |
|
191 |
$form->setFieldset('dossier_autorisation_type_detaille','D' |
192 |
,_('Type de dossier/demande')); |
193 |
$form->setFieldset('demande_type','F',''); |
194 |
|
195 |
$form->setBloc('demande_type','F'); |
196 |
/*Fin bloc 1*/ |
197 |
|
198 |
/*Champ sur lequel s'ouvre le bloc 2 */ |
199 |
$form->setBloc('date_demande','D',"","col_4 demande_hidden_bloc"); |
200 |
$form->setFieldset('date_demande','D',_('Date de la demande')); |
201 |
$form->setFieldset('date_demande','F',''); |
202 |
$form->setBloc('date_demande','F'); |
203 |
/*Fin bloc 2*/ |
204 |
|
205 |
/*Champ sur lequel s'ouvre le bloc 3 */ |
206 |
$form->setBloc('terrain_references_cadastrales','D',"", |
207 |
"localisation col_12 demande_hidden_bloc"); |
208 |
$form->setFieldset('terrain_references_cadastrales','D',_('Localisation du terrain')); |
209 |
$form->setFieldset('terrain_superficie','F',''); |
210 |
$form->setBloc('terrain_superficie','F'); |
211 |
/*Fin bloc 4*/ |
212 |
|
213 |
} |
214 |
} |
215 |
|
216 |
/* |
217 |
* Ajoute des actions sur les deux premiers select |
218 |
* Add actions on the two first select |
219 |
*/ |
220 |
function setOnchange(&$form,$maj){ |
221 |
parent::setOnchange($form,$maj); |
222 |
|
223 |
$form->setOnchange("dossier_autorisation_type_detaille","changeDemandeType();"); |
224 |
$form->setOnchange("demande_type","showFormsDemande();"); |
225 |
} |
226 |
|
227 |
function setLib(&$form,$maj) { |
228 |
parent::setLib($form,$maj); |
229 |
//libelle des champs |
230 |
|
231 |
$form->setLib('terrain_adresse_voie',_('terrain_adresse')); |
232 |
} |
233 |
/* |
234 |
* Cache le champ terrain_references_cadastrales |
235 |
* Hide the fiels terrain_references_cadastrales |
236 |
*/ |
237 |
function setType(&$form,$maj) { |
238 |
parent::setType($form,$maj); |
239 |
|
240 |
$form->setType('dossier_instruction', 'hidden'); |
241 |
$form->setType('dossier_autorisation', 'hidden'); |
242 |
|
243 |
$form->setType('instruction_recepisse', 'hidden'); |
244 |
$form->setType('arrondissement', 'hidden'); |
245 |
|
246 |
// Si il s'agit d'une demande sur dossier existant on desactive tous les champs |
247 |
// sauf demande_type |
248 |
if(($maj == 0 AND $this-> getParameter("idx_dossier"))) { |
249 |
$form->setType('dossier_autorisation_type_detaille', 'selecthiddenstatic'); |
250 |
$form->setType('terrain_references_cadastrales', 'hiddenstatic'); |
251 |
$form->setType('terrain_adresse_voie_numero', 'hiddenstatic'); |
252 |
$form->setType('terrain_adresse_voie', 'hiddenstatic'); |
253 |
$form->setType('terrain_adresse_lieu_dit', 'hiddenstatic'); |
254 |
$form->setType('terrain_adresse_localite', 'hiddenstatic'); |
255 |
$form->setType('terrain_adresse_code_postal', 'hiddenstatic'); |
256 |
$form->setType('terrain_adresse_bp', 'hiddenstatic'); |
257 |
$form->setType('terrain_adresse_cedex', 'hiddenstatic'); |
258 |
$form->setType('terrain_superficie', 'hiddenstatic'); |
259 |
} |
260 |
if($maj == 1) { |
261 |
$form->setType('dossier_autorisation_type_detaille', 'selecthiddenstatic'); |
262 |
$form->setType('demande_type', 'selecthiddenstatic'); |
263 |
} |
264 |
if($maj == 3) { |
265 |
$form->setType('terrain_references_cadastrales', 'referencescadastralesstatic'); |
266 |
} |
267 |
|
268 |
} |
269 |
|
270 |
/** |
271 |
* Méthode permettant d'ajouter un dossier d'autorisation |
272 |
*/ |
273 |
function ajoutDossierAutorisation($id, &$db, $val, $DEBUG){ |
274 |
require_once '../obj/dossier_autorisation.class.php'; |
275 |
$dossier_autorisation = new dossier_autorisation("]",$db,$DEBUG); |
276 |
$id_etat_initial_da = $this->f->getParameter('id_etat_initial_dossier_autorisation'); |
277 |
$error = false; |
278 |
|
279 |
// Vérification de l'existance d'un état initial des DA dans la table om_parametre |
280 |
// afin d'éviter d'eventuelle erreur de base de données |
281 |
if(isset($id_etat_initial_da)) { |
282 |
$sql = "SELECT count(*) FROM ".DB_PREFIXE."etat_dossier_autorisation |
283 |
WHERE etat_dossier_autorisation = ".$id_etat_initial_da; |
284 |
$count = $this->db->getOne($sql); |
285 |
$this->f->addToLog("ajoutDossierAutorisation() : db->getOne(\"".$sql."\")", VERBOSE_MODE); |
286 |
if ( database::isError($count)){ |
287 |
die(); |
288 |
} |
289 |
if($count != 1) { |
290 |
$error = true; |
291 |
} else { |
292 |
// La méthode ajouter prend en paramètre un tableau associatif |
293 |
// contenant toutes les champs de la classe instanciée, |
294 |
// d'où l'initialisation du tableau en bouclant sur la liste des champs du DA |
295 |
foreach($dossier_autorisation->champs as $value) { |
296 |
$valAuto[$value] = NULL; |
297 |
} |
298 |
// Définition des valeurs à insérer |
299 |
$valAuto['dossier_autorisation']=""; |
300 |
$valAuto['exercice']=NULL; |
301 |
$valAuto['insee']=NULL; |
302 |
$valAuto['arrondissement']=NULL; |
303 |
$valAuto['etat_dossier_autorisation']=$this->f->getParameter('id_etat_initial_dossier_autorisation'); |
304 |
$valAuto['erp_numero_batiment']=NULL; |
305 |
$valAuto['erp_ouvert']=NULL; |
306 |
$valAuto['erp_arrete_decision']=NULL; |
307 |
$valAuto['dossier_autorisation_type_detaille']=$this->valF['dossier_autorisation_type_detaille']; |
308 |
$valAuto['depot_initial']=$this->dateDBToForm($this->valF['date_demande']); |
309 |
$valAuto['terrain_references_cadastrales']=$this->valF['terrain_references_cadastrales']; |
310 |
$valAuto['terrain_adresse_voie_numero']=$this->valF['terrain_adresse_voie_numero']; |
311 |
$valAuto['terrain_adresse_voie']=$this->valF['terrain_adresse_voie']; |
312 |
$valAuto['terrain_adresse_lieu_dit']=$this->valF['terrain_adresse_lieu_dit']; |
313 |
$valAuto['terrain_adresse_localite']=$this->valF['terrain_adresse_localite']; |
314 |
$valAuto['terrain_adresse_code_postal']=$this->valF['terrain_adresse_code_postal']; |
315 |
$valAuto['terrain_adresse_bp']=$this->valF['terrain_adresse_bp']; |
316 |
$valAuto['terrain_adresse_cedex']=$this->valF['terrain_adresse_cedex']; |
317 |
$valAuto['terrain_superficie']=$this->valF['terrain_superficie']; |
318 |
$valAuto['numero_version']=-1; |
319 |
// Ajout du dossier dans la base |
320 |
$dossier_autorisation->ajouter($valAuto, $db, $DEBUG); |
321 |
// Liaison du dossier ajouter à la demande |
322 |
$this->valF['dossier_autorisation'] = $dossier_autorisation->valF['dossier_autorisation']; |
323 |
} |
324 |
} else { |
325 |
$error = true; |
326 |
} |
327 |
// Affichage de l'erreur et stop de l'affichage |
328 |
if( $error ) { |
329 |
echo "</div>"; |
330 |
$class = "error"; |
331 |
$message = _("Erreur de parametrage. Contactez votre administrateur."); |
332 |
$this->f->displayMessage($class, $message); |
333 |
die(); |
334 |
} |
335 |
|
336 |
} |
337 |
|
338 |
/** |
339 |
* Méthode permettant d'ajouter un dossier d'instruction |
340 |
*/ |
341 |
function ajoutDossierInstruction($id, &$db, $val, $DEBUG, $dossier_instruction_type){ |
342 |
require_once '../obj/dossier.class.php'; |
343 |
$dossier = new dossier("]",$db,$DEBUG); |
344 |
foreach($dossier->champs as $value) { |
345 |
$valInstr[$value] = NULL; |
346 |
} |
347 |
require_once '../obj/dossier_autorisation_type_detaille.class.php'; |
348 |
$datd = new dossier_autorisation_type_detaille( |
349 |
$this->valF['dossier_autorisation_type_detaille'],$db,$DEBUG); |
350 |
|
351 |
/*Ajout de la variable dossier_instruction_type à l'objet dossier pour le |
352 |
* versionning |
353 |
*/ |
354 |
$dossier->setDossierInstructionType($dossier_instruction_type); |
355 |
|
356 |
// Définition des valeurs à entrée dans la table |
357 |
$valInstr['dossier_instruction_type']=$dossier_instruction_type; |
358 |
$valInstr['date_depot']=$this->dateDBToForm($this->valF['date_demande']); |
359 |
$valInstr['date_dernier_depot']=$this->dateDBToForm($this->valF['date_demande']); |
360 |
$valInstr['date_demande']=$this->dateDBToForm($this->valF['date_demande']); |
361 |
$valInstr['depot_initial']=$this->dateDBToForm($this->valF['date_demande']); |
362 |
$valInstr['terrain_references_cadastrales']=$this->valF['terrain_references_cadastrales']; |
363 |
$valInstr['terrain_adresse_voie_numero']=$this->valF['terrain_adresse_voie_numero']; |
364 |
$valInstr['terrain_adresse_voie']=$this->valF['terrain_adresse_voie']; |
365 |
$valInstr['terrain_adresse_lieu_dit']=$this->valF['terrain_adresse_lieu_dit']; |
366 |
$valInstr['terrain_adresse_localite']=$this->valF['terrain_adresse_localite']; |
367 |
$valInstr['terrain_adresse_code_postal']=$this->valF['terrain_adresse_code_postal']; |
368 |
$valInstr['terrain_adresse_bp']=$this->valF['terrain_adresse_bp']; |
369 |
$valInstr['terrain_adresse_cedex']=$this->valF['terrain_adresse_cedex']; |
370 |
$valInstr['terrain_superficie']=$this->valF['terrain_superficie']; |
371 |
$valInstr['description']=""; |
372 |
$valInstr['dossier_autorisation']=$this->valF['dossier_autorisation']; |
373 |
|
374 |
/* |
375 |
* Gestion de la qualification |
376 |
* */ |
377 |
// Initialise le champ à false |
378 |
$valInstr['a_qualifier'] = false; |
379 |
|
380 |
// Récupère l'information depuis le type de la demande |
381 |
$qualification = $this->get_qualification($val['demande_type']); |
382 |
|
383 |
// Si le dossier doit être à qualifier |
384 |
if ($qualification === 't') { |
385 |
// Met le champ à true |
386 |
$valInstr['a_qualifier'] = true; |
387 |
} |
388 |
|
389 |
// Récupération du cerfa pour le type d'instruction sélectionnée et valide |
390 |
$sql = "SELECT |
391 |
dossier_autorisation_type_detaille.cerfa |
392 |
FROM |
393 |
".DB_PREFIXE."dossier_autorisation_type_detaille |
394 |
JOIN |
395 |
".DB_PREFIXE."cerfa |
396 |
ON |
397 |
dossier_autorisation_type_detaille.cerfa = cerfa.cerfa |
398 |
WHERE |
399 |
now()<=om_validite_fin |
400 |
AND now()>=om_validite_debut |
401 |
AND dossier_autorisation_type_detaille=".$this->valF['dossier_autorisation_type_detaille']; |
402 |
$valInstr['cerfa'] = $db->getOne($sql); |
403 |
$this->f->addToLog("ajoutDossierInstruction() : db->getone(\"".$sql."\");", VERBOSE_MODE); |
404 |
if ( database::isError($valInstr['cerfa'])){ |
405 |
die(); |
406 |
} |
407 |
$dossier->ajouter($valInstr, $db, $DEBUG); |
408 |
|
409 |
//Affichage de message à l'utilisateur concernant un problème lors de |
410 |
//l'affectation de l'instructeur au dossier d'instruction |
411 |
if ($dossier->valF['dossier_autorisation'] === '' && |
412 |
$dossier->valF['instructeur'] === NULL){ |
413 |
$this->addToMessage(_("Aucun instructeur compatible avec ce dossier, contactez votre administrateur afin d'en assigner un a ce dossier.")); |
414 |
} |
415 |
elseif ( $dossier->valF['instructeur'] === NULL ){ |
416 |
if ($this->f->isAccredited("dossier_modifier_instructeur")) { |
417 |
$this->addToMessage("<br/> "._("Pensez a assigner un instructeur a ce dossier.")); |
418 |
} else { |
419 |
$this->addToMessage(_("Aucun instructeur compatible avec ce dossier, contactez votre administrateur afin d'en assigner un a ce dossier.")); |
420 |
} |
421 |
} |
422 |
|
423 |
// Liaison du dossier ajouter à la demande |
424 |
$this->valF['dossier_instruction'] = $dossier->valF['dossier']; |
425 |
} |
426 |
|
427 |
/** |
428 |
* Méthode permettant d'ajouter les données techniques au dossier d'autorisation |
429 |
*/ |
430 |
function ajoutDonneesTechniquesDA($id, &$db, $val, $DEBUG){ |
431 |
|
432 |
require_once '../obj/donnees_techniques.class.php'; |
433 |
$donnees_techniques = new donnees_techniques("]",$db,$DEBUG); |
434 |
|
435 |
// Champs tous à NULL car seul le champ concernant le dossier d'autorisation sera rempli |
436 |
foreach($donnees_techniques->champs as $value) { |
437 |
$val[$value] = NULL; |
438 |
} |
439 |
|
440 |
// Ajout du numéro de dossier d'instruction |
441 |
$val['dossier_autorisation']=$this->valF['dossier_autorisation']; |
442 |
|
443 |
// Ajout des données techniques |
444 |
$donnees_techniques->ajouter($val, $db, $DEBUG); |
445 |
} |
446 |
|
447 |
/** |
448 |
* Méthode permettant d'ajouter les données techniques au dossier d'autorisation |
449 |
*/ |
450 |
function ajoutDonneesTechniquesDI($id, &$db, $val, $DEBUG){ |
451 |
|
452 |
// Requête permettant de récupérer le dernier enregistrement en base des données techniques |
453 |
// liées au dossier d'autorisationdu dossier d'instruction en cours de création |
454 |
$sql_dt_from_da = "SELECT donnees_techniques |
455 |
FROM ".DB_PREFIXE."donnees_techniques |
456 |
WHERE dossier_autorisation = '".$this->valF['dossier_autorisation']."' |
457 |
ORDER BY donnees_techniques DESC"; |
458 |
// Récupération de l'id |
459 |
$id_da = $this->db->getOne($sql_dt_from_da); |
460 |
if ( database::isError($id_da)){ |
461 |
// affiche l'erreur pour l'utilisateur et dans le log |
462 |
$this->addToErrors("", |
463 |
_("Erreur lors de la recuperation des donnees techniques en cours de validite"), |
464 |
_("Erreur lors de la recuperation des donnees techniques en cours de validite")); |
465 |
return false; |
466 |
} |
467 |
require_once '../obj/donnees_techniques.class.php'; |
468 |
$donnees_techniques = new donnees_techniques($id_da,$db,$DEBUG); |
469 |
|
470 |
// Récupération des données du DA |
471 |
foreach($donnees_techniques->champs as $value) { |
472 |
$val[$value] = $donnees_techniques->getVal($value); |
473 |
} |
474 |
|
475 |
// Ajout du numéro de dossier d'instruction |
476 |
$val['dossier_instruction'] = $this->valF['dossier_instruction']; |
477 |
// Suppression du numéro de dossier d'autorisation |
478 |
$val['dossier_autorisation'] = NULL; |
479 |
|
480 |
// Ajout des données techniques |
481 |
$donnees_techniques->ajouter($val, $db, $DEBUG); |
482 |
} |
483 |
|
484 |
/** |
485 |
* Ajout des liens demandeurs / dossier d'autorisation s'ils n'y sont pas déjà |
486 |
**/ |
487 |
function ajoutLiensDossierAutorisation($id, &$db, $val, $DEBUG) { |
488 |
// Création des liens entre le dossier autorisation et les demandeurs |
489 |
include '../sql/pgsql/demande.form.inc.php'; |
490 |
require_once '../obj/lien_dossier_autorisation_demandeur.class.php'; |
491 |
$ldad = new lien_dossier_autorisation_demandeur("]",$db,$DEBUG); |
492 |
// Recupération des demandeurs liés à la demande |
493 |
$sql = str_replace("<demande>",$this->valF['demande'],$sql_lien_demande_demandeur. |
494 |
" AND lien_demande_demandeur.demandeur NOT IN ( |
495 |
SELECT lien_dossier_autorisation_demandeur.demandeur |
496 |
FROM ".DB_PREFIXE."lien_dossier_autorisation_demandeur |
497 |
WHERE lien_dossier_autorisation_demandeur.dossier_autorisation = |
498 |
'".$this->valF['dossier_autorisation']."' |
499 |
)"); |
500 |
$res = $db->query($sql); |
501 |
$this->f->addToLog("ajoutLiensDossierAutorisation() : db->query(\"".$sql."\");", VERBOSE_MODE); |
502 |
if ( database::isError($res)){ |
503 |
die(); |
504 |
} |
505 |
while($row = &$res->fetchRow(DB_FETCHMODE_ASSOC)) { |
506 |
$row['lien_dossier_autorisation_demandeur'] = NULL; |
507 |
$row['dossier_autorisation'] = $this->valF['dossier_autorisation']; |
508 |
$ldad->ajouter($row, $db, $DEBUG); |
509 |
} |
510 |
} |
511 |
|
512 |
/** |
513 |
* Ajout des liens demandeurs / dossier d'autorisation |
514 |
**/ |
515 |
function ajoutLiensDossierInstruction($id, &$db, $val, $DEBUG) { |
516 |
// Création des liens entre le dossier instruction et les demandeurs |
517 |
include '../sql/pgsql/demande.form.inc.php'; |
518 |
require_once '../obj/lien_dossier_demandeur.class.php'; |
519 |
$ldd = new lien_dossier_demandeur("]",$db,$DEBUG); |
520 |
// Recupération des demandeurs liés à la demande |
521 |
$sql = str_replace("<demande>",$this->valF['demande'],$sql_lien_demande_demandeur); |
522 |
$res = $db->query($sql); |
523 |
$this->f->addToLog("ajoutLiensDossierInstruction() : db->query(\"".$sql."\");", VERBOSE_MODE); |
524 |
if ( database::isError($res)){ |
525 |
die(); |
526 |
} |
527 |
while($row = &$res->fetchRow(DB_FETCHMODE_ASSOC)) { |
528 |
$row['lien_dossier_demandeur'] = NULL; |
529 |
$row['dossier'] = $this->valF['dossier_instruction']; |
530 |
$ldd->ajouter($row, $db, $DEBUG); |
531 |
} |
532 |
} |
533 |
|
534 |
/* |
535 |
* Récupère l'identifiant d'un arrondissement à partir d'un code postal |
536 |
*/ |
537 |
function getArrondissement($terrain_adresse_code_postal){ |
538 |
|
539 |
$arrondissement = NULL; |
540 |
|
541 |
$sql = "SELECT |
542 |
arrondissement |
543 |
FROM |
544 |
".DB_PREFIXE."arrondissement |
545 |
WHERE |
546 |
code_postal = '$terrain_adresse_code_postal' "; |
547 |
$this->addToLog("demande.class.php : ".$sql." execute <br>", EXTRA_VERBOSE_MODE); |
548 |
|
549 |
$res = $this->db->query($sql); |
550 |
$this->f->addToLog("getArrondissement() : db->query(\"".$sql."\")", VERBOSE_MODE); |
551 |
if ( database::isError($res)){ |
552 |
die(); |
553 |
} |
554 |
|
555 |
if( $res->numrows() > 0 ) { |
556 |
|
557 |
$row=& $res->fetchRow(DB_FETCHMODE_ASSOC); |
558 |
$arrondissement = $row['arrondissement']; |
559 |
} |
560 |
|
561 |
return $arrondissement; |
562 |
} |
563 |
|
564 |
/* |
565 |
* Récupère l'évènement lié à un type de demande |
566 |
*/ |
567 |
function getEvenement($demande_type){ |
568 |
|
569 |
$evenement = NULL; |
570 |
|
571 |
$sql = |
572 |
"SELECT |
573 |
evenement |
574 |
FROM |
575 |
".DB_PREFIXE."demande_type |
576 |
WHERE |
577 |
demande_type = $demande_type"; |
578 |
|
579 |
$res = $this->db->query($sql); |
580 |
$this->f->addToLog("getEvenement() : db->query(\"".$sql."\")", VERBOSE_MODE); |
581 |
if ( database::isError($res)){ |
582 |
die(); |
583 |
} |
584 |
|
585 |
if ( $res->numrows() > 0 ){ |
586 |
|
587 |
$row=& $res->fetchRow(DB_FETCHMODE_ASSOC); |
588 |
$evenement = $row['evenement']; |
589 |
} |
590 |
|
591 |
return $evenement; |
592 |
} |
593 |
|
594 |
|
595 |
|
596 |
/** |
597 |
* Retourne le libellé du dossier d'autorisation |
598 |
* @param string $dossier_autorisation Identifiant du dossier d'autorisation |
599 |
* @return string Libellé dossier d'autorisation |
600 |
*/ |
601 |
function get_dossier_autorisation_libelle($dossier_autorisation) { |
602 |
|
603 |
$dossier_autorisation_libelle = ""; |
604 |
|
605 |
// Requête SQL |
606 |
$sql = "SELECT |
607 |
dossier_autorisation_libelle |
608 |
FROM |
609 |
".DB_PREFIXE."dossier_autorisation |
610 |
WHERE |
611 |
dossier_autorisation = '$dossier_autorisation'"; |
612 |
|
613 |
$dossier_autorisation_libelle = $this->db->getOne($sql); |
614 |
$this->addToLog("get_dossier_autorisation_libelle(): db->getOne(\"".$sql."\")", VERBOSE_MODE); |
615 |
database::isError($dossier_autorisation_libelle); |
616 |
|
617 |
// Retourne le résultat |
618 |
return $dossier_autorisation_libelle; |
619 |
} |
620 |
|
621 |
/** |
622 |
* Retourne le libellé du dossier d'autorisation |
623 |
* @param string $dossier_autorisation Identifiant du dossier d'autorisation |
624 |
* @return string Libellé dossier d'autorisation |
625 |
*/ |
626 |
function get_dossier_libelle($dossier) { |
627 |
|
628 |
$dossier_libelle = ""; |
629 |
|
630 |
// Requête SQL |
631 |
$sql = "SELECT |
632 |
dossier_libelle |
633 |
FROM |
634 |
".DB_PREFIXE."dossier |
635 |
WHERE |
636 |
dossier = '$dossier'"; |
637 |
|
638 |
$dossier_libelle = $this->db->getOne($sql); |
639 |
$this->addToLog("get_dossier_libelle(): db->getOne(\"".$sql."\")", VERBOSE_MODE); |
640 |
database::isError($dossier_libelle); |
641 |
|
642 |
// Retourne le résultat |
643 |
return $dossier_libelle; |
644 |
} |
645 |
|
646 |
/** |
647 |
* Ajout des dossiers |
648 |
**/ |
649 |
function triggerAjouter($id, &$db, $val, $DEBUG){ |
650 |
|
651 |
include '../sql/pgsql/demande.form.inc.php'; |
652 |
|
653 |
if($this->valF["demande_type"] != NULL) { |
654 |
$res = $db->query(str_replace('<idx>', $this->valF['demande_type'], $sql_demande_type_details_by_id)); |
655 |
$this->f->addToLog("triggerAjouter() : db->query(\"".str_replace('<idx>', $this->valF['demande_type'], $sql_demande_type_details_by_id)."\")", VERBOSE_MODE); |
656 |
if ( database::isError($res)){ |
657 |
die(); |
658 |
} |
659 |
// Attribut permettant de définir si un dossier a été créé |
660 |
$this->ajoutDI = FALSE; |
661 |
$dossier_type = $res->fetchRow(DB_FETCHMODE_ASSOC); |
662 |
// Création du dossier_autorisation |
663 |
if($this->valF['dossier_autorisation'] == "") { |
664 |
$this->ajoutDossierAutorisation($id, $db, $val, $DEBUG); |
665 |
$this -> addToMessage(_("Creation du dossier d'autorisation no").$this->get_dossier_autorisation_libelle($this->valF['dossier_autorisation'])); |
666 |
//Ajout des données techniques au dossier d'autorisation |
667 |
$this->ajoutDonneesTechniquesDA($id, $db, $val, $DEBUG); |
668 |
} |
669 |
// Enregistrement du numéro dossier existant (il sera écrasé si un DI est créé) |
670 |
if ($this->getParameter("idx_dossier") != "") { |
671 |
$this->valF['dossier_instruction'] = $this->getParameter("idx_dossier"); |
672 |
} |
673 |
// Création du dossier d'instruction |
674 |
if($dossier_type['dossier_instruction_type'] != NULL) { |
675 |
$this->ajoutDossierInstruction($id, $db, $val, $DEBUG, $dossier_type['dossier_instruction_type']); |
676 |
$this -> addToMessage(_("Creation du dossier d'instruction no").$this->get_dossier_libelle($this->valF['dossier_instruction'])); |
677 |
// Attribut permettant de définir si un dossier a été créé. |
678 |
$this->ajoutDI = TRUE; |
679 |
|
680 |
//Ajout des données techniques au dossier d'instruction |
681 |
$this->ajoutDonneesTechniquesDI($id, $db, $val, $DEBUG); |
682 |
} |
683 |
|
684 |
// Si le dossier_instruction existe |
685 |
if (isset($this->valF['dossier_instruction']) && $this->valF['dossier_instruction'] !== "" ) { |
686 |
|
687 |
// Récupère les informations nécessaire pour créer le répertoire de numérisation |
688 |
$getInfosForFoldername = $this->getInfosForFoldername($this->valF['dossier_instruction']); |
689 |
|
690 |
// Création du répertoire pour la numérisation |
691 |
$createFolder = $this->createFolder($getInfosForFoldername['dossier_autorisation'], $getInfosForFoldername['code'], $getInfosForFoldername['version']); |
692 |
|
693 |
// Si la création a échouée |
694 |
if ($createFolder === false) { |
695 |
|
696 |
// Annule la validation |
697 |
$this->correct = false; |
698 |
// arrête le traitement entier |
699 |
return false; |
700 |
|
701 |
// |
702 |
} else { |
703 |
|
704 |
// |
705 |
$this->addToLog("createFolder() : Success", VERBOSE_MODE); |
706 |
} |
707 |
} |
708 |
|
709 |
/*Création du lien de téléchargement de récépissé de demande*/ |
710 |
if ( $this->valF['demande_type'] != "" && is_numeric($this->valF['demande_type']) |
711 |
&& isset($this->valF['dossier_instruction']) && $this->valF['dossier_instruction'] !== "" ){ |
712 |
|
713 |
/*Récupérer l'événement lié à ce type de demande*/ |
714 |
$evenement = $this->getEvenement($this->valF['demande_type']); |
715 |
|
716 |
/*Récupération de la lettre type de l'événement*/ |
717 |
$lettretype = $this->f->getLettreType($evenement); |
718 |
|
719 |
/*Création d'une nouvelle instruction avec cet événement*/ |
720 |
/*Données*/ |
721 |
$valInstr['instruction']=NULL; |
722 |
|
723 |
$valInstr['destinataire']=$this->valF['dossier_instruction']; |
724 |
$valInstr['dossier']=$this->valF['dossier_instruction']; |
725 |
// Récupère la date de la demande |
726 |
$valInstr['date_evenement']=$this->dateDBToForm($this->valF['date_demande']); |
727 |
$valInstr['evenement']=$evenement; |
728 |
$valInstr['lettretype']=$lettretype; |
729 |
$valInstr['complement_om_html']=""; |
730 |
$valInstr['complement2_om_html']=""; |
731 |
|
732 |
$valInstr['action']="initialisation"; |
733 |
$valInstr['delai']="2"; |
734 |
$valInstr['etat']="notifier"; |
735 |
$valInstr['accord_tacite']="Oui"; |
736 |
$valInstr['delai_notification']="1"; |
737 |
$valInstr['archive_delai']="0"; |
738 |
$valInstr['archive_date_complet']=NULL; |
739 |
$valInstr['archive_date_dernier_depot']=NULL; |
740 |
$valInstr['archive_date_rejet']=NULL; |
741 |
$valInstr['archive_date_limite']=NULL; |
742 |
$valInstr['archive_date_notification_delai']=NULL; |
743 |
$valInstr['archive_accord_tacite']="Non"; |
744 |
$valInstr['archive_etat']="initialiser"; |
745 |
$valInstr['archive_date_decision']=NULL; |
746 |
$valInstr['archive_avis']=""; |
747 |
$valInstr['archive_date_validite']=NULL; |
748 |
$valInstr['archive_date_achevement']=NULL; |
749 |
$valInstr['archive_date_chantier']=NULL; |
750 |
$valInstr['archive_date_conformite']=NULL; |
751 |
$valInstr['archive_incompletude']=NULL; |
752 |
$valInstr['archive_evenement_suivant_tacite']=""; |
753 |
$valInstr['archive_evenement_suivant_tacite_incompletude']=NULL; |
754 |
$valInstr['archive_etat_pendant_incompletude']=NULL; |
755 |
$valInstr['archive_date_limite_incompletude']=NULL; |
756 |
$valInstr['archive_delai_incompletude']=NULL; |
757 |
$valInstr['archive_autorite_competente']=NULL; |
758 |
$valInstr['complement3_om_html']=""; |
759 |
$valInstr['complement4_om_html']=""; |
760 |
$valInstr['complement5_om_html']=""; |
761 |
$valInstr['complement6_om_html']=""; |
762 |
$valInstr['complement7_om_html']=""; |
763 |
$valInstr['complement8_om_html']=""; |
764 |
$valInstr['complement9_om_html']=""; |
765 |
$valInstr['complement10_om_html']=""; |
766 |
$valInstr['complement11_om_html']=""; |
767 |
$valInstr['complement12_om_html']=""; |
768 |
$valInstr['complement13_om_html']=""; |
769 |
$valInstr['complement14_om_html']=""; |
770 |
$valInstr['complement15_om_html']=""; |
771 |
$valInstr['avis_decision']=NULL; |
772 |
$valInstr['date_finalisation_courrier']=NULL; |
773 |
$valInstr['date_envoi_signature']=NULL; |
774 |
$valInstr['date_retour_signature']=NULL; |
775 |
$valInstr['date_envoi_rar']=NULL; |
776 |
$valInstr['date_retour_rar']=NULL; |
777 |
$valInstr['date_envoi_controle_legalite']=NULL; |
778 |
$valInstr['date_retour_controle_legalite']=NULL; |
779 |
$valInstr['signataire_arrete']=NULL; |
780 |
$valInstr['numero_arrete']=NULL; |
781 |
$valInstr['code_barres']=NULL; |
782 |
$valInstr['om_fichier_instruction']=NULL; |
783 |
$valInstr['om_final_instruction']=NULL; |
784 |
$valInstr['document_numerise']=NULL; |
785 |
$valInstr['autorite_competente']=NULL; |
786 |
$valInstr['duree_validite_parametrage']="0"; |
787 |
$valInstr['duree_validite']="0"; |
788 |
|
789 |
//Récupération des champs archive si cette demande a créée un dossier |
790 |
//d'instruction mais pas un P0 |
791 |
if (!is_null($this->valF['dossier_instruction']) && |
792 |
$this->valF['dossier_instruction'] !== "" ){ |
793 |
|
794 |
//Requête |
795 |
$sql = "SELECT dossier_instruction_type.code |
796 |
FROM ".DB_PREFIXE."demande_type |
797 |
LEFT JOIN ".DB_PREFIXE."dossier_instruction_type |
798 |
ON demande_type.dossier_instruction_type = dossier_instruction_type.dossier_instruction_type |
799 |
WHERE demande_type.demande_type = ".$this->valF['demande_type']; |
800 |
$res = $db->getOne($sql); |
801 |
$this->addToLog("triggerajouter(): db->getOne(\"".$sql."\");", VERBOSE_MODE); |
802 |
if (database::isError($res)) { |
803 |
die($res->getMessage()); |
804 |
} |
805 |
|
806 |
//On vérifie que ce n'est pas un P0 |
807 |
if ( strcmp($res, "P") !== 0 ){ |
808 |
|
809 |
$res = $this->getArchiveInstruction($this->valF['dossier_instruction']); |
810 |
|
811 |
if (isset($res['archive_delai'])) { |
812 |
$valInstr['archive_delai']=$res["archive_delai"]; |
813 |
} |
814 |
if (isset($res['archive_date_complet'])) { |
815 |
$valInstr['archive_date_complet']=$res["archive_date_complet"]; |
816 |
} |
817 |
if (isset($res['archive_date_dernier_depot'])) { |
818 |
$valInstr['archive_date_dernier_depot']=$res["archive_date_dernier_depot"]; |
819 |
} |
820 |
if (isset($res['archive_date_rejet'])) { |
821 |
$valInstr['archive_date_rejet']=$res["archive_date_rejet"]; |
822 |
} |
823 |
if (isset($res['archive_date_limite'])) { |
824 |
$valInstr['archive_date_limite']=$res["archive_date_limite"]; |
825 |
} |
826 |
if (isset($res['archive_date_notification_delai'])) { |
827 |
$valInstr['archive_date_notification_delai']=$res["archive_date_notification_delai"]; |
828 |
} |
829 |
if (isset($res['archive_accord_tacite'])) { |
830 |
$valInstr['archive_accord_tacite']=$res["archive_accord_tacite"]; |
831 |
} |
832 |
if (isset($res['archive_etat'])) { |
833 |
$valInstr['archive_etat']=$res["archive_etat"]; |
834 |
} |
835 |
if (isset($res['archive_date_decision'])) { |
836 |
$valInstr['archive_date_decision']=$res["archive_date_decision"]; |
837 |
} |
838 |
if (isset($res['archive_avis'])) { |
839 |
$valInstr['archive_avis']=$res["archive_avis"]; |
840 |
} |
841 |
if (isset($res['archive_date_validite'])) { |
842 |
$valInstr['archive_date_validite']=$res["archive_date_validite"]; |
843 |
} |
844 |
if (isset($res['archive_date_achevement'])) { |
845 |
$valInstr['archive_date_achevement']=$res["archive_date_achevement"]; |
846 |
} |
847 |
if (isset($res['archive_date_chantier'])) { |
848 |
$valInstr['archive_date_chantier']=$res["archive_date_chantier"]; |
849 |
} |
850 |
if (isset($res['archive_date_conformite'])) { |
851 |
$valInstr['archive_date_conformite']=$res["archive_date_conformite"]; |
852 |
} |
853 |
if (isset($res['archive_incompletude'])) { |
854 |
$valInstr['archive_incompletude']=$res["archive_incompletude"]; |
855 |
} |
856 |
if (isset($res['archive_evenement_suivant_tacite'])) { |
857 |
$valInstr['archive_evenement_suivant_tacite']=$res["archive_evenement_suivant_tacite"]; |
858 |
} |
859 |
if (isset($res['archive_evenement_suivant_tacite_incompletude'])) { |
860 |
$valInstr['archive_evenement_suivant_tacite_incompletude']=$res["archive_evenement_suivant_tacite_incompletude"]; |
861 |
} |
862 |
if (isset($res['archive_etat_pendant_incompletude'])) { |
863 |
$valInstr['archive_etat_pendant_incompletude']=$res["archive_etat_pendant_incompletude"]; |
864 |
} |
865 |
if (isset($res['archive_date_limite_incompletude'])) { |
866 |
$valInstr['archive_date_limite_incompletude']=$res["archive_date_limite_incompletude"]; |
867 |
} |
868 |
if (isset($res['archive_delai_incompletude'])) { |
869 |
$valInstr['archive_delai_incompletude']=$res["archive_delai_incompletude"]; |
870 |
} |
871 |
if (isset($res['archive_autorite_competente'])) { |
872 |
$valInstr['archive_autorite_competente']=$res["archive_autorite_competente"]; |
873 |
} |
874 |
} |
875 |
} |
876 |
|
877 |
/*Fichier requis*/ |
878 |
require_once '../obj/instruction.class.php'; |
879 |
|
880 |
/*Création d'un nouveau dossier*/ |
881 |
$instruction = new instruction("]",$db,$DEBUG); |
882 |
$instruction->valF = ""; |
883 |
$instruction->ajouter($valInstr, $db, $DEBUG); |
884 |
|
885 |
//Finalisation du document |
886 |
$_GET['obj']='instruction'; |
887 |
$_GET['idx']=$instruction->valF[$instruction->clePrimaire]; |
888 |
$instruction_final = new instruction($_GET['idx'],$db,$DEBUG); |
889 |
if($instruction_final->getVal('lettretype') != "") { |
890 |
$res = $instruction_final->finaliser('', 1, '', ''); |
891 |
} |
892 |
|
893 |
/*Si la création de l'instruction a réussie*/ |
894 |
if ( $instruction->valF['instruction'] != "" ){ |
895 |
|
896 |
/*Affichage du récépissé de la demande*/ |
897 |
$this->valF['instruction_recepisse'] = $instruction->valF['instruction']; |
898 |
$this -> addToMessage("<br/><a |
899 |
class='lien' |
900 |
href='" |
901 |
.((isset($res['pdf'])&&$instruction->valF['om_final_instruction'])?$res['pdf']: |
902 |
"../pdf/pdflettretype.php?obj=".$lettretype."&idx=".$instruction->valF['instruction'])."' |
903 |
target='_blank'> |
904 |
<span |
905 |
class=\"om-icon om-icon-16 om-icon-fix pdf-16\" |
906 |
title=\""._("Telecharger le recepisse de la demande")."\">". |
907 |
_("Telecharger le recepisse de la demande"). |
908 |
"</span> |
909 |
". |
910 |
_("Telecharger le recepisse de la demande")." |
911 |
</a><br/>"); |
912 |
} |
913 |
/*Sinon affiche un message d'erreur*/ |
914 |
else { |
915 |
|
916 |
$this -> addToMessage(_("Une erreur s'est produite lors de la creation du recepisse")); |
917 |
} |
918 |
} |
919 |
|
920 |
/*Ajout de l'arrondissement à partir du code postal*/ |
921 |
if ( !is_null($this->valF["terrain_adresse_code_postal"]) && is_numeric($this->valF["terrain_adresse_code_postal"]) ){ |
922 |
|
923 |
$this->valF["arrondissement"] = $this->getArrondissement($this->valF["terrain_adresse_code_postal"]); |
924 |
} |
925 |
} |
926 |
} |
927 |
|
928 |
/** |
929 |
* Ajout des délégataires et pétitionnaires |
930 |
**/ |
931 |
function triggerAjouterApres($id, &$db, $val, $DEBUG){ |
932 |
|
933 |
$this->insertLinkDemandeDemandeur($db, $DEBUG); |
934 |
|
935 |
// Ajout des lliens entre dossier_autorisation et demandeur |
936 |
if(!empty($this->valF['dossier_autorisation'])) { |
937 |
$this->ajoutLiensDossierAutorisation($id, $db, $val, $DEBUG); |
938 |
} |
939 |
// Ajout des lliens entre dossier et demandeur |
940 |
if($this->ajoutDI === TRUE) { |
941 |
$this->ajoutLiensDossierInstruction($id, $db, $val, $DEBUG); |
942 |
} |
943 |
|
944 |
// Duplication des lots (et leurs données techniques) et |
945 |
// liaison au nouveau dossier_d'instruction |
946 |
if(!empty($this->valF['dossier_autorisation']) AND $val['dossier_autorisation'] != "" ) { |
947 |
$this->lienLotDossierInstruction($id, $db, $val, $DEBUG); |
948 |
} |
949 |
} |
950 |
|
951 |
/*Ajout du lien demande / demandeur(s)*/ |
952 |
function triggerModifierApres($id, &$db, $val, $DEBUG){ |
953 |
$this->listeDemandeur("demande",$this->val[array_search('demande', $this->champs)]); |
954 |
$this->insertLinkDemandeDemandeur($db, $DEBUG); |
955 |
$this->valIdDemandeur=$this->postedIdDemandeur; |
956 |
|
957 |
} |
958 |
|
959 |
/** |
960 |
* Gestion des liens entre les lots du DA et le nouveau dossier |
961 |
**/ |
962 |
function lienLotDossierInstruction($id, $db, $val, $DEBUG) { |
963 |
require_once ("../obj/lot.class.php"); |
964 |
$lot = new lot("]", $db, $DEBUG); |
965 |
require_once ("../obj/lien_lot_demandeur.class.php"); |
966 |
$lld = new lien_lot_demandeur("]", $db, $DEBUG); |
967 |
|
968 |
|
969 |
$sqlLots = "SELECT * FROM ".DB_PREFIXE."lot |
970 |
WHERE dossier_autorisation = '".$this->valF['dossier_autorisation']."'"; |
971 |
$resLot = $db -> query($sqlLots); |
972 |
$this->f->addToLog("db->query(\"".$sqlLots."\");", VERBOSE_MODE); |
973 |
$this->f->isDatabaseError($resLot); |
974 |
while ($rowLot=& $resLot->fetchRow(DB_FETCHMODE_ASSOC)){ |
975 |
// Insertion du nouveau lot |
976 |
$valLot['lot'] = ""; |
977 |
$valLot['libelle'] = $rowLot['libelle']; |
978 |
$valLot['dossier_autorisation'] = NULL; |
979 |
$valLot['dossier'] = $this->valF['dossier_instruction']; |
980 |
$lot -> ajouter($valLot, $db, $DEBUG); |
981 |
|
982 |
//Insertion des liens entre dossier et les lots |
983 |
$sqlDemandeurs = "SELECT * FROM ".DB_PREFIXE."lien_lot_demandeur |
984 |
WHERE lot = ".$rowLot['lot']; |
985 |
$res = $db -> query($sqlDemandeurs); |
986 |
$this->f->addToLog("lienLotDossierInstruction() : db->query(\"".$sqlDemandeurs."\");", VERBOSE_MODE); |
987 |
if ( database::isError($res)){ |
988 |
die(); |
989 |
} |
990 |
|
991 |
while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC)){ |
992 |
$valLld["lien_lot_demandeur"] = ""; |
993 |
$valLld["lot"]=$lot->valF['lot']; |
994 |
$valLld["demandeur"] = $row['demandeur']; |
995 |
$valLld["petitionnaire_principal"] = $row['petitionnaire_principal']; |
996 |
$lld->ajouter($valLld, $db, $DEBUG); |
997 |
} |
998 |
|
999 |
// Récupération des données techniques du nouveau lots |
1000 |
$this->ajoutDonneesTechniquesLots($id, $db, $val, $DEBUG, $rowLot['lot'], $lot->valF['lot']); |
1001 |
|
1002 |
} |
1003 |
} |
1004 |
|
1005 |
|
1006 |
/** |
1007 |
* Méthode permettant d'ajouter les données techniques aux lots |
1008 |
*/ |
1009 |
function ajoutDonneesTechniquesLots($id, &$db, $val, $DEBUG, $lotInit, $lotDest){ |
1010 |
// Requete permettant de recupérer les données techniques du lot passé en paramètre ($lotInit) |
1011 |
$sql_get_dt = "SELECT donnees_techniques FROM ".DB_PREFIXE."donnees_techniques WHERE lot=".$lotInit; |
1012 |
$id_dt = $this->f->db->getOne($sql_get_dt); |
1013 |
// Si des données techniques sont liées au lots on les "copie" et on les lies au lot passé en paramètre (lotDest) |
1014 |
if(isset($id_dt) AND !empty($id_dt)) { |
1015 |
$this->f->addToLog("ajoutDonneesTechniquesLots() : db->getone(\"".$sql_get_dt."\");", VERBOSE_MODE); |
1016 |
if ( database::isError($id_dt)){ |
1017 |
// Appel de la methode de recuperation des erreurs |
1018 |
$this->erreur_db($id_dt->getDebugInfo(), $id_dt->getMessage(), ''); |
1019 |
return false; |
1020 |
} |
1021 |
require_once '../obj/donnees_techniques.class.php'; |
1022 |
$donnees_techniques = new donnees_techniques($id_dt,$db,$DEBUG); |
1023 |
|
1024 |
// Récupération des données dans le tableau des valeurs à insérer |
1025 |
foreach($donnees_techniques->champs as $value) { |
1026 |
$val[$value] = $donnees_techniques->getVal($value); |
1027 |
} |
1028 |
// Modification du lien vers le nouveau lot |
1029 |
$val["lot"] = $lotDest; |
1030 |
// Ajout des données techniques |
1031 |
$donnees_techniques->ajouter($val, $db, $DEBUG); |
1032 |
} |
1033 |
} |
1034 |
|
1035 |
/** |
1036 |
* Gestion des liens entre la demande et les demandeurs recemment ajoutés |
1037 |
**/ |
1038 |
function insertLinkDemandeDemandeur($db, $DEBUG) { |
1039 |
// |
1040 |
require_once "../obj/lien_demande_demandeur.class.php"; |
1041 |
// Comparaison de l'id petitionnaire principal |
1042 |
if(isset($this->postedIdDemandeur['petitionnaire_principal']) AND |
1043 |
!empty($this->postedIdDemandeur['petitionnaire_principal']) AND |
1044 |
$this->valIdDemandeur['petitionnaire_principal'] != |
1045 |
$this->postedIdDemandeur['petitionnaire_principal']) { |
1046 |
// Ajout du nouveau lien |
1047 |
$this->addLinkDemandeDemandeur($this->postedIdDemandeur['petitionnaire_principal'], true, $db, $DEBUG); |
1048 |
if(!empty($this->valIdDemandeur['petitionnaire_principal'])) { |
1049 |
$this->deleteLinkDemandeDemandeur($this->valIdDemandeur['petitionnaire_principal'], $db, $DEBUG); |
1050 |
} |
1051 |
} |
1052 |
|
1053 |
// Comparaison du delegataire |
1054 |
if(isset($this->postedIdDemandeur['delegataire']) AND |
1055 |
!empty($this->postedIdDemandeur['delegataire']) AND |
1056 |
$this->valIdDemandeur['delegataire'] != |
1057 |
$this->postedIdDemandeur['delegataire']) { |
1058 |
// Ajout du nouveau lien |
1059 |
$this->addLinkDemandeDemandeur($this->postedIdDemandeur['delegataire'], false, $db, $DEBUG); |
1060 |
if(!empty($this->valIdDemandeur['delegataire'])) { |
1061 |
$this->deleteLinkDemandeDemandeur($this->valIdDemandeur['delegataire'], $db, $DEBUG); |
1062 |
} |
1063 |
} |
1064 |
|
1065 |
// Comparaison des different petitionnaires |
1066 |
if(isset($this->postedIdDemandeur['petitionnaire'])) { |
1067 |
// Suppression des liens non valides |
1068 |
foreach ($this->valIdDemandeur['petitionnaire'] as $petitionnaire) { |
1069 |
if(!in_array($petitionnaire, $this->postedIdDemandeur['petitionnaire'])) { |
1070 |
$this->deleteLinkDemandeDemandeur($petitionnaire, $db, $DEBUG); |
1071 |
} |
1072 |
} |
1073 |
// Ajout des nouveaux liens |
1074 |
foreach ($this->postedIdDemandeur['petitionnaire'] as $petitionnaire) { |
1075 |
if(!in_array($petitionnaire, $this->valIdDemandeur['petitionnaire'])) { |
1076 |
$this->addLinkDemandeDemandeur($petitionnaire, false, $db, $DEBUG); |
1077 |
} |
1078 |
} |
1079 |
} |
1080 |
} |
1081 |
|
1082 |
|
1083 |
/** |
1084 |
* Fonction permettant d'ajouter un lien |
1085 |
* entre la table demande et demandeur |
1086 |
**/ |
1087 |
function addLinkDemandeDemandeur($id, $principal, $db, $DEBUG) { |
1088 |
$lienAjout = new lien_demande_demandeur( |
1089 |
"]", |
1090 |
$db, |
1091 |
$DEBUG); |
1092 |
$lien = array('lien_demande_demandeur' => "", |
1093 |
'petitionnaire_principal' => (($principal)?"t":"f"), |
1094 |
'demande' => $this->valF['demande'], |
1095 |
'demandeur' => $id); |
1096 |
$lienAjout->ajouter($lien, $db, $DEBUG); |
1097 |
$lienAjout->__destruct(); |
1098 |
} |
1099 |
|
1100 |
/** |
1101 |
* Fonction permettant de supprimer un lien |
1102 |
* entre la table demande et demandeur |
1103 |
**/ |
1104 |
function deleteLinkDemandeDemandeur($id, $db, $DEBUG) { |
1105 |
// Suppression |
1106 |
$sql = "DELETE FROM ".DB_PREFIXE."lien_demande_demandeur ". |
1107 |
"WHERE demande=".$this->valF['demande']. |
1108 |
" AND demandeur=".$id; |
1109 |
// Execution de la requete de suppression de l'objet |
1110 |
$res = $db->query($sql); |
1111 |
// Logger |
1112 |
$this->f->addToLog("deleteLinkDemandeDemandeur(): db->query(\"".$sql."\");", VERBOSE_MODE); |
1113 |
if ( database::isError($res)){ |
1114 |
die(); |
1115 |
} |
1116 |
|
1117 |
} |
1118 |
|
1119 |
/* |
1120 |
* Teste si le lien entre une demande et un demandeur existe |
1121 |
* */ |
1122 |
function isLinkDemandeDemandeurExist($idDemandeur) { |
1123 |
$sql = "SELECT count(*) |
1124 |
FROM ".DB_PREFIXE."lien_demande_demandeur |
1125 |
WHERE demande = ".$this->valF['demande']. |
1126 |
"AND demandeur = ".$idDemandeur; |
1127 |
$count = $this->f->db->getOne($sql); |
1128 |
$this->f->addToLog("isLinkDemandeDemandeurExist() : db->getone(\"".$sql."\");", VERBOSE_MODE); |
1129 |
if ( database::isError($count)){ |
1130 |
die(); |
1131 |
} |
1132 |
if ($count === 0) { |
1133 |
return false; |
1134 |
} else { |
1135 |
return true; |
1136 |
} |
1137 |
|
1138 |
} |
1139 |
|
1140 |
/** |
1141 |
* Methode de recupération des valeurs postées |
1142 |
**/ |
1143 |
function getPostedValues() { |
1144 |
// Récupération des demandeurs dans POST |
1145 |
if (isset($_POST['petitionnaire_principal']) OR |
1146 |
isset($_POST['delegataire']) OR |
1147 |
isset($_POST['petitionnaire'])) { |
1148 |
if( isset($_POST['petitionnaire_principal']) AND |
1149 |
!empty($_POST['petitionnaire_principal'])) { |
1150 |
$this->postedIdDemandeur['petitionnaire_principal'] = $_POST['petitionnaire_principal']; |
1151 |
} |
1152 |
if( isset($_POST['delegataire']) AND |
1153 |
!empty($_POST['delegataire'])) { |
1154 |
$this->postedIdDemandeur['delegataire'] = $_POST['delegataire']; |
1155 |
} |
1156 |
if( isset($_POST['petitionnaire']) AND |
1157 |
!empty($_POST['petitionnaire'])) { |
1158 |
$this->postedIdDemandeur['petitionnaire'] = $_POST['petitionnaire']; |
1159 |
} |
1160 |
} |
1161 |
} |
1162 |
|
1163 |
/** |
1164 |
* Méthode permettant de récupérer les id des demandeurs liés à la table |
1165 |
* liée passée en paramètre |
1166 |
* |
1167 |
* @param string $from Table liée : "demande", "dossier", dossier_autorisation" |
1168 |
* @param string $id Identifiant (clé primaire de la table liée en question) |
1169 |
*/ |
1170 |
function listeDemandeur($from, $id) { |
1171 |
// Récupération des demandeurs de la base |
1172 |
$sql = "SELECT demandeur.demandeur, |
1173 |
demandeur.type_demandeur, |
1174 |
lien_".$from."_demandeur.petitionnaire_principal |
1175 |
FROM ".DB_PREFIXE."lien_".$from."_demandeur |
1176 |
INNER JOIN ".DB_PREFIXE."demandeur |
1177 |
ON demandeur.demandeur=lien_".$from."_demandeur.demandeur |
1178 |
WHERE ".$from." = '".$id."'"; |
1179 |
$res = $this->f->db->query($sql); |
1180 |
$this->f->addToLog("listeDemandeur(): db->query(\"".$sql."\")", VERBOSE_MODE); |
1181 |
if ( database::isError($res)){ |
1182 |
die(); |
1183 |
} |
1184 |
// Stockage du résultat dans un tableau |
1185 |
while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC)){ |
1186 |
if ($row['petitionnaire_principal'] == 't' AND |
1187 |
$row['type_demandeur']=="petitionnaire") { |
1188 |
$this->valIdDemandeur['petitionnaire_principal']=$row['demandeur']; |
1189 |
} elseif ($row['petitionnaire_principal'] == 'f' AND |
1190 |
$row['type_demandeur']=="petitionnaire"){ |
1191 |
$this->valIdDemandeur['petitionnaire'][]=$row['demandeur']; |
1192 |
} elseif ($row['type_demandeur']=="delegataire"){ |
1193 |
$this->valIdDemandeur['delegataire']=$row['demandeur']; |
1194 |
} |
1195 |
} |
1196 |
} |
1197 |
|
1198 |
|
1199 |
/** |
1200 |
* Surcharge du bouton retour afin de retourner sur la recherche de dossiers |
1201 |
* d'instruction existant |
1202 |
*/ |
1203 |
function retour($premier = 0, $recherche = "", $tricol = "") { |
1204 |
|
1205 |
echo "\n<a class=\"retour\" "; |
1206 |
echo "href=\""; |
1207 |
// |
1208 |
if($this->getParameter("idx_dossier") != "") { |
1209 |
echo "tab.php?"; |
1210 |
echo "obj=recherche_dossier"; |
1211 |
|
1212 |
} else { |
1213 |
if($this->getParameter("retour")=="form" AND !($this->getParameter("validation")>0 AND $this->getParameter("maj")==2 AND $this->correct)) { |
1214 |
echo "form.php?"; |
1215 |
} else { |
1216 |
echo "tab.php?"; |
1217 |
} |
1218 |
echo "obj=".get_class($this); |
1219 |
if($this->getParameter("retour")=="form") { |
1220 |
echo "&idx=".$this->getParameter("idx"); |
1221 |
echo "&idz=".$this->getParameter("idz"); |
1222 |
echo "&action=3"; |
1223 |
} |
1224 |
} |
1225 |
echo "&premier=".$this->getParameter("premier"); |
1226 |
echo "&tricol=".$this->getParameter("tricol"); |
1227 |
echo "&recherche=".$this->getParameter("recherche"); |
1228 |
echo "&selectioncol=".$this->getParameter("selectioncol"); |
1229 |
echo "&advs_id=".$this->getParameter("advs_id"); |
1230 |
echo "&valide=".$this->getParameter("valide"); |
1231 |
// |
1232 |
echo "\""; |
1233 |
echo ">"; |
1234 |
// |
1235 |
echo _("Retour"); |
1236 |
// |
1237 |
echo "</a>\n"; |
1238 |
|
1239 |
} |
1240 |
|
1241 |
|
1242 |
/** |
1243 |
* Cette méthode permet d'afficher des informations spécifiques dans le |
1244 |
* formulaire de l'objet |
1245 |
* |
1246 |
* @param integer $maj Mode de mise à jour |
1247 |
*/ |
1248 |
function formSpecificContent($maj) { |
1249 |
|
1250 |
/** |
1251 |
* Gestion du bloc des demandeurs |
1252 |
*/ |
1253 |
// Si le mode est (modification ou suppression ou consultation) ET que |
1254 |
// le formulaire n'est pas correct (c'est-à-dire que le formulaire est |
1255 |
// actif) |
1256 |
if (!$this->correct AND $maj != 0) { |
1257 |
// Alors on récupère les demandeurs dans la table lien pour |
1258 |
// affectation des résultats dans this->valIdDemandeur |
1259 |
$this->listeDemandeur("demande", $this->val[array_search('demande', $this->champs)]); |
1260 |
} |
1261 |
|
1262 |
// Si le mode est (ajout ou modification) ET que le formulaire n'est pas |
1263 |
// correct (c'est-à-dire que le formulaire est actif) |
1264 |
if ($maj < 2 AND !$this->correct) { |
1265 |
// Alors on positionne le marqueur linkable a true qui permet |
1266 |
// d'afficher ou non les actions de gestion des demandeurs |
1267 |
$linkable = true; |
1268 |
} else { |
1269 |
// Sinon on positionne le marqueur linkable a false qui permet |
1270 |
// d'afficher ou non les actions de gestion des demandeurs |
1271 |
$linkable = false; |
1272 |
} |
1273 |
|
1274 |
// Affichage des demandeurs et des actions |
1275 |
// Conteneur de la listes des demandeurs |
1276 |
echo "<div id=\"liste_demandeur\" class=\"demande_hidden_bloc col_12\">"; |
1277 |
echo "<fieldset class=\"cadre ui-corner-all ui-widget-content\">"; |
1278 |
echo " <legend class=\"ui-corner-all ui-widget-content ui-state-active\">" |
1279 |
._("Petitionnaire")."</legend>"; |
1280 |
// Si des demandeurs sont liés à la demande |
1281 |
require_once "../obj/petitionnaire.class.php"; |
1282 |
require_once "../obj/delegataire.class.php"; |
1283 |
// Affichage du bloc pétitionnaire principal / délégataire |
1284 |
// L'ID DU DIV SUIVANT EST NECESSAIRE AU BON FONCTIONNEMENT DU JS |
1285 |
echo "<div id=\"petitionnaire_principal_delegataire\">"; |
1286 |
// Affichage de la synthèse |
1287 |
if (isset ($this->valIdDemandeur["petitionnaire_principal"]) AND |
1288 |
!empty($this->valIdDemandeur["petitionnaire_principal"])) { |
1289 |
$demandeur = new petitionnaire( |
1290 |
$this->valIdDemandeur["petitionnaire_principal"], |
1291 |
$this->f->db,false); |
1292 |
$demandeur -> afficherSynthese("petitionnaire_principal", $linkable); |
1293 |
$demandeur -> __destruct(); |
1294 |
} elseif ( isset ($this->postedIdDemandeur["petitionnaire_principal"]) AND |
1295 |
!empty($this->postedIdDemandeur["petitionnaire_principal"]) ) { |
1296 |
$demandeur = new petitionnaire( |
1297 |
$this->postedIdDemandeur["petitionnaire_principal"], |
1298 |
$this->f->db,false); |
1299 |
$demandeur -> afficherSynthese("petitionnaire_principal", $linkable); |
1300 |
$demandeur -> __destruct(); |
1301 |
} |
1302 |
// Si en édition de formulaire |
1303 |
if($maj < 2) { |
1304 |
// Bouton d'ajout du pétitionnaire principal |
1305 |
// L'ID DE L'INPUT SUIVANT EST NECESSAIRE AU BON FONCTIONNEMENT DU JS |
1306 |
echo "<span id=\"add_petitionnaire_principal\" |
1307 |
class=\"om-form-button add-16\">". |
1308 |
_("Saisir le petitionnaire principal"). |
1309 |
"</span>"; |
1310 |
} |
1311 |
// Bouton d'ajout du delegataire |
1312 |
// L'ID DU DIV ET DE L'INPUT SUIVANT EST NECESSAIRE AU BON FONCTIONNEMENT DU JS |
1313 |
echo "<div id=\"delegataire\">"; |
1314 |
// Affichage de la synthèse |
1315 |
if (isset ($this->valIdDemandeur["delegataire"]) AND |
1316 |
!empty($this->valIdDemandeur["delegataire"])) { |
1317 |
$demandeur = new delegataire($this->valIdDemandeur["delegataire"], |
1318 |
$this->f->db,false); |
1319 |
$demandeur -> afficherSynthese("delegataire", $linkable); |
1320 |
$demandeur -> __destruct(); |
1321 |
} elseif ( isset ($this->postedIdDemandeur["delegataire"]) AND |
1322 |
!empty($this->postedIdDemandeur["delegataire"]) ) { |
1323 |
|
1324 |
$demandeur = new delegataire($this->postedIdDemandeur["delegataire"], |
1325 |
$this->f->db,false); |
1326 |
$demandeur -> afficherSynthese("delegataire", $linkable); |
1327 |
$demandeur -> __destruct(); |
1328 |
} |
1329 |
if($maj < 2) { |
1330 |
echo "<span id=\"add_delegataire\" |
1331 |
class=\"om-form-button add-16\">". |
1332 |
_("Saisir un autre correspondant"). |
1333 |
"</span>"; |
1334 |
} |
1335 |
echo "</div>"; |
1336 |
echo "<div class=\"both\"></div>"; |
1337 |
echo "</div>"; |
1338 |
// Bloc des pétitionnaires secondaires |
1339 |
// L'ID DU DIV SUIVANT EST NECESSAIRE AU BON FONCTIONNEMENT DU JS |
1340 |
echo "<div id=\"listePetitionnaires\">"; |
1341 |
|
1342 |
// Affichage de la synthèse |
1343 |
if (isset ($this->valIdDemandeur["petitionnaire"]) AND |
1344 |
!empty($this->valIdDemandeur["petitionnaire"])) { |
1345 |
|
1346 |
foreach ($this->valIdDemandeur["petitionnaire"] as $petitionnaire) { |
1347 |
$demandeur = new petitionnaire($petitionnaire, |
1348 |
$this->f->db,false); |
1349 |
$demandeur -> afficherSynthese("petitionnaire", $linkable); |
1350 |
$demandeur -> __destruct(); |
1351 |
} |
1352 |
|
1353 |
} elseif ( isset ($this->postedIdDemandeur["petitionnaire"]) AND |
1354 |
!empty($this->postedIdDemandeur["petitionnaire"]) ) { |
1355 |
foreach ($this->postedIdDemandeur["petitionnaire"] as $petitionnaire) { |
1356 |
$demandeur = new petitionnaire($petitionnaire, |
1357 |
$this->f->db,false); |
1358 |
$demandeur -> afficherSynthese("petitionnaire", $linkable); |
1359 |
$demandeur -> __destruct(); |
1360 |
} |
1361 |
} |
1362 |
if ($maj < 2) { |
1363 |
// L'ID DE L'INPUT SUIVANT EST NECESSAIRE AU BON FONCTIONNEMENT DU JS |
1364 |
echo "<span id=\"add_petitionnaire\" |
1365 |
class=\"om-form-button add-16\">". |
1366 |
_("Ajouter un petitionnaire") |
1367 |
."</span>"; |
1368 |
} |
1369 |
echo "</div>"; |
1370 |
echo "</fieldset>"; |
1371 |
// Champ flag permettant de récupérer la valeur de l'option sig pour |
1372 |
// l'utiliser en javascript, notamment lors du chargement de l'interface |
1373 |
// pour les références cadastrales |
1374 |
// XXX Si un widget pour les références cadastrales existait, il n'y |
1375 |
// aurait pas besoin de faire cela |
1376 |
echo "<input id='option_sig' type='hidden' value='".$this->f->getParameter("option_sig")."' name='option_sig'>"; |
1377 |
echo "</div>"; |
1378 |
} |
1379 |
|
1380 |
// {{{ |
1381 |
|
1382 |
// getter |
1383 |
function getValIdDemandeur() { |
1384 |
return $this->valIdDemandeur; |
1385 |
} |
1386 |
// setter |
1387 |
function setValIdDemandeur($valIdDemandeur) { |
1388 |
$this->valIdDemandeur = $valIdDemandeur; |
1389 |
} |
1390 |
|
1391 |
//Supression du lien entre la demandeur et le(s) demandeur(s) |
1392 |
function triggerSupprimer($id, &$db, $val, $DEBUG){ |
1393 |
|
1394 |
//Création de la requête |
1395 |
$sql = "DELETE FROM |
1396 |
".DB_PREFIXE."lien_demande_demandeur |
1397 |
WHERE |
1398 |
demande = $id"; |
1399 |
|
1400 |
$res = $this->f->db->query($sql); |
1401 |
$this->f->addToLog("triggerSupprimer() : db->query(\"".$sql."\")"); |
1402 |
if ( database::isError($res)){ |
1403 |
die(); |
1404 |
} |
1405 |
} |
1406 |
|
1407 |
// }}} |
1408 |
|
1409 |
|
1410 |
/** |
1411 |
* Cette fonction permet de récupérer les informations nécessaires |
1412 |
* à la génération du nom du répertoire |
1413 |
* @param string $dossier Identifiant du dossier |
1414 |
* @return array Tableau des résultats |
1415 |
*/ |
1416 |
private function getInfosForFoldername($dossier) { |
1417 |
|
1418 |
//Requête SQL |
1419 |
$sql = "SELECT dossier.dossier_autorisation, dossier_instruction_type.code, dossier.version |
1420 |
FROM ".DB_PREFIXE."dossier |
1421 |
LEFT JOIN ".DB_PREFIXE."dossier_instruction_type |
1422 |
ON dossier_instruction_type.dossier_instruction_type = dossier.dossier_instruction_type |
1423 |
WHERE dossier.dossier = '".$dossier."'"; |
1424 |
$res = $this->f->db->query($sql); |
1425 |
$this->addToLog("getInfosForFoldername() : db->query(".$sql.")", VERBOSE_MODE); |
1426 |
database::isError($res); |
1427 |
|
1428 |
// tableau des résultats |
1429 |
$row = $res->fetchRow(DB_FETCHMODE_ASSOC); |
1430 |
|
1431 |
//Formatage du numéro de version |
1432 |
require_once '../obj/dossier.class.php'; |
1433 |
$dossier = new dossier($dossier,$this->db,DEBUG); |
1434 |
$row['version'] = $dossier->getNumeroVersionDossierInstructionType($dossier->getVal('dossier_autorisation'), $dossier->getVal('dossier_instruction_type'), $row['version'], false); |
1435 |
|
1436 |
// retourne le tableau des résultats |
1437 |
return $row; |
1438 |
} |
1439 |
|
1440 |
/** |
1441 |
* Cette fonction permet la création du répertoire dans le dossier de numérisation |
1442 |
* @param string $dossier_autorisation Identifiant dossier d'autorisation |
1443 |
* @param string $code Type du dossier d'instruction |
1444 |
* @param int $version Numéro de version du dossier |
1445 |
* @return boolean Vrai ou Faux |
1446 |
*/ |
1447 |
private function createFolder($dossier_autorisation, $code, $version) { |
1448 |
|
1449 |
// Nom du répertoire |
1450 |
$foldername = $dossier_autorisation.".".$code.$version; |
1451 |
|
1452 |
// Vérifie le paramètrage du répertoire de numérisation |
1453 |
if (isset($this->f->config["path_scan"])) { |
1454 |
|
1455 |
// Vérifie que le répertoire existe |
1456 |
if (is_dir($this->f->config["path_scan"])) { |
1457 |
|
1458 |
// Répertoire des "à traiter" |
1459 |
$dir = $this->f->config["path_scan"]."Todo/"; |
1460 |
|
1461 |
// Si le répertore existe déjà le répertoire n'est pas crée |
1462 |
if (file_exists($dir.$foldername)) { |
1463 |
|
1464 |
// |
1465 |
return true; |
1466 |
} |
1467 |
|
1468 |
// Vérifie que le répêrtoire des "à traiter" existe |
1469 |
if (is_dir($dir)) { |
1470 |
|
1471 |
// Création du répertoire |
1472 |
mkdir($dir.$foldername, 0777); |
1473 |
// |
1474 |
return true; |
1475 |
} |
1476 |
|
1477 |
// Message d'erreur |
1478 |
$this->msg = ""; |
1479 |
$this->addToErrors ('', _("Le repertoire Todo n'existe pas.") . " " . _("Veuillez contacter votre administrateur."), "createFolder() : Faillure"); |
1480 |
// |
1481 |
return false; |
1482 |
|
1483 |
} |
1484 |
|
1485 |
// Message d'erreur |
1486 |
$this->msg = ""; |
1487 |
$this->addToErrors ('', _("Le repertoire de numerisation configure n'existe pas.") . " " . _("Veuillez contacter votre administrateur."), "createFolder() : Faillure"); |
1488 |
// |
1489 |
return false; |
1490 |
|
1491 |
} |
1492 |
|
1493 |
// Message d'erreur |
1494 |
$this->msg = ""; |
1495 |
$this->addToErrors ('', _("Le repertoire de numerisation n'a pas ete configure.") . " " . _("Veuillez contacter votre administrateur."), "createFolder() : Faillure"); |
1496 |
// |
1497 |
return false; |
1498 |
} |
1499 |
|
1500 |
/** |
1501 |
* Récupère le champ "qualification" du type de la demande |
1502 |
* @param integer $demande_type Identifiant du type de la demande |
1503 |
* @return boolean |
1504 |
*/ |
1505 |
function get_qualification($demande_type) { |
1506 |
|
1507 |
// Initialise le résultat |
1508 |
$qualification = ""; |
1509 |
|
1510 |
// Si la condition existe |
1511 |
if (is_numeric($demande_type)) { |
1512 |
|
1513 |
// Requête SQL |
1514 |
$sql = "SELECT qualification |
1515 |
FROM ".DB_PREFIXE."demande_type |
1516 |
WHERE demande_type = $demande_type"; |
1517 |
$qualification = $this->db->getOne($sql); |
1518 |
$this->f->addToLog("get_qualification() : db->getOne(\"".$sql."\")", |
1519 |
VERBOSE_MODE); |
1520 |
$this->f->isDatabaseError($qualification); |
1521 |
} |
1522 |
|
1523 |
// Retourne le résultat |
1524 |
return $qualification; |
1525 |
} |
1526 |
|
1527 |
/** |
1528 |
* Récupère les champs archive_* d'une instruction |
1529 |
* @param string $dossier L'identifiant du dossier d'instruction |
1530 |
*/ |
1531 |
public function getArchiveInstruction($dossierID){ |
1532 |
|
1533 |
//On récupère les données du dernier DI accordé |
1534 |
$sql = "SELECT dossier.delai, dossier.accord_tacite, dossier.etat, |
1535 |
dossier.avis_decision, |
1536 |
to_char(dossier.date_complet, 'DD/MM/YYYY') as date_complet, |
1537 |
to_char(dossier.date_dernier_depot, 'DD/MM/YYYY') as date_dernier_depot, |
1538 |
to_char(dossier.date_rejet, 'DD/MM/YYYY') as date_rejet, |
1539 |
to_char(dossier.date_limite, 'DD/MM/YYYY') as date_limite, |
1540 |
to_char(dossier.date_notification_delai, 'DD/MM/YYYY') as date_notification_delai, |
1541 |
to_char(dossier.date_decision, 'DD/MM/YYYY') as date_decision, |
1542 |
to_char(dossier.date_validite, 'DD/MM/YYYY') as date_validite, |
1543 |
to_char(dossier.date_achevement, 'DD/MM/YYYY') as date_achevement, |
1544 |
to_char(dossier.date_chantier, 'DD/MM/YYYY') as date_chantier, |
1545 |
to_char(dossier.date_conformite, 'DD/MM/YYYY') as date_conformite, |
1546 |
dossier.incompletude, |
1547 |
dossier.evenement_suivant_tacite, dossier.evenement_suivant_tacite_incompletude, |
1548 |
dossier.etat_pendant_incompletude, |
1549 |
to_char(dossier.date_limite_incompletude, 'DD/MM/YYYY') as date_limite_incompletude, |
1550 |
dossier.delai_incompletude, dossier.autorite_competente, dossier.duree_validite |
1551 |
,dossier.dossier |
1552 |
FROM ".DB_PREFIXE."dossier |
1553 |
LEFT JOIN ".DB_PREFIXE."avis_decision |
1554 |
ON dossier.avis_decision = avis_decision.avis_decision |
1555 |
WHERE dossier.avis_decision IS NOT NULL AND avis_decision.typeavis = 'F' |
1556 |
AND dossier.dossier_autorisation = ( |
1557 |
SELECT dossier_autorisation.dossier_autorisation |
1558 |
FROM ".DB_PREFIXE."dossier_autorisation |
1559 |
LEFT JOIN ".DB_PREFIXE."dossier |
1560 |
ON dossier_autorisation.dossier_autorisation = dossier.dossier_autorisation |
1561 |
WHERE dossier = '".$dossierID."') |
1562 |
ORDER BY dossier.version DESC"; |
1563 |
|
1564 |
$res = $this->db->query($sql); |
1565 |
$this->addToLog("updateArchiveInstruction(): db->query(\"".$sql."\");", VERBOSE_MODE); |
1566 |
if (database::isError($res)) { |
1567 |
die($res->getMessage()); |
1568 |
} |
1569 |
|
1570 |
//Un des dosssiers d'instruction a été accordé, on récupère ses données |
1571 |
if ( $res->numrows() != 0 ){ |
1572 |
|
1573 |
$row=& $res->fetchRow(DB_FETCHMODE_ASSOC); |
1574 |
require_once "../obj/instruction.class.php"; |
1575 |
$instruction = new instruction("]",$this->db,DEBUG); |
1576 |
|
1577 |
$instruction->setParameter("maj", 1); |
1578 |
$instruction->updateArchiveData($row); |
1579 |
return $instruction->valF; |
1580 |
} |
1581 |
//Sinon, on prend les données du P0, si ce n'est pas un P0 |
1582 |
else { |
1583 |
$sql = "SELECT dossier.delai, dossier.accord_tacite, dossier.etat, |
1584 |
dossier.avis_decision, dossier.date_complet, dossier.date_dernier_depot, |
1585 |
dossier.date_rejet, dossier.date_limite, dossier.date_notification_delai, |
1586 |
dossier.date_decision, dossier.date_validite, dossier.date_achevement, |
1587 |
dossier.date_chantier, dossier.date_conformite, dossier.incompletude, |
1588 |
dossier.evenement_suivant_tacite, dossier.evenement_suivant_tacite_incompletude, |
1589 |
dossier.etat_pendant_incompletude, dossier.date_limite_incompletude, |
1590 |
dossier.delai_incompletude, dossier.autorite_competente, dossier.duree_validite |
1591 |
,dossier.dossier |
1592 |
FROM ".DB_PREFIXE."dossier |
1593 |
LEFT JOIN ".DB_PREFIXE."dossier_instruction_type |
1594 |
ON dossier.dossier_instruction_type = dossier_instruction_type.dossier_instruction_type |
1595 |
WHERE dossier.dossier_autorisation = ( |
1596 |
SELECT dossier_autorisation.dossier_autorisation |
1597 |
FROM ".DB_PREFIXE."dossier_autorisation |
1598 |
LEFT JOIN ".DB_PREFIXE."dossier |
1599 |
ON dossier_autorisation.dossier_autorisation = dossier.dossier_autorisation |
1600 |
WHERE dossier = '".$dossierID."') |
1601 |
AND dossier_instruction_type.code = 'P' |
1602 |
ORDER BY dossier.version DESC"; |
1603 |
$res = $this->db->query($sql); |
1604 |
$this->addToLog("updateArchiveInstruction(): db->query(\"".$sql."\");", VERBOSE_MODE); |
1605 |
if (database::isError($res)) { |
1606 |
die($res->getMessage()); |
1607 |
} |
1608 |
|
1609 |
//On est pas dans le cas d'un dépôt d'un P0 |
1610 |
if ( $res->numrows() != 0 ){ |
1611 |
$row=& $res->fetchRow(DB_FETCHMODE_ASSOC); |
1612 |
require_once "../obj/instruction.class.php"; |
1613 |
$instruction = new instruction("]",$this->db,DEBUG); |
1614 |
$instruction->setParameter("maj", 1); |
1615 |
$instruction->updateArchiveData($row); |
1616 |
return $instruction->valF; |
1617 |
} |
1618 |
} |
1619 |
} |
1620 |
}// fin classe |
1621 |
?> |