1 |
fraynaud |
3 |
<?php |
2 |
|
|
//$Id$ |
3 |
nhaye |
427 |
//gen openMairie le 10/02/2011 20:39 |
4 |
|
|
|
5 |
fraynaud |
3 |
require_once ("../gen/obj/dossier.class.php"); |
6 |
mlimic |
835 |
require_once("../services/outgoing/messageenqueuer.php"); |
7 |
fraynaud |
3 |
|
8 |
|
|
class dossier extends dossier_gen { |
9 |
|
|
|
10 |
fraynaud |
20 |
var $maj; |
11 |
fraynaud |
128 |
var $sig; |
12 |
|
|
var $servitude=""; |
13 |
|
|
var $auto_pos; |
14 |
|
|
var $auto_servitude_surfacique; |
15 |
fraynaud |
142 |
var $auto_servitude_ligne; |
16 |
|
|
var $auto_servitude_point; |
17 |
|
|
var $auto_parcelle; |
18 |
|
|
var $auto_parcelle_lot; |
19 |
nhaye |
467 |
var $aff_depot = "collapsible"; |
20 |
|
|
var $aff_travaux = "collapsible"; |
21 |
|
|
var $aff_instruction = "collapsible"; |
22 |
|
|
var $aff_demandeur = "startClosed"; |
23 |
|
|
var $aff_delegataire = "startClosed"; |
24 |
|
|
var $aff_terrain = "startClosed"; |
25 |
|
|
var $aff_localisation = "collapsible"; |
26 |
|
|
var $aff_description = "startClosed"; |
27 |
|
|
var $aff_amenagement = "startClosed"; |
28 |
fmichon |
1005 |
var $dossier_instruction_type; |
29 |
nhaye |
1376 |
var $valIdDemandeur = array("petitionnaire_principal" => "", |
30 |
|
|
"delegataire" => "", |
31 |
|
|
"petitionnaire" => array()); |
32 |
|
|
var $postedIdDemandeur = array("petitionnaire_principal" => "", |
33 |
|
|
"delegataire" => "", |
34 |
|
|
"petitionnaire" => array()); |
35 |
nhaye |
467 |
|
36 |
fmichon |
943 |
function dossier($id,&$db,$DEBUG) { |
37 |
nhaye |
467 |
$this->constructeur($id,$db,$DEBUG); |
38 |
|
|
} // fin constructeur |
39 |
vpihour |
1185 |
|
40 |
fmichon |
1005 |
/*Mutateur pour ma variable dossier_instruction_type*/ |
41 |
|
|
public function getDossierInstructionType(){ |
42 |
|
|
return $this->dossier_instruction_type; |
43 |
|
|
} |
44 |
|
|
public function setDossierInstructionType($dossier_instruction_type){ |
45 |
|
|
$this->dossier_instruction_type = $dossier_instruction_type; |
46 |
|
|
} |
47 |
|
|
|
48 |
fmichon |
943 |
// {{{ Gestion de la confidentialité des données spécifiques |
49 |
|
|
|
50 |
|
|
/** |
51 |
|
|
* Surcharge pour gérer les actions disponibles dans le portlet |
52 |
|
|
*/ |
53 |
|
|
function checkAccessibility() { |
54 |
|
|
// |
55 |
|
|
parent::checkAccessibility(); |
56 |
|
|
// Si l'utilisateur est un intructeur qui en correspond pas à la |
57 |
|
|
// division du dossier |
58 |
|
|
if ($this->f->isUserInstructeur() |
59 |
|
|
&& isset($this->f->om_utilisateur["division"]) |
60 |
|
|
&& $this->f->om_utilisateur["division"] != $this->getDivisionFromDossier()) { |
61 |
|
|
// |
62 |
|
|
$this->actions_sup = array(); |
63 |
|
|
$this->setParameter("actions", array()); |
64 |
|
|
} |
65 |
vpihour |
1978 |
|
66 |
|
|
//Si l'utilisateur est un instructeur et le dossier d'instruction est clôturé, |
67 |
|
|
//il n'est plus possible de le modifier, on affiche pas le lien de modification du |
68 |
|
|
//portlet |
69 |
|
|
if ( $this->f->isUserInstructeur() && $this->getStatut() == "cloture" ){ |
70 |
|
|
|
71 |
|
|
$this->parameters["actions"]["modifier"] = NULL; |
72 |
|
|
|
73 |
|
|
//Cache le lien du rapport d'instruction, si aucun n'est lié |
74 |
|
|
if ( $this->getRapportInstruction() == '' ){ |
75 |
|
|
|
76 |
|
|
$this->actions_sup['rapport_instruction'] = NULL; |
77 |
|
|
} |
78 |
|
|
|
79 |
|
|
//Cache le lien des données techniques, si aucun n'est lié |
80 |
|
|
if ( $this->getDonneesTechniques() == '' ){ |
81 |
|
|
|
82 |
|
|
$this->actions_sup['donnees_techniques'] = NULL; |
83 |
|
|
} |
84 |
|
|
} |
85 |
fmichon |
943 |
} |
86 |
|
|
|
87 |
|
|
/** |
88 |
|
|
* Cette methode est à surcharger elle permet de tester dans chaque classe |
89 |
|
|
* des droits des droits spécifiques en fonction des données |
90 |
|
|
*/ |
91 |
|
|
function canAccess() { |
92 |
|
|
// Si l'utilisateur est un intructeur qui ne correspond pas à la |
93 |
|
|
// division du dossier |
94 |
|
|
if ($this->f->isUserInstructeur() |
95 |
|
|
&& $this->f->om_utilisateur["division"] != $this->getDivisionFromDossier() |
96 |
|
|
&& $this->getParameter("maj") != 3) { |
97 |
|
|
// |
98 |
|
|
return false; |
99 |
|
|
} |
100 |
vpihour |
1978 |
// Si l'utilisateur est un instructeur et que le dossier est cloturé |
101 |
|
|
if ( $this->f->isUserInstructeur() && $this->getStatut() == "cloture" |
102 |
|
|
&& $this->getParameter("maj") != 3) { |
103 |
|
|
|
104 |
|
|
return false; |
105 |
|
|
} |
106 |
fmichon |
943 |
// |
107 |
|
|
return true; |
108 |
|
|
} |
109 |
|
|
|
110 |
|
|
/** |
111 |
fmichon |
1908 |
* Cette variable permet de stocker le résultat de la méthode |
112 |
|
|
* getDivisionFromDossier() afin de ne pas effectuer le recalcul à chacun de |
113 |
|
|
* ces appels. |
114 |
|
|
* @var string Code de la division du dossier en cours |
115 |
fmichon |
943 |
*/ |
116 |
fmichon |
1908 |
var $_division_from_dossier = NULL; |
117 |
|
|
|
118 |
|
|
/** |
119 |
|
|
* Cette méthode permet de récupérer le code de division correspondant |
120 |
|
|
* au dossier sur lequel on se trouve. |
121 |
|
|
* |
122 |
|
|
* @return string Code de la division du dossier en cours |
123 |
|
|
*/ |
124 |
fmichon |
943 |
function getDivisionFromDossier() { |
125 |
fmichon |
1908 |
|
126 |
|
|
// Cette méthode peut être appelée plusieurs fois lors d'une requête. |
127 |
|
|
// Pour éviter de refaire le traitement de recherche de la division |
128 |
|
|
// alors on vérifie si nous ne l'avons pas déjà calculé. |
129 |
|
|
if ($this->_division_from_dossier != NULL) { |
130 |
|
|
// Logger |
131 |
|
|
$this->addToLog("getDivisionFromDossier(): retour de la valeur déjà calculée - '".$this->_division_from_dossier."'", EXTRA_VERBOSE_MODE); |
132 |
|
|
// On retourne la valeur déjà calculée |
133 |
|
|
return $this->_division_from_dossier; |
134 |
fmichon |
943 |
} |
135 |
fmichon |
1908 |
|
136 |
|
|
// Par défaut, on définit la valeur du dossier à NULL |
137 |
|
|
$dossier = NULL; |
138 |
|
|
// Test sur le mode et le contexte du formulaire |
139 |
|
|
if ($this->getParameter("maj") == 0 |
140 |
|
|
&& ($this->getParameter("retourformulaire") == "dossier" |
141 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction" |
142 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_mes_encours" |
143 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_tous_encours" |
144 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_mes_clotures" |
145 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_tous_clotures")) { |
146 |
|
|
// Si on se trouve en mode AJOUT (seul mode où l'enregistrement |
147 |
|
|
// n'existe pas en base de données) ET que nous nous trouvons |
148 |
|
|
// dans le contexte d'un dossier d'instruction alors on récupère |
149 |
|
|
// le numéro de dossier depuis le paramètre 'idxformulaire' |
150 |
|
|
$dossier = $this->getParameter("idxformulaire"); |
151 |
|
|
} else { |
152 |
|
|
// Sinon on récupère le numéro de dossier dans le champs dossier de |
153 |
|
|
// l'enregistrement (en base de données) |
154 |
|
|
$dossier = $this->getVal("dossier"); |
155 |
|
|
} |
156 |
|
|
|
157 |
|
|
// On appelle la méthode de la classe utils qui renvoi le code de la |
158 |
|
|
// division d'un dossier, on la stocke pour ne pas refaire le calcul au |
159 |
|
|
// prochain appel de cette méthode |
160 |
|
|
$this->_division_from_dossier = $this->f->getDivisionFromDossier($dossier); |
161 |
|
|
// Logger |
162 |
|
|
$this->addToLog("getDivisionFromDossier(): retour de la valeur nouvellement calculée - '".$this->_division_from_dossier."'", EXTRA_VERBOSE_MODE); |
163 |
|
|
// On retourne la valeur retournée |
164 |
|
|
return $this->_division_from_dossier; |
165 |
|
|
|
166 |
fmichon |
943 |
} |
167 |
|
|
|
168 |
|
|
// }}} |
169 |
fmichon |
1005 |
/* |
170 |
|
|
* Ajoute un numéro au dossier |
171 |
|
|
* |
172 |
|
|
*/ |
173 |
nhaye |
427 |
function setValFAjout($val = array()) { |
174 |
fmichon |
1005 |
|
175 |
|
|
/*Récupération de la lettre associé au type de dossier d'instruction*/ |
176 |
|
|
$code = $this->getCode($this->getDossierInstructionType()); |
177 |
|
|
|
178 |
|
|
/* Récupération de la valeur du suffixe ce dossier_instruction_type */ |
179 |
|
|
$suffixe = $this->getSuffixe($this->getDossierInstructionType()); |
180 |
|
|
|
181 |
|
|
/*S'il est à TRUE, on récupère le numéro de version du dossier d'autorisation*/ |
182 |
|
|
$numeroVersion = ""; |
183 |
|
|
if ( $suffixe == 't' ){ |
184 |
|
|
|
185 |
|
|
$numeroVersion = $this->getNumeroVersion($val['dossier_autorisation']); |
186 |
|
|
|
187 |
|
|
/* Incrémentation du numéro de version */ |
188 |
|
|
if ( is_numeric($numeroVersion) or $numeroVersion == -1 ){ |
189 |
|
|
|
190 |
|
|
$this->incrementNumeroVersion($val['dossier_autorisation'], ++$numeroVersion); |
191 |
|
|
} |
192 |
|
|
} |
193 |
|
|
|
194 |
|
|
/*Création du numéro de dossier*/ |
195 |
vpihour |
1029 |
$this->valF['dossier'] = $val['dossier_autorisation']."$code$numeroVersion"; |
196 |
nhaye |
1643 |
$this->valF['version'] = $numeroVersion; |
197 |
nhaye |
427 |
} |
198 |
fraynaud |
3 |
|
199 |
fmichon |
1005 |
/*Récupère la valeur du suffixe d'un dossier_instruction_type*/ |
200 |
|
|
function getSuffixe($dossierInstructionType){ |
201 |
|
|
|
202 |
|
|
$suffixe = ""; |
203 |
|
|
|
204 |
|
|
$sql = "SELECT |
205 |
|
|
suffixe |
206 |
|
|
FROM |
207 |
|
|
".DB_PREFIXE."dossier_instruction_type |
208 |
|
|
WHERE |
209 |
|
|
dossier_instruction_type = $dossierInstructionType"; |
210 |
|
|
|
211 |
|
|
$this->addToLog("getSuffixe(): db->query(\"".$sql."\")", VERBOSE_MODE); |
212 |
|
|
$res = $this->db->query($sql); |
213 |
|
|
if (database :: isError($res)) |
214 |
|
|
die($res->getMessage()."erreur ".$sql); |
215 |
|
|
|
216 |
|
|
if ( $res->numRows() > 0 ){ |
217 |
|
|
|
218 |
|
|
$row = $res->fetchRow(DB_FETCHMODE_ASSOC); |
219 |
|
|
$suffixe = $row['suffixe']; |
220 |
|
|
} |
221 |
|
|
|
222 |
|
|
return $suffixe; |
223 |
|
|
} |
224 |
|
|
|
225 |
|
|
/*Récupère dans la table de paramètrage la lettre correspondant |
226 |
|
|
* au dossier_instruction_type |
227 |
|
|
*/ |
228 |
|
|
function getCode($dossierInstructionType){ |
229 |
|
|
|
230 |
|
|
$code = ""; |
231 |
|
|
|
232 |
|
|
$sql = "SELECT |
233 |
|
|
code |
234 |
|
|
FROM |
235 |
|
|
".DB_PREFIXE."dossier_instruction_type |
236 |
|
|
WHERE |
237 |
|
|
dossier_instruction_type = $dossierInstructionType"; |
238 |
|
|
|
239 |
|
|
$this->addToLog("getCode(): db->query(\"".$sql."\")", VERBOSE_MODE); |
240 |
|
|
$res = $this->db->query($sql); |
241 |
|
|
if (database :: isError($res)) |
242 |
|
|
die($res->getMessage()."erreur ".$sql); |
243 |
|
|
|
244 |
|
|
if ( $res->numRows() > 0 ){ |
245 |
|
|
|
246 |
|
|
$row = $res->fetchRow(DB_FETCHMODE_ASSOC); |
247 |
|
|
$code = $row['code']; |
248 |
|
|
} |
249 |
|
|
|
250 |
|
|
return $code; |
251 |
|
|
} |
252 |
|
|
|
253 |
|
|
/*Récupère le numéro de version d'un dossier_autorisation*/ |
254 |
|
|
function getNumeroVersion($dossierAutorisation){ |
255 |
|
|
|
256 |
|
|
$numeroVersion = ""; |
257 |
|
|
|
258 |
|
|
$sql = "SELECT |
259 |
|
|
numero_version |
260 |
|
|
FROM |
261 |
|
|
".DB_PREFIXE."dossier_autorisation |
262 |
|
|
WHERE |
263 |
|
|
dossier_autorisation = '$dossierAutorisation'"; |
264 |
|
|
|
265 |
|
|
$this->addToLog("getNumeroVersion(): db->query(\"".$sql."\")", VERBOSE_MODE); |
266 |
|
|
$res = $this->db->query($sql); |
267 |
|
|
if (database :: isError($res)) |
268 |
|
|
die($res->getMessage()."erreur ".$sql); |
269 |
|
|
|
270 |
|
|
if ( $res->numRows() > 0 ){ |
271 |
|
|
|
272 |
|
|
$row = $res->fetchRow(DB_FETCHMODE_ASSOC); |
273 |
|
|
$numeroVersion = $row['numero_version']; |
274 |
|
|
} |
275 |
|
|
|
276 |
|
|
return $numeroVersion; |
277 |
|
|
} |
278 |
|
|
|
279 |
|
|
/*Incrémente le numéro de version du dossier*/ |
280 |
|
|
function incrementNumeroVersion($dossierAutorisation, $nouveauNumeroVersion) { |
281 |
|
|
|
282 |
|
|
$valF = array ( |
283 |
|
|
"numero_version" => $nouveauNumeroVersion |
284 |
|
|
); |
285 |
|
|
|
286 |
|
|
$res = $this->db->autoExecute(DB_PREFIXE."dossier_autorisation", |
287 |
|
|
$valF, |
288 |
|
|
DB_AUTOQUERY_UPDATE, |
289 |
|
|
"dossier_autorisation = '$dossierAutorisation'"); |
290 |
|
|
|
291 |
|
|
if (database :: isError($res)) |
292 |
|
|
die($res->getMessage()."erreur ".$sql); |
293 |
|
|
|
294 |
|
|
} |
295 |
|
|
|
296 |
fraynaud |
11 |
function setvalF($val){ |
297 |
nhaye |
427 |
parent::setvalF($val); |
298 |
nhaye |
1376 |
|
299 |
|
|
// Récupération des id demandeurs postés |
300 |
|
|
$this->getPostedValues(); |
301 |
|
|
|
302 |
fraynaud |
126 |
// enlever les valeurs a ne pas saisir -> recherche en trigger ajouter et modifier |
303 |
|
|
// $sig = 1 |
304 |
fraynaud |
369 |
unset ($this->valF['geom']); |
305 |
|
|
unset ($this->valF['geom1']); |
306 |
fraynaud |
20 |
// valeurs hiddenstatic (calcule) |
307 |
|
|
if($this->maj==1){ |
308 |
|
|
// par defaut |
309 |
|
|
unset ($this->valF['etat']); |
310 |
|
|
unset ($this->valF['delai']); |
311 |
|
|
unset ($this->valF['accord_tacite']); |
312 |
|
|
} |
313 |
vpihour |
489 |
unset ($this->valF['avis_decision']); // avis + libelle avis |
314 |
fraynaud |
20 |
unset ($this->valF['terrain_surface_calcul']); |
315 |
|
|
unset ($this->valF['shon_calcul']); |
316 |
|
|
unset ($this->valF['parcelle_archive']); |
317 |
fraynaud |
144 |
unset ($this->valF['parcelle_lot_archive']); |
318 |
fraynaud |
20 |
unset ($this->valF['date_notification_delai']); |
319 |
|
|
unset ($this->valF['date_decision']); |
320 |
|
|
unset ($this->valF['date_limite']); |
321 |
|
|
unset ($this->valF['date_validite']); |
322 |
|
|
unset ($this->valF['date_chantier']); |
323 |
|
|
unset ($this->valF['date_achevement']); |
324 |
nhaye |
427 |
unset ($this->valF['date_conformite']); |
325 |
fraynaud |
11 |
} |
326 |
|
|
|
327 |
vpihour |
1058 |
/*Vérification des données saisies*/ |
328 |
fraynaud |
11 |
function verifier($val,&$db,$DEBUG){ |
329 |
nhaye |
427 |
parent::verifier($val,$db,$DEBUG); |
330 |
nhaye |
1376 |
if(!isset($this->postedIdDemandeur["petitionnaire_principal"]) OR |
331 |
|
|
empty($this->postedIdDemandeur["petitionnaire_principal"])) { |
332 |
|
|
$this->correct = false; |
333 |
fmichon |
1725 |
$this->addToMessage(_("La saisie d'un petitionnaire principal est obligatoire.")); |
334 |
nhaye |
1376 |
} |
335 |
fraynaud |
11 |
if($val['parcelle']!="" and $val['sig']!='Oui'){ |
336 |
vpihour |
584 |
if (!preg_match('/^[0-9]{3} [A-Z]{1,3} [0-9]{1,5}$/', $val['parcelle']) && !preg_match('/^[0-9]{3}[A-Z]{1,3}[0-9]{1,5}$/', $val['parcelle'])){ |
337 |
fraynaud |
126 |
$this->correct=false; |
338 |
vpihour |
575 |
$this->addToMessage("<br>format parcelle incorrect"); |
339 |
fraynaud |
126 |
} |
340 |
fraynaud |
11 |
} |
341 |
|
|
}//verifier |
342 |
|
|
|
343 |
|
|
|
344 |
|
|
function setType(&$form,$maj) { |
345 |
nhaye |
427 |
parent::setType($form,$maj); |
346 |
nhaye |
1457 |
$form->setType('amenagement','hidden'); // PC |
347 |
|
|
$form->setType('parcelle_lot','hidden'); // PC |
348 |
|
|
$form->setType('parcelle_lot_lotissement','hidden'); // PC |
349 |
nhaye |
1643 |
$form->setType('version','hidden'); // PC |
350 |
nhaye |
1717 |
$form->setType('incompletude','hidden'); |
351 |
|
|
$form->setType('evenement_suivant_tacite','hidden'); |
352 |
|
|
$form->setType('evenement_suivant_tacite_incompletude','hidden'); |
353 |
|
|
$form->setType('etat_pendant_incompletude','hidden'); |
354 |
fraynaud |
11 |
if ($maj < 2) { //ajouter et modifier |
355 |
fraynaud |
20 |
// cache |
356 |
|
|
if($maj==0) $form->setType('dossier', 'hidden'); |
357 |
fraynaud |
11 |
$form->setType('annee', 'hidden'); |
358 |
fraynaud |
144 |
$form->setType('parcelle_archive','hidden'); |
359 |
|
|
$form->setType('parcelle_lot_archive','hidden'); |
360 |
fraynaud |
369 |
|
361 |
|
|
$form->setType('geom1', 'hidden'); |
362 |
fraynaud |
338 |
$form->setType('geom', 'geom'); |
363 |
softime |
2061 |
$form->setType('servitude', 'hiddenstatic'); |
364 |
nhaye |
427 |
|
365 |
fraynaud |
11 |
|
366 |
|
|
// hiddenstatic |
367 |
fraynaud |
20 |
if($maj==1) $form->setType('dossier', 'hiddenstatic'); |
368 |
|
|
$form->setType('etat','hiddenstatic'); |
369 |
vpihour |
489 |
$form->setType('avis_decision','hiddenstatic'); |
370 |
nhaye |
1748 |
$form->setType('delai_incompletude','hiddenstatic'); |
371 |
fraynaud |
11 |
$form->setType('delai','hiddenstatic'); |
372 |
|
|
$form->setType('terrain_surface_calcul','hiddenstatic'); |
373 |
fraynaud |
20 |
$form->setType('shon_calcul','hiddenstatic'); |
374 |
fraynaud |
11 |
|
375 |
fraynaud |
20 |
$form->setType('accord_tacite','hiddenstatic'); |
376 |
fraynaud |
11 |
|
377 |
fraynaud |
20 |
|
378 |
|
|
// hiddenstaticdate |
379 |
|
|
$form->setType('date_notification_delai','hiddenstaticdate'); |
380 |
|
|
$form->setType('date_decision','hiddenstaticdate'); |
381 |
|
|
$form->setType('date_limite','hiddenstaticdate'); |
382 |
|
|
$form->setType('date_rejet','hiddenstaticdate'); |
383 |
|
|
$form->setType('date_complet','hiddenstaticdate'); |
384 |
|
|
$form->setType('date_limite','hiddenstaticdate'); |
385 |
|
|
$form->setType('date_validite','hiddenstaticdate'); |
386 |
|
|
$form->setType('date_chantier','hiddenstaticdate'); |
387 |
|
|
$form->setType('date_achevement','hiddenstaticdate'); |
388 |
|
|
$form->setType('date_conformite','hiddenstaticdate'); |
389 |
nhaye |
1748 |
$form->setType('date_limite_incompletude','hiddenstaticdate'); |
390 |
|
|
|
391 |
nhaye |
1749 |
$form->setType('date_demande','hiddenstaticdate'); |
392 |
|
|
$form->setType('date_depot','hiddenstaticdate'); |
393 |
|
|
$form->setType('date_dernier_depot','hiddenstaticdate'); |
394 |
|
|
|
395 |
fraynaud |
20 |
// checkbox |
396 |
nhaye |
1371 |
$form->setType('sig','checkbox'); |
397 |
fraynaud |
20 |
|
398 |
fraynaud |
11 |
// zones temp et strategysig |
399 |
fraynaud |
142 |
|
400 |
|
|
|
401 |
|
|
// temp |
402 |
fraynaud |
266 |
if (file_exists ("../dyn/var.inc")) |
403 |
|
|
include ("../dyn/var.inc"); |
404 |
|
|
if(!isset($auto_pos)) |
405 |
|
|
$auto_pos=0; |
406 |
|
|
if($auto_pos==1) |
407 |
|
|
$form->setType('pos','hiddenstatic'); |
408 |
|
|
else |
409 |
|
|
$form->setType('pos','select'); |
410 |
fraynaud |
11 |
$form->setType('temp1',$temp1_type); |
411 |
|
|
$form->setType('temp2',$temp2_type); |
412 |
|
|
$form->setType('temp3',$temp3_type); |
413 |
|
|
$form->setType('temp4',$temp4_type); |
414 |
|
|
$form->setType('temp5',$temp5_type); |
415 |
mlimic |
858 |
$form->setType('a_qualifier', 'checkbox'); |
416 |
nhaye |
1434 |
|
417 |
|
|
$form->setType('parcelle', 'hidden'); |
418 |
|
|
$form->setType('pos', 'hidden'); |
419 |
|
|
$form->setType('sig', 'hidden'); |
420 |
|
|
$form->setType('batiment_nombre', 'hidden'); |
421 |
|
|
$form->setType('logement_nombre', 'hidden'); |
422 |
|
|
$form->setType('hauteur', 'hidden'); |
423 |
|
|
$form->setType('piece_nombre', 'hidden'); |
424 |
|
|
$form->setType('shon', 'hidden'); |
425 |
|
|
$form->setType('shon_calcul', 'hidden'); |
426 |
|
|
$form->setType('shob', 'hidden'); |
427 |
|
|
$form->setType('lot', 'hidden'); |
428 |
fraynaud |
11 |
} |
429 |
fmichon |
686 |
if ($maj == 1) { |
430 |
|
|
// |
431 |
|
|
if ($this->f->isAccredited("dossier_modifier_instructeur")) { |
432 |
|
|
$form->setType('instructeur', 'select'); |
433 |
|
|
} else { |
434 |
|
|
$form->setType('instructeur', 'selecthiddenstatic'); |
435 |
|
|
} |
436 |
|
|
// |
437 |
|
|
if($this->f->getParameter('afficher_division') === 'true') { |
438 |
|
|
// |
439 |
|
|
if ($this->f->isAccredited("dossier_modifier_division")) { |
440 |
|
|
$form->setType('division', 'select'); |
441 |
|
|
} else { |
442 |
|
|
$form->setType('division', 'selecthiddenstatic'); |
443 |
|
|
} |
444 |
|
|
} else { |
445 |
|
|
$form->setType('division', 'hidden'); |
446 |
|
|
} |
447 |
|
|
} |
448 |
nhaye |
445 |
if($maj == 3) { |
449 |
|
|
$form->setType('annee', 'hidden'); |
450 |
|
|
$form->setType('temp1','hidden'); |
451 |
|
|
$form->setType('temp2','hidden'); |
452 |
|
|
$form->setType('temp3','hidden'); |
453 |
|
|
$form->setType('temp4','hidden'); |
454 |
|
|
$form->setType('temp5','hidden'); |
455 |
|
|
$form->setType('parcelle_archive','hidden'); |
456 |
|
|
$form->setType('parcelle_lot_archive','hidden'); |
457 |
|
|
$form->setType('geom1','hidden'); |
458 |
nhaye |
446 |
$form->setType('geom','hidden'); |
459 |
mlimic |
858 |
$form->setType('a_qualifier', 'checkboxstatic'); |
460 |
nhaye |
1676 |
$form->setType('terrain_references_cadastrales','referencescadastralesstatic'); // PC |
461 |
nhaye |
1434 |
$form->setType('parcelle', 'hidden'); |
462 |
|
|
$form->setType('pos', 'hidden'); |
463 |
|
|
$form->setType('sig', 'hidden'); |
464 |
|
|
$form->setType('batiment_nombre', 'hidden'); |
465 |
|
|
$form->setType('logement_nombre', 'hidden'); |
466 |
|
|
$form->setType('hauteur', 'hidden'); |
467 |
|
|
$form->setType('piece_nombre', 'hidden'); |
468 |
|
|
$form->setType('shon', 'hidden'); |
469 |
|
|
$form->setType('shon_calcul', 'hidden'); |
470 |
|
|
$form->setType('shob', 'hidden'); |
471 |
|
|
$form->setType('lot', 'hidden'); |
472 |
nhaye |
445 |
} |
473 |
fmichon |
686 |
// |
474 |
|
|
if(!$this->f->getParameter('afficher_division') === 'true') { |
475 |
|
|
$form->setType('division', 'hidden'); |
476 |
|
|
} |
477 |
fmichon |
927 |
$form->setType('dossier_autorisation', 'hiddenstatic'); |
478 |
nhaye |
1229 |
$form->setType('dossier_instruction_type', 'selecthiddenstatic'); |
479 |
fmichon |
933 |
// |
480 |
|
|
if ($maj == 0) { |
481 |
|
|
$form->setType('dossier_autorisation', 'select'); |
482 |
|
|
} |
483 |
nhaye |
948 |
// On cache enjeu_ERP si l'option n'est pas activée |
484 |
fmichon |
959 |
if($this->f->getParameter('option_ERP') != 'true') { |
485 |
nhaye |
948 |
$form->setType('erp', 'hidden'); |
486 |
|
|
$form->setType('enjeu_erp', 'hidden'); |
487 |
|
|
} |
488 |
fraynaud |
11 |
} |
489 |
|
|
|
490 |
|
|
function setVal(&$form,$maj,$validation){ |
491 |
fraynaud |
20 |
$this->maj=$maj; |
492 |
fraynaud |
11 |
if ($validation==0) { |
493 |
|
|
if ($maj == 0){ |
494 |
nhaye |
467 |
//$dossier_cp = $this->f->collectivite["cp"]; |
495 |
|
|
//$dossier_ville = $this->f->collectivite["ville"]; |
496 |
fraynaud |
11 |
|
497 |
|
|
$form->setVal('annee', date('y')); |
498 |
|
|
$form->setVal('date_demande', date('Y-m-d')); |
499 |
|
|
$form->setVal('date_depot', date('Y-m-d')); |
500 |
|
|
|
501 |
nhaye |
467 |
//$form->setVal('demandeur_cp', $dossier_cp); |
502 |
|
|
//$form->setVal('demandeur_ville', $dossier_ville); |
503 |
fraynaud |
11 |
|
504 |
nhaye |
467 |
//$form->setVal('delegataire_cp', $dossier_cp); |
505 |
|
|
//$form->setVal('delegataire_ville', $dossier_ville); |
506 |
fraynaud |
11 |
|
507 |
nhaye |
467 |
//$form->setVal('terrain_cp', $dossier_cp); |
508 |
|
|
//$form->setVal('terrain_ville', $dossier_ville); |
509 |
fraynaud |
11 |
|
510 |
|
|
$form->setVal('accord_tacite', 'Non'); |
511 |
|
|
$form->setVal('etat', 'initialiser'); |
512 |
nhaye |
427 |
} |
513 |
fraynaud |
11 |
} |
514 |
|
|
} |
515 |
|
|
|
516 |
|
|
function setSelect(&$form, $maj,&$db,$debug) { |
517 |
nhaye |
427 |
parent::setSelect($form, $maj,$db,$debug); |
518 |
fraynaud |
20 |
//optimisation sur table importante parcelle -> pas d appel methode parent |
519 |
atreal |
312 |
if(file_exists ("../sql/".$db->phptype."/".$this->table.".form.inc.php")) |
520 |
|
|
include ("../sql/".$db->phptype."/".$this->table.".form.inc.php"); |
521 |
fraynaud |
11 |
if($maj<2){ |
522 |
fraynaud |
142 |
// parcelle_lot |
523 |
|
|
$contenu=""; |
524 |
|
|
$contenu[0][0]="parcelle_lot";// table |
525 |
|
|
$contenu[0][1]="parcelle_lot"; // zone origine |
526 |
|
|
$contenu[1][0]="lotissement"; |
527 |
|
|
$contenu[1][1]="parcelle_lot_lotissement"; |
528 |
|
|
$form->setSelect("parcelle_lot",$contenu); |
529 |
|
|
$contenu=""; |
530 |
|
|
$contenu[0][0]="parcelle_lot";// table |
531 |
|
|
$contenu[0][1]="lotissement"; // zone origine |
532 |
|
|
$contenu[1][0]="parcelle_lot"; |
533 |
|
|
$contenu[1][1]="parcelle_lot"; |
534 |
|
|
$form->setSelect("parcelle_lot_lotissement",$contenu); |
535 |
fraynaud |
11 |
// accord tacite |
536 |
|
|
$contenu=array(); |
537 |
|
|
$contenu[0]=array('Non','Oui'); |
538 |
|
|
$contenu[1]=array('Non','Oui'); |
539 |
|
|
$form->setSelect("accord_tacite",$contenu); |
540 |
softime |
2061 |
|
541 |
fraynaud |
338 |
// geom *** a voir |
542 |
|
|
if($maj==1){ //modification |
543 |
|
|
$contenu=array(); |
544 |
|
|
$contenu[0]=array("dossier",$this->getParameter("idx")); |
545 |
|
|
$form->setSelect('geom',$contenu); |
546 |
|
|
} |
547 |
nhaye |
1023 |
// arrondissement recherche anvancée |
548 |
|
|
$this->init_select($form, $db, $maj, $debug, "arrondissement", |
549 |
|
|
$sql_arrondissement, $sql_arrondissement_by_id, false); |
550 |
|
|
// dossier_autorisation_type_detaille recherche anvancée |
551 |
|
|
$this->init_select($form, $db, $maj, $debug, "dossier_autorisation_type_detaille", |
552 |
|
|
$sql_dossier_autorisation_type_detaille, $sql_dossier_autorisation_type_detaille_by_id, false); |
553 |
vpihour |
575 |
/* |
554 |
|
|
* Affichage de données dans le select de la parcelle |
555 |
|
|
* */ |
556 |
|
|
$contenu=array(); |
557 |
|
|
$sql="select parcelle from ".DB_PREFIXE."parcelle "; |
558 |
|
|
$res = $db->query($sql); |
559 |
|
|
if (database::isError($res)) |
560 |
|
|
die($res->getMessage()); |
561 |
|
|
$contenu[0][0]=""; |
562 |
|
|
$contenu[1][0]=_("choisir parcelle"); |
563 |
|
|
$k=1; |
564 |
|
|
while ($row=& $res->fetchRow()){ |
565 |
|
|
$contenu[0][$k]=$row[0]; |
566 |
|
|
$contenu[1][$k]=$row[0]; |
567 |
|
|
$k++; |
568 |
|
|
} |
569 |
|
|
$form->setSelect("parcelle",$contenu); |
570 |
|
|
|
571 |
fraynaud |
11 |
} |
572 |
nhaye |
517 |
if($this->f->getParameter('afficher_division')==='true') { |
573 |
|
|
// instructeur |
574 |
nhaye |
520 |
$this->init_select($form, $db, $maj, $debug, "instructeur", |
575 |
|
|
$sql_instructeur_div, $sql_instructeur_div_by_id, false); |
576 |
nhaye |
517 |
} |
577 |
fraynaud |
11 |
} |
578 |
|
|
|
579 |
fraynaud |
345 |
function setLib(&$form,$maj) { |
580 |
|
|
parent::setLib($form,$maj); |
581 |
|
|
$form->setLib('geom',''); |
582 |
nhaye |
1734 |
$form->setLib('date_limite',_("date limite d'instruction")); |
583 |
nhaye |
1748 |
$form->setLib('delai',_("delai d'instruction")); |
584 |
nhaye |
1734 |
|
585 |
fraynaud |
345 |
} |
586 |
|
|
|
587 |
fraynaud |
11 |
function setGroupe(&$form,$maj){ |
588 |
|
|
|
589 |
fraynaud |
20 |
// localisation |
590 |
fraynaud |
11 |
$form->setGroupe('parcelle','D'); |
591 |
fraynaud |
142 |
$form->setGroupe('pos','G'); |
592 |
fraynaud |
345 |
if($maj==1){ |
593 |
|
|
$form->setGroupe('sig','G'); |
594 |
|
|
$form->setGroupe('geom','F'); |
595 |
nhaye |
427 |
}else { |
596 |
|
|
$form->setGroupe('sig','F'); |
597 |
fraynaud |
345 |
} |
598 |
nhaye |
427 |
if($maj==1){ |
599 |
|
|
$form->setGroupe('sig','G'); |
600 |
|
|
$form->setGroupe('geom','F'); |
601 |
|
|
} |
602 |
fraynaud |
345 |
|
603 |
fraynaud |
11 |
} |
604 |
|
|
|
605 |
|
|
function setOnchange(&$form,$maj){ |
606 |
|
|
parent::setOnchange($form,$maj); |
607 |
|
|
// mise en majuscule |
608 |
|
|
$form->setOnchange("demandeur_nom","this.value=this.value.toUpperCase()"); |
609 |
|
|
$form->setOnchange("demandeur_societe","this.value=this.value.toUpperCase()"); |
610 |
|
|
$form->setOnchange("delegataire_nom","this.value=this.value.toUpperCase()"); |
611 |
|
|
$form->setOnchange("delegataire_societe","this.value=this.value.toUpperCase()"); |
612 |
fraynaud |
20 |
$form->setOnchange("architecte_nom","this.value=this.value.toUpperCase()"); |
613 |
fraynaud |
89 |
$form->setOnchange("terrain_adresse","this.value=this.value.toUpperCase()"); |
614 |
fraynaud |
271 |
$form->setOnchange('shon','VerifNumdec(this)'); |
615 |
|
|
$form->setOnchange('shob','VerifNumdec(this)'); |
616 |
|
|
$form->setOnchange('hauteur','VerifNumdec(this)'); |
617 |
fraynaud |
292 |
$form->setOnchange('terrain_surface','VerifNumdec(this)'); |
618 |
fraynaud |
11 |
} |
619 |
|
|
|
620 |
fmichon |
681 |
function setLayout(&$form, $maj) { |
621 |
fmichon |
686 |
// |
622 |
|
|
$form->setBloc('dossier', 'D', '', ($maj == 3 ? 'col_9':'col_12')); |
623 |
nhaye |
1434 |
$form->setBloc('dossier', 'D', '', 'col_9'); |
624 |
nhaye |
1457 |
|
625 |
nhaye |
1434 |
$form->setFieldset('dossier', 'D', _("Dossier d'instruction")); |
626 |
|
|
$form->setFieldset('autorite_competente', 'F'); |
627 |
nhaye |
1457 |
|
628 |
nhaye |
1434 |
$form->setBloc('autorite_competente', 'F'); |
629 |
nhaye |
1457 |
|
630 |
nhaye |
1434 |
$form->setBloc('date_demande', 'D', '', 'col_3'); |
631 |
nhaye |
1457 |
|
632 |
nhaye |
1434 |
$form->setFieldset('date_demande', 'D', _("Depot")); |
633 |
nhaye |
1571 |
$form->setFieldset('date_dernier_depot', 'F'); |
634 |
nhaye |
1434 |
|
635 |
|
|
$form->setFieldset('enjeu_urba', 'D', _("Enjeu")); |
636 |
|
|
$form->setFieldset('enjeu_erp', 'F'); |
637 |
|
|
|
638 |
|
|
$form->setFieldset('erp', 'D', _("Qualification")); |
639 |
|
|
$form->setFieldset('a_qualifier', 'F'); |
640 |
nhaye |
1457 |
|
641 |
nhaye |
1434 |
$form->setBloc('a_qualifier', 'F'); |
642 |
|
|
$form->setBloc('a_qualifier', 'F'); |
643 |
fmichon |
686 |
// |
644 |
nhaye |
1750 |
$form->setBloc('date_complet', 'D', '', 'col_12'); |
645 |
nhaye |
1457 |
|
646 |
|
|
$form->setFieldset('date_complet', 'D', _('Instruction'), 'col_12'); |
647 |
nhaye |
1748 |
|
648 |
|
|
$form->setBloc('date_complet', 'D', '', 'col_4'); |
649 |
|
|
$form->setBloc('date_limite_incompletude', 'F'); |
650 |
|
|
|
651 |
|
|
$form->setBloc('date_rejet', 'D', '', 'col_4'); |
652 |
|
|
$form->setBloc('delai_incompletude', 'F'); |
653 |
|
|
|
654 |
|
|
$form->setBloc('etat', 'D', '', 'col_4'); |
655 |
nhaye |
1750 |
$form->setBloc('date_conformite', 'F'); |
656 |
nhaye |
1748 |
|
657 |
nhaye |
1750 |
$form->setFieldset('date_conformite','F',''); |
658 |
nhaye |
1457 |
|
659 |
nhaye |
1750 |
$form->setBloc('date_conformite', 'F'); |
660 |
fmichon |
686 |
|
661 |
vpihour |
1372 |
$form->setBloc('parcelle','D',"", "col_12"); |
662 |
nhaye |
1457 |
$form->setBloc('geom1','F'); |
663 |
vpihour |
1372 |
|
664 |
|
|
//Fieldset "Localisation du terrain" |
665 |
|
|
$form->setBloc('terrain_references_cadastrales','D',"","col_12"); |
666 |
|
|
$form->setFieldset('terrain_references_cadastrales','D',_('Localisation du terrain')); |
667 |
|
|
$form->setFieldset('terrain_superficie','F',''); |
668 |
|
|
$form->setBloc('terrain_superficie','F'); |
669 |
fmichon |
681 |
} |
670 |
|
|
|
671 |
|
|
function setRegroupe(&$form,$maj) { |
672 |
|
|
//// depot |
673 |
|
|
//If ($maj==0){ |
674 |
|
|
// $form->setRegroupe('date_demande','D',_("Depot"),$this->aff_depot ); |
675 |
|
|
//} |
676 |
|
|
//If ($maj==1){ |
677 |
|
|
// $form->setRegroupe('dossier','D',_("Depot"), $this->aff_depot); |
678 |
|
|
// $form->setRegroupe('date_demande','G',''); |
679 |
|
|
//} |
680 |
|
|
//$form->setRegroupe('date_depot','G',''); |
681 |
|
|
//$form->setRegroupe('division','F',''); |
682 |
|
|
|
683 |
fraynaud |
15 |
|
684 |
fraynaud |
20 |
|
685 |
fraynaud |
257 |
$form->setRegroupe('description','D',_('description').' '._('servitude'), $this->aff_amenagement); |
686 |
fraynaud |
256 |
$form->setRegroupe('servitude','F',''); |
687 |
|
|
|
688 |
mlimic |
858 |
|
689 |
fraynaud |
11 |
} |
690 |
|
|
|
691 |
vpihour |
584 |
/* ============================================================= |
692 |
|
|
* fonction trigger relative a la connexion SIG |
693 |
|
|
* $sig = 1 dans dyn/var.inc |
694 |
mlimic |
835 |
* utilisé aussi pour envoyer une message au service REST d'ERP |
695 |
vpihour |
584 |
* =============================================================== |
696 |
|
|
*/ |
697 |
|
|
|
698 |
|
|
function triggerajouterapres($id,&$db,$val,$DEBUG) { |
699 |
|
|
$this->sig_parametre($db); |
700 |
|
|
$id=$this->valF['dossier']; // id n est pas valorise en ajout |
701 |
|
|
if($this->sig==1 and $val['sig']!='Oui'){ |
702 |
|
|
if($val['parcelle']!=''or $val['parcelle_lot']!=''){ |
703 |
|
|
|
704 |
|
|
$this->sig_interne($id,$db,$val,$DEBUG); |
705 |
|
|
} |
706 |
|
|
else |
707 |
|
|
$this->addToMessage("<br>"._("Parcelle non renseignee dans dossier")." ".$id." <br>"); |
708 |
|
|
|
709 |
|
|
} |
710 |
mlimic |
835 |
|
711 |
mlimic |
896 |
|
712 |
fmichon |
1005 |
if ($this->f->getParameter('option_erp') != "") { |
713 |
|
|
// envoi du message a ERP en cas d'un depot du dossier dat |
714 |
nhaye |
1140 |
if ($this->getDATDCode($this->valF['dossier']) == |
715 |
fmichon |
1005 |
$this->f->getParameter('erp_depot_dossier_dat')) { |
716 |
mlimic |
915 |
$msgenque = new MessageEnqueuer(); |
717 |
|
|
$msgenque->setDossierInstructionIdentifier($this->valF['dossier']); |
718 |
fmichon |
1005 |
$msgenque->enqueueMessage($msgenque::$ERP_DEPOT_DOSSIER_DAT); |
719 |
mlimic |
915 |
} |
720 |
|
|
|
721 |
fmichon |
1005 |
// envoi du message a ERP en cas d'une demande d'ouverture DAT |
722 |
nhaye |
1140 |
if ($this->getDATDCode($this->valF['dossier']) == |
723 |
fmichon |
1005 |
$this->f->getParameter('erp_demande_ouverture_dat')) { |
724 |
mlimic |
915 |
$msgenque = new MessageEnqueuer(); |
725 |
|
|
$msgenque->setDossierInstructionIdentifier($this->valF['dossier']); |
726 |
fmichon |
1005 |
$msgenque->enqueueMessage($msgenque::$ERP_DEMANDE_OUVERTURE_DAT); |
727 |
mlimic |
915 |
} |
728 |
fmichon |
1005 |
|
729 |
|
|
if ($this->valF['erp'] === true) { |
730 |
|
|
// envoi du message a ERP en cas d'annulation d'une demande |
731 |
nhaye |
1140 |
if ($this->getDATDCode($this->valF['dossier']) == |
732 |
fmichon |
1005 |
$this->f->getParameter('erp_annulation_demande')) { |
733 |
|
|
$msgenque = new MessageEnqueuer(); |
734 |
|
|
$msgenque->setDossierInstructionIdentifier($this->valF['dossier']); |
735 |
|
|
$msgenque->enqueueMessage($msgenque::$ERP_ANNULATION_DEMANDE); |
736 |
|
|
} |
737 |
|
|
|
738 |
|
|
// envoi du message a ERP en cas d'ouverture d'un dossier PC "rattache" |
739 |
|
|
// au dossier DAACT |
740 |
nhaye |
1140 |
if ($this->getDATDCode($this->valF['dossier']) == |
741 |
fmichon |
1005 |
$this->f->getParameter('erp_demande_ouverture_pc_daact')) { |
742 |
|
|
$msgenque = new MessageEnqueuer(); |
743 |
|
|
$msgenque->setDossierInstructionIdentifier($this->valF['dossier']); |
744 |
|
|
$msgenque->enqueueMessage($msgenque::$ERP_DEMANDE_OUVERTURE_PC); |
745 |
|
|
} |
746 |
|
|
} |
747 |
nhaye |
1643 |
} // fin de if ($this->f->getParameter('option_erp') != "") |
748 |
|
|
|
749 |
|
|
// Mise à jour des données du dossier d'autorisation |
750 |
|
|
require_once "../obj/dossier_autorisation.class.php"; |
751 |
|
|
$da = new dossier_autorisation($this->valF["dossier_autorisation"], $this->db, DEBUG); |
752 |
|
|
$da->majDossierAutorisation(); |
753 |
vpihour |
584 |
} |
754 |
|
|
|
755 |
vpihour |
575 |
/* |
756 |
|
|
* Calcul l'identifiant du quartier et d'un arrondissement d'une parcelle |
757 |
|
|
* */ |
758 |
vpihour |
770 |
function getQuartierArrondissement($parcelle) { |
759 |
vpihour |
575 |
|
760 |
|
|
$parcelle = trim($parcelle); |
761 |
vpihour |
626 |
$quartier = ''; |
762 |
vpihour |
575 |
|
763 |
vpihour |
770 |
/*Récupère le code impot du quartier dans la parcelle*/ |
764 |
|
|
for ( $i = 0 ; $i < strlen($parcelle) ; $i++ ){ |
765 |
|
|
|
766 |
|
|
if (is_numeric($parcelle[$i]) ){ |
767 |
|
|
|
768 |
vpihour |
575 |
$quartier .= $parcelle[$i]; |
769 |
vpihour |
770 |
} |
770 |
|
|
else{ |
771 |
|
|
|
772 |
vpihour |
575 |
break; |
773 |
vpihour |
770 |
} |
774 |
|
|
} |
775 |
vpihour |
575 |
|
776 |
|
|
if ( $quartier !== '' ){ |
777 |
|
|
|
778 |
|
|
/*identifiant*/ |
779 |
|
|
$sql = "SELECT |
780 |
|
|
quartier, arrondissement |
781 |
|
|
FROM |
782 |
fmichon |
923 |
".DB_PREFIXE."quartier |
783 |
vpihour |
575 |
WHERE |
784 |
|
|
code_impots='$quartier'"; |
785 |
|
|
|
786 |
vpihour |
770 |
$this->addToLog("getQuartierArrondissement(parcelle) : db->query(\"$sql\")", VERBOSE_MODE); |
787 |
|
|
$res = $this->db->query($sql); |
788 |
vpihour |
575 |
if (database :: isError($res)) |
789 |
|
|
die($res->getMessage()."erreur ".$sql); |
790 |
|
|
|
791 |
vpihour |
621 |
if ( $res->numRows() > 0 ){ |
792 |
|
|
|
793 |
vpihour |
770 |
return $res->fetchRow(DB_FETCHMODE_ASSOC); |
794 |
vpihour |
575 |
} |
795 |
|
|
} |
796 |
vpihour |
770 |
|
797 |
|
|
return NULL; |
798 |
vpihour |
575 |
} |
799 |
|
|
|
800 |
|
|
/* |
801 |
|
|
* Retourne la section d'une parcelle |
802 |
|
|
* */ |
803 |
|
|
function getSection($parcelle){ |
804 |
|
|
|
805 |
|
|
$parcelle = trim($parcelle); |
806 |
vpihour |
584 |
$section = NULL; |
807 |
vpihour |
575 |
|
808 |
|
|
for ( $i = 0 ; $i < strlen($parcelle) ; $i++ ) |
809 |
|
|
if ( !is_numeric($parcelle[$i]) && is_string($parcelle[$i]) && $parcelle[$i] !== ' ' ) |
810 |
|
|
$section .= $parcelle[$i]; |
811 |
|
|
|
812 |
|
|
return $section; |
813 |
|
|
} |
814 |
vpihour |
584 |
|
815 |
|
|
/* |
816 |
|
|
* Retourne l'intructeur correspondant le mieux à la parcelle |
817 |
|
|
* */ |
818 |
vpihour |
939 |
function getInstructeurDivision( $quartier, $arrondissement, $section, $dossier_autorisation) { |
819 |
vpihour |
770 |
|
820 |
|
|
$quartier = ( $quartier == NULL ) ? -1 : $quartier; |
821 |
|
|
$arrondissement = ( $arrondissement == NULL ) ? -1 : $arrondissement; |
822 |
vpihour |
584 |
|
823 |
vpihour |
939 |
/*Récupération du dossier_autorisation_type_detaille concerné par le $dossier_autorisation*/ |
824 |
vpihour |
584 |
$sql = " |
825 |
|
|
SELECT |
826 |
vpihour |
939 |
dossier_autorisation_type_detaille |
827 |
vpihour |
584 |
FROM |
828 |
vpihour |
939 |
".DB_PREFIXE."dossier_autorisation |
829 |
vpihour |
584 |
WHERE |
830 |
vpihour |
939 |
dossier_autorisation = '$dossier_autorisation'"; |
831 |
vpihour |
770 |
|
832 |
vpihour |
939 |
$this->addToLog("getInstructeurDivision : db->query(\"$sql\")", VERBOSE_MODE); |
833 |
|
|
$resDATD = $this->db->query($sql); |
834 |
|
|
if (database :: isError($resDATD)) |
835 |
|
|
die($resDATD->getMessage()."erreur ".$sql); |
836 |
vpihour |
584 |
|
837 |
vpihour |
939 |
if ( $resDATD->numRows() > 0 ){ |
838 |
|
|
$rowDATD = $resDATD->fetchRow(DB_FETCHMODE_ASSOC); |
839 |
vpihour |
719 |
|
840 |
vpihour |
939 |
$sql = " |
841 |
|
|
SELECT |
842 |
|
|
instructeur, section, quartier, arrondissement, dossier_autorisation_type_detaille |
843 |
|
|
FROM |
844 |
|
|
".DB_PREFIXE."affectation_automatique l |
845 |
|
|
WHERE |
846 |
|
|
( dossier_autorisation_type_detaille IS NULL AND arrondissement IS NULL AND quartier IS NULL AND section IS NULL ) OR |
847 |
|
|
( dossier_autorisation_type_detaille IS NULL AND arrondissement IS NULL AND quartier IS NULL AND section = '$section' ) OR |
848 |
|
|
( dossier_autorisation_type_detaille IS NULL AND arrondissement IS NULL AND quartier = $quartier AND section IS NULL ) OR |
849 |
|
|
( dossier_autorisation_type_detaille IS NULL AND arrondissement IS NULL AND quartier = $quartier AND section = '$section' ) OR |
850 |
|
|
( dossier_autorisation_type_detaille IS NULL AND arrondissement = $arrondissement AND quartier IS NULL AND section IS NULL ) OR |
851 |
|
|
( dossier_autorisation_type_detaille IS NULL AND arrondissement = $arrondissement AND quartier IS NULL AND section = '$section' ) OR |
852 |
|
|
( dossier_autorisation_type_detaille IS NULL AND arrondissement = $arrondissement AND quartier = $quartier AND section IS NULL ) OR |
853 |
|
|
( dossier_autorisation_type_detaille IS NULL AND arrondissement = $arrondissement AND quartier = $quartier AND section = '$section' ) OR |
854 |
|
|
( dossier_autorisation_type_detaille = ".$rowDATD['dossier_autorisation_type_detaille']." AND arrondissement IS NULL AND quartier IS NULL AND section IS NULL ) OR |
855 |
|
|
( dossier_autorisation_type_detaille = ".$rowDATD['dossier_autorisation_type_detaille']." AND arrondissement IS NULL AND quartier IS NULL AND section = '$section' ) OR |
856 |
|
|
( dossier_autorisation_type_detaille = ".$rowDATD['dossier_autorisation_type_detaille']." AND arrondissement IS NULL AND quartier = $quartier AND section IS NULL ) OR |
857 |
|
|
( dossier_autorisation_type_detaille = ".$rowDATD['dossier_autorisation_type_detaille']." AND arrondissement IS NULL AND quartier = $quartier AND section = '$section' ) OR |
858 |
|
|
( dossier_autorisation_type_detaille = ".$rowDATD['dossier_autorisation_type_detaille']." AND arrondissement = $arrondissement AND quartier IS NULL AND section IS NULL ) OR |
859 |
|
|
( dossier_autorisation_type_detaille = ".$rowDATD['dossier_autorisation_type_detaille']." AND arrondissement = $arrondissement AND quartier IS NULL AND section = '$section' ) OR |
860 |
|
|
( dossier_autorisation_type_detaille = ".$rowDATD['dossier_autorisation_type_detaille']." AND arrondissement = $arrondissement AND quartier = $quartier AND section IS NULL ) OR |
861 |
|
|
( dossier_autorisation_type_detaille = ".$rowDATD['dossier_autorisation_type_detaille']." AND arrondissement = $arrondissement AND quartier = $quartier AND section = '$section' ) |
862 |
|
|
ORDER BY section, quartier, arrondissement, dossier_autorisation_type_detaille |
863 |
|
|
LIMIT 1 |
864 |
|
|
"; |
865 |
vpihour |
770 |
|
866 |
vpihour |
939 |
$this->addToLog("getInstructeurDivision : db->query(\"$sql\")", VERBOSE_MODE); |
867 |
vpihour |
770 |
$res = $this->db->query($sql); |
868 |
vpihour |
719 |
if (database :: isError($res)) |
869 |
|
|
die($res->getMessage()."erreur ".$sql); |
870 |
vpihour |
939 |
|
871 |
vpihour |
719 |
if ( $res->numRows() > 0 ){ |
872 |
vpihour |
770 |
|
873 |
vpihour |
939 |
$row = $res->fetchRow(DB_FETCHMODE_ASSOC); |
874 |
|
|
|
875 |
|
|
$sql = "SELECT division FROM ".DB_PREFIXE."instructeur WHERE instructeur = ".$row['instructeur']; |
876 |
|
|
$res = $this->db->query($sql); |
877 |
|
|
if (database :: isError($res)) |
878 |
|
|
die($res->getMessage()."erreur ".$sql); |
879 |
|
|
|
880 |
|
|
if ( $res->numRows() > 0 ){ |
881 |
|
|
|
882 |
|
|
$rowT=& $res->fetchRow(DB_FETCHMODE_ASSOC); |
883 |
|
|
$row['division'] = $rowT['division']; |
884 |
|
|
} |
885 |
|
|
|
886 |
|
|
return $row; |
887 |
vpihour |
719 |
} |
888 |
fraynaud |
11 |
} |
889 |
vpihour |
939 |
|
890 |
vpihour |
584 |
return NULL; |
891 |
|
|
} |
892 |
vpihour |
575 |
|
893 |
|
|
/* ============================================================= |
894 |
|
|
* fonction trigger relative a la connexion SIG |
895 |
|
|
* $sig = 1 dans dyn/var.inc |
896 |
|
|
* =============================================================== |
897 |
|
|
*/ |
898 |
fraynaud |
11 |
|
899 |
vpihour |
575 |
function triggerajouter($id,&$db,$val,$DEBUG) { |
900 |
fmichon |
727 |
// |
901 |
|
|
$this->addToLog("triggerajouter() : start", EXTRA_VERBOSE_MODE); |
902 |
vpihour |
626 |
|
903 |
fmichon |
727 |
// Initialisation des variables nécessaires à l'affectation automatique |
904 |
vpihour |
770 |
$quartier = NULL; |
905 |
|
|
$arrondissement = NULL; |
906 |
|
|
$section = NULL; |
907 |
fmichon |
871 |
$instructeur = NULL; |
908 |
vpihour |
626 |
|
909 |
fmichon |
727 |
// Si la parcelle n'est pas vide alors on récupère la section, le |
910 |
|
|
// quartier et l'arrondissement |
911 |
|
|
if ($val['parcelle'] != '') { |
912 |
vpihour |
770 |
// Cette méthode récupère l'arrondissement et le quartier associé à une parcelle |
913 |
|
|
$quartierArrondissement = $this->getQuartierArrondissement($val['parcelle']); |
914 |
|
|
if ( $quartierArrondissement!= NULL ){ |
915 |
|
|
|
916 |
|
|
$quartier = $quartierArrondissement['quartier']; |
917 |
|
|
$arrondissement = $quartierArrondissement['arrondissement']; |
918 |
fmichon |
727 |
} |
919 |
vpihour |
770 |
// Si il n'y a pas d'arrondissement alors on vide le quartier |
920 |
|
|
if ( strcmp($arrondissement,'') == 0 ) { |
921 |
|
|
|
922 |
|
|
$arrondissement = NULL; |
923 |
|
|
$quartier = NULL; |
924 |
|
|
} |
925 |
fmichon |
727 |
// On récupère la section |
926 |
vpihour |
575 |
$section = $this->getSection($val['parcelle']); |
927 |
fmichon |
727 |
} |
928 |
|
|
|
929 |
vpihour |
939 |
// Si aucun instructeur n'est saisi et que la dossier_autorisation_type_detaille n'est pas vide |
930 |
fmichon |
727 |
// alors on récupère l'instructeur et la division depuis l'affectation |
931 |
vpihour |
939 |
if ( ( empty($this->valF['instructeur']) || $this->valF['instructeur'] == '' ) && $val['dossier_autorisation'] != '' ) { |
932 |
vpihour |
770 |
|
933 |
fmichon |
727 |
// |
934 |
vpihour |
939 |
$instructeurDivision = $this->getInstructeurDivision($quartier, $arrondissement, $section, $val['dossier_autorisation']); |
935 |
vpihour |
770 |
if ( $instructeurDivision != NULL ){ |
936 |
|
|
|
937 |
|
|
$instructeur = $instructeurDivision['instructeur']; |
938 |
|
|
$division = $instructeurDivision['division']; |
939 |
|
|
} |
940 |
vpihour |
621 |
|
941 |
fmichon |
727 |
if ( $instructeur != NULL ){ |
942 |
vpihour |
770 |
|
943 |
fmichon |
727 |
$this->valF['instructeur'] = $instructeur; |
944 |
|
|
$this->valF['division'] = $division; |
945 |
|
|
} else { |
946 |
|
|
if ($this->f->isAccredited("dossier_modifier_instructeur")) { |
947 |
|
|
$this->addToMessage("<br/> "._("Pensez a assigner un instructeur a ce dossier.")." <br/>"); |
948 |
|
|
} else { |
949 |
|
|
$this->addToMessage("<br/> "._("Aucun instructeur compatible avec ce dossier trouve, contactez votre administrateur afin d'en assigner un a ce dossier.")." <br/>"); |
950 |
vpihour |
719 |
} |
951 |
|
|
} |
952 |
fmichon |
727 |
} else { |
953 |
|
|
$this->addToMessage("<br/> "._("Aucun instructeur compatible avec ce dossier trouve, contactez votre administrateur afin d'en assigner un a ce dossier.")." <br/>"); |
954 |
vpihour |
584 |
} |
955 |
fmichon |
727 |
// |
956 |
|
|
$this->addToLog("triggerajouter() : end", EXTRA_VERBOSE_MODE); |
957 |
vpihour |
575 |
} |
958 |
|
|
|
959 |
fraynaud |
44 |
function triggermodifierapres($id,&$db,$val,$DEBUG) { |
960 |
fraynaud |
128 |
$this->sig_parametre($db); |
961 |
fraynaud |
44 |
// si la parcelle est changée |
962 |
fraynaud |
144 |
if(($this->sig==1 and $val['sig']!='Oui' and ($val['parcelle']!=$val['parcelle_archive']) |
963 |
|
|
or $val['parcelle_lot']!=$val['parcelle_lot_archive'])){ // parcelle_lot_archive |
964 |
fraynaud |
142 |
if($val['parcelle']!='' or $val['parcelle_lot']!='') |
965 |
fmichon |
344 |
$this->sig_interne($this->valF['dossier'],$db,$val,$DEBUG); |
966 |
fraynaud |
256 |
else{ |
967 |
|
|
if($this->maj ==1){ // en maj mettre a null la geometrie si parcelle changée inexistante |
968 |
|
|
$sql ="update ".DB_PREFIXE."dossier set geom = null, servitude = '', pos= '' where dossier ='".$id."'"; |
969 |
|
|
$res = $db -> query($sql); |
970 |
|
|
$this->addToLog("requete trigger modifier parcelle vide -> maj pos et servitude :".$sql, VERBOSE_MODE); |
971 |
|
|
if (database :: isError($res)) |
972 |
|
|
die($res->getMessage()."erreur ".$sql); |
973 |
|
|
} |
974 |
fraynaud |
142 |
$this->addToMessage("<br>"._("Parcelle ou parcelle_lot non renseignee dans dossier")." ".$id." <br>"); |
975 |
fraynaud |
256 |
} |
976 |
mlimic |
835 |
} |
977 |
fmichon |
1005 |
|
978 |
|
|
// verification si envoi vers ERP est active |
979 |
|
|
if ($this->f->getParameter('option_erp') != "") { |
980 |
|
|
if ($this->val[array_search('a_qualifier', $this->champs)] == 't' |
981 |
|
|
&& $this->valF['a_qualifier'] === false) { |
982 |
|
|
|
983 |
|
|
// envoi du message "ERP Qualifie" pour un dossier DAT qui a besoin |
984 |
|
|
// de la qualification URBA |
985 |
nhaye |
1140 |
if ($this->getDATDCode($this->valF['dossier']) == |
986 |
fmichon |
1005 |
$this->f->getParameter('erp_nature_dat')) { |
987 |
|
|
$msgenque = new MessageEnqueuer(); |
988 |
|
|
$msgenque->setDossierInstructionIdentifier($this->valF['dossier']); |
989 |
|
|
$msgenque->setCompetence($this->valF['autorite_competente']); |
990 |
|
|
$msgenque->setContraintePlu($this->valF['servitude']); |
991 |
|
|
$msgenque->setReferenceCadastrale( |
992 |
|
|
$this->getReferenceCadastrale($this->valF['dossier'])); |
993 |
|
|
$msgenque->enqueueMessage($msgenque::$ERP_QUALIFIE); |
994 |
|
|
} |
995 |
|
|
|
996 |
|
|
// envoi des messages a ERP en cas du dossier PC traite par URBA, et |
997 |
|
|
// qui etait classifie come ERP |
998 |
nhaye |
1140 |
if ($this->getDATDCode($this->valF['dossier']) == |
999 |
fmichon |
1005 |
$this->f->getParameter('erp_dossier_nature_pc') |
1000 |
|
|
&& $this->valF['erp'] == true) { |
1001 |
|
|
$msgenque = new MessageEnqueuer(); |
1002 |
|
|
$msgenque->setDossierInstructionIdentifier($this->valF['dossier']); |
1003 |
|
|
$msgenque->enqueueMessage($msgenque::$ERP_DEMANDE_COMPLETUDE_PC); |
1004 |
|
|
$msgenque->enqueueMessage($msgenque::$ERP_DEMANDE_QUALIFICATION_PC); |
1005 |
|
|
} |
1006 |
mlimic |
896 |
} |
1007 |
nhaye |
1377 |
} // fin de if($this->f->getParameter('option_erp')) |
1008 |
nhaye |
1140 |
|
1009 |
nhaye |
1376 |
// Ajout ou modification des demandeurs |
1010 |
|
|
$this->insertLinkDemandeDemandeur($db, $DEBUG); |
1011 |
|
|
} |
1012 |
nhaye |
1377 |
|
1013 |
nhaye |
1643 |
/** |
1014 |
|
|
* Ne servira surement pas mais dans le doute autant recalculer les données du DA |
1015 |
|
|
*/ |
1016 |
|
|
function triggersupprimerapres($id,&$db,$val,$DEBUG) { |
1017 |
|
|
// Mise à jour des données du dossier d'autorisation |
1018 |
|
|
require_once "../obj/dossier_autorisation.class.php"; |
1019 |
|
|
$da = new dossier_autorisation($this->valF["dossier_autorisation"], $this->db, DEBUG); |
1020 |
|
|
$da->majDossierAutorisation(); |
1021 |
|
|
} |
1022 |
nhaye |
1377 |
|
1023 |
nhaye |
1140 |
/** |
1024 |
|
|
* Retourne le type de dossier d'autorisation du dossier courant : |
1025 |
|
|
* - dossier_autorisation_type_detaille.code |
1026 |
|
|
**/ |
1027 |
|
|
function getDATDCode($idxDossier) { |
1028 |
|
|
$sql = "SELECT dossier_autorisation_type_detaille.code |
1029 |
|
|
FROM ".DB_PREFIXE."dossier_autorisation_type_detaille |
1030 |
|
|
INNER JOIN ".DB_PREFIXE."dossier_autorisation |
1031 |
|
|
ON dossier_autorisation_type_detaille.dossier_autorisation_type_detaille = |
1032 |
|
|
dossier_autorisation.dossier_autorisation_type_detaille |
1033 |
nhaye |
1196 |
INNER JOIN ".DB_PREFIXE."dossier ON dossier.dossier_autorisation = dossier_autorisation.dossier_autorisation |
1034 |
|
|
WHERE dossier.dossier = '".$idxDossier."'"; |
1035 |
|
|
$res = $this -> db -> getOne($sql); |
1036 |
vpihour |
1777 |
$this->f->addToLog("getDATDCode() : db->getOne(\"".$sql."\")", VERBOSE_MODE); |
1037 |
|
|
if ( database::isError($res)){ |
1038 |
|
|
die(); |
1039 |
|
|
} |
1040 |
nhaye |
1140 |
return $res; |
1041 |
|
|
} |
1042 |
mlimic |
896 |
|
1043 |
|
|
|
1044 |
|
|
/** |
1045 |
|
|
* Retourne la reference cadastrale de la demande attache a un dossier ERP |
1046 |
|
|
* specifique |
1047 |
|
|
* @param string $dossier L'identifiant du dossier |
1048 |
|
|
* @return string|null La reference cadastrale si elle est trouve, |
1049 |
|
|
* sinon NULL. En cas d'erreur de la BD, l'execution s'arrete. |
1050 |
|
|
*/ |
1051 |
|
|
function getReferenceCadastrale($dossier) { |
1052 |
fmichon |
923 |
$sql = "SELECT terrain_references_cadastrales FROM ".DB_PREFIXE."demande WHERE dossier_instruction = '" . $dossier . "'"; |
1053 |
mlimic |
896 |
$res = $this->db->limitquery($sql, 0, 1); |
1054 |
|
|
$this->addToLog("getReferenceCadastrale(): db->limitquery(\"". |
1055 |
|
|
str_replace(",",", ",$sql)."\", 0, 1);", VERBOSE_MODE); |
1056 |
|
|
// Si une erreur survient on die |
1057 |
|
|
if (database::isError($res, true)) { |
1058 |
|
|
// Appel de la methode de recuperation des erreurs |
1059 |
|
|
$this->erreur_db($res->getDebugInfo(), $res->getMessage(), 'demande'); |
1060 |
|
|
} |
1061 |
|
|
// retourne la nature du dossier |
1062 |
|
|
while ($row =& $res->fetchRow()) { |
1063 |
|
|
return $row[0]; |
1064 |
|
|
} |
1065 |
|
|
// la nature n'etait pas trouve, ce qui ne devrait pas se passer |
1066 |
|
|
return NULL; |
1067 |
|
|
} |
1068 |
|
|
|
1069 |
fraynaud |
11 |
|
1070 |
fraynaud |
128 |
function sig_parametre(&$db){ |
1071 |
|
|
if (file_exists ("../dyn/var.inc")) |
1072 |
|
|
include ("../dyn/var.inc"); |
1073 |
|
|
if(!isset($sig)) |
1074 |
|
|
$this->sig=0; |
1075 |
|
|
else |
1076 |
|
|
$this->sig=1; |
1077 |
|
|
if(!isset($auto_pos)) |
1078 |
|
|
$this->auto_pos=0; |
1079 |
|
|
else |
1080 |
|
|
$this->auto_pos=$auto_pos; |
1081 |
|
|
if(!isset($auto_servitude_surfacique)) |
1082 |
|
|
$this->auto_servitude_surfacique=0; |
1083 |
|
|
else |
1084 |
|
|
$this->auto_servitude_surfacique=$auto_servitude_surfacique; |
1085 |
|
|
if(!isset($auto_servitude_ligne)) |
1086 |
|
|
$this->auto_servitude_ligne=0; |
1087 |
|
|
else |
1088 |
|
|
$this->auto_servitude_ligne=$auto_servitude_ligne; |
1089 |
|
|
if(!isset($auto_servitude_point)) |
1090 |
|
|
$this->auto_servitude_point=0; |
1091 |
|
|
else |
1092 |
|
|
$this->auto_servitude_point=$auto_servitude_point; |
1093 |
fraynaud |
142 |
if(!isset($auto_parcelle)) |
1094 |
|
|
$this->auto_parcelle=0; |
1095 |
|
|
else |
1096 |
|
|
$this->auto_parcelle=$auto_parcelle; |
1097 |
|
|
if(!isset($auto_parcelle_lot)) |
1098 |
|
|
$this->auto_parcelle_lot=0; |
1099 |
|
|
else |
1100 |
|
|
$this->auto_parcelle_lot=$auto_parcelle_lot; |
1101 |
fraynaud |
128 |
$this->addToLog("trigger valeur sig :".$this->sig, VERBOSE_MODE); |
1102 |
|
|
$this->addToLog("trigger valeur auto_pos :". $this->auto_pos, VERBOSE_MODE); |
1103 |
|
|
$this->addToLog("trigger valeur auto_servitude_surfacique :".$this->auto_servitude_surfacique, VERBOSE_MODE); |
1104 |
|
|
$this->addToLog("trigger valeur auto_servitude_ligne :". $this->auto_servitude_ligne, VERBOSE_MODE); |
1105 |
|
|
$this->addToLog("trigger valeur auto_servitude_point :".$this->auto_servitude_point, VERBOSE_MODE); |
1106 |
fraynaud |
142 |
$this->addToLog("trigger valeur auto_parcelle :". $this->auto_parcelle, VERBOSE_MODE); |
1107 |
|
|
$this->addToLog("trigger valeur auto_parcelle_lot :".$this->auto_parcelle_lot, VERBOSE_MODE); |
1108 |
fraynaud |
128 |
} |
1109 |
|
|
|
1110 |
|
|
|
1111 |
|
|
function sig_interne($id,&$db,$val,$DEBUG){ |
1112 |
fraynaud |
12 |
// Strategy interne dans var.inc |
1113 |
|
|
// si la parcelle existe, il est cree un point au milieu de la parcelle |
1114 |
|
|
// de maniere automatique |
1115 |
fraynaud |
145 |
$geom=''; |
1116 |
fraynaud |
144 |
$parcelle=$val["parcelle"]; |
1117 |
fraynaud |
44 |
$projection = $db -> getOne("select srid from geometry_columns where f_table_name='dossier'"); |
1118 |
fraynaud |
144 |
if($this->auto_parcelle==1 and $val["parcelle"]!=''){ |
1119 |
fraynaud |
242 |
$sql= "select astext(centroid(geom)) from ".DB_PREFIXE."parcelle where parcelle ='".$val["parcelle"]."'"; |
1120 |
fraynaud |
144 |
$this->addToLog("recherche centroid parcelle :".$sql, VERBOSE_MODE); |
1121 |
|
|
$geom = $db -> getOne($sql); |
1122 |
|
|
if (database :: isError($geom))die($res->getMessage()."erreur ".$sql); |
1123 |
|
|
} |
1124 |
|
|
if($geom=='' and $this->auto_parcelle_lot==1 and $val["parcelle_lot"]!=''){ // lot |
1125 |
fraynaud |
242 |
$sql= "select astext(centroid(geom)) from ".DB_PREFIXE."parcelle_lot where parcelle_lot ='".$val["parcelle_lot"]."'"; |
1126 |
fraynaud |
142 |
$this->addToLog("recherche centroid parcelle lot :".$sql, VERBOSE_MODE); |
1127 |
|
|
$geom = $db -> getOne($sql); |
1128 |
|
|
if (database :: isError($geom))die($res->getMessage()."erreur ".$sql); |
1129 |
fraynaud |
144 |
$parcelle=$val["parcelle_lot"]." ".$val["parcelle_lot_lotissement"]; |
1130 |
fraynaud |
142 |
} |
1131 |
fraynaud |
134 |
if($geom!=''){ // la parcelle est exitante dans la table ou vue parcelle |
1132 |
fraynaud |
242 |
$sql ="update ".DB_PREFIXE."dossier set geom =geometryfromtext('".$geom."', ".$projection." ) where dossier ='".$id."'"; |
1133 |
fraynaud |
103 |
$this->addToLog("sig_interne maj geom :".$sql, VERBOSE_MODE); |
1134 |
fraynaud |
11 |
$res = $db -> query($sql); |
1135 |
fraynaud |
144 |
if (database :: isError($res)) die($res->getMessage()."erreur ".$sql); |
1136 |
fraynaud |
232 |
$this->addToMessage(""._("centroid de parcelle calcule")." ".$parcelle." "); |
1137 |
fraynaud |
128 |
if($this->auto_pos==1) // recherche du pos |
1138 |
|
|
$this->calcul_auto_pos($id,$db,$geom,$projection); |
1139 |
|
|
if($this->auto_servitude_surfacique==1) // recherche de servitude surfacique |
1140 |
|
|
$this->calcul_auto_servitude_surfacique($id,$db,$geom,$projection); |
1141 |
fraynaud |
134 |
if($this->auto_servitude_ligne==1) // recherche de servitude ligne |
1142 |
fraynaud |
128 |
$this->calcul_auto_servitude_ligne($id,$db,$geom,$projection); |
1143 |
fraynaud |
134 |
if($this->auto_servitude_point==1) // recherche de servitude point |
1144 |
|
|
$this->calcul_auto_servitude_point($id,$db,$geom,$projection); |
1145 |
fraynaud |
128 |
$temp=strtr($this->servitude,"'"," "); // enleve le ' |
1146 |
fraynaud |
242 |
$sql1 ="update ".DB_PREFIXE."dossier set servitude = '".$temp."' where dossier = '".$id."'"; |
1147 |
fraynaud |
128 |
$res1 = $db -> query($sql1); |
1148 |
fraynaud |
134 |
$this->addToLog("maj servitudes :".$sql1, VERBOSE_MODE); |
1149 |
fraynaud |
128 |
if (database:: isError($res1)) die($res1->getMessage()."erreur ".$sql1); |
1150 |
fraynaud |
256 |
}else{ // parcelle inexistante //*** |
1151 |
fraynaud |
44 |
if($this->maj ==1){ // en maj mettre a null la geometrie si parcelle changée inexistante |
1152 |
fraynaud |
256 |
$sql ="update ".DB_PREFIXE."dossier set geom = null, servitude = '', pos= '' where dossier ='".$id."'"; |
1153 |
fraynaud |
44 |
$res = $db -> query($sql); |
1154 |
fraynaud |
103 |
$this->addToLog("requete sig_interne maj parcelle inexistante :".$sql, VERBOSE_MODE); |
1155 |
fraynaud |
44 |
if (database :: isError($res)) |
1156 |
|
|
die($res->getMessage()."erreur ".$sql); |
1157 |
|
|
} |
1158 |
vpihour |
626 |
//$this->addToMessage("<br> parcelle ".$parcelle." "._("inexistante")." ".$id.""); |
1159 |
fraynaud |
11 |
} |
1160 |
|
|
} |
1161 |
|
|
|
1162 |
fraynaud |
128 |
function calcul_auto_pos($id,&$db,$geom,$projection){ |
1163 |
fraynaud |
134 |
// recherche du pos automatique |
1164 |
fraynaud |
242 |
$sql="select pos from ".DB_PREFIXE."pos WHERE ST_contains(geom, geometryfromtext('".$geom."', ".$projection."))"; |
1165 |
fraynaud |
44 |
$pos = $db -> getOne($sql); |
1166 |
fraynaud |
103 |
$this->addToLog("recherche auto_pos :".$sql, VERBOSE_MODE); |
1167 |
fraynaud |
44 |
if($pos!=''){ |
1168 |
fraynaud |
242 |
$sql1 ="update ".DB_PREFIXE."dossier set pos = '".$pos."' where dossier = '".$id."'"; |
1169 |
fraynaud |
44 |
$res1 = $db -> query($sql1); |
1170 |
fraynaud |
103 |
$this->addToLog("maj auto_pos :".$sql1, VERBOSE_MODE); |
1171 |
fraynaud |
126 |
if (database:: isError($res1)) die($res1->getMessage()."erreur ".$sql1); |
1172 |
fraynaud |
128 |
$this->addToMessage("<br>"._("POS/PLU")." : ".$pos.""); |
1173 |
fraynaud |
44 |
}else{ |
1174 |
atreal |
316 |
$this->addToMessage("<br>"._("POS/PLU non trouve")." ".$id.""); |
1175 |
fraynaud |
44 |
} |
1176 |
|
|
} |
1177 |
|
|
|
1178 |
fraynaud |
128 |
function calcul_auto_servitude_surfacique($id,&$db,$geom,$projection){ |
1179 |
fraynaud |
134 |
// recherche servitude surfacique |
1180 |
fraynaud |
242 |
$sql="select * from ".DB_PREFIXE."servitude_surfacique WHERE ST_contains(geom, geometryfromtext('".$geom."', ".$projection."))"; |
1181 |
fraynaud |
126 |
$res=$db->query($sql); |
1182 |
|
|
if (database:: isError($res)) die($res1->getMessage()."erreur ".$sql); |
1183 |
|
|
$this->addToLog("requete :".$sql." executee ", VERBOSE_MODE); |
1184 |
|
|
while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC)){ |
1185 |
|
|
$this->addToMessage("<br>"._("servitude")." : ".$row['libelle']." - ".$row['observation']); |
1186 |
fraynaud |
128 |
$this->servitude.=" [".$row['libelle']."] ".$row['observation']." - "; |
1187 |
|
|
} |
1188 |
fraynaud |
126 |
} |
1189 |
fraynaud |
44 |
|
1190 |
fraynaud |
128 |
function calcul_auto_servitude_ligne($id,&$db,$geom,$projection){ |
1191 |
fraynaud |
134 |
// recherche servitude ligne |
1192 |
fraynaud |
242 |
$sql="select * from ".DB_PREFIXE."servitude_ligne WHERE ST_contains(ST_buffer(geom, perimetre), geometryfromtext('".$geom."', ".$projection."))"; |
1193 |
fraynaud |
128 |
$res=$db->query($sql); |
1194 |
|
|
if (database:: isError($res)) die($res1->getMessage()."erreur ".$sql); |
1195 |
|
|
$this->addToLog("requete :".$sql." executee ", VERBOSE_MODE); |
1196 |
|
|
while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC)){ |
1197 |
|
|
$this->addToMessage("<br>"._("servitude")." : ".$row['libelle']." - ".$row['observation']); |
1198 |
|
|
$this->servitude.=" [".$row['libelle']."] ".$row['observation']." - "; |
1199 |
|
|
} |
1200 |
|
|
} |
1201 |
fraynaud |
126 |
|
1202 |
fraynaud |
134 |
function calcul_auto_servitude_point($id,&$db,$geom,$projection){ |
1203 |
|
|
// recherche servitude point |
1204 |
fraynaud |
242 |
$sql="select libelle,observation, perimetre, distance(geom, geometryfromtext('".$geom."', ".$projection.")) as distance from ". |
1205 |
|
|
DB_PREFIXE."servitude_point WHERE distance(geom, geometryfromtext('".$geom."', ".$projection."))<perimetre"; |
1206 |
fraynaud |
134 |
$res=$db->query($sql); |
1207 |
|
|
if (database:: isError($res)) die($res1->getMessage()."erreur ".$sql); |
1208 |
|
|
$this->addToLog("requete :".$sql." executee ", VERBOSE_MODE); |
1209 |
|
|
while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC)){ |
1210 |
fraynaud |
152 |
$this->addToMessage("<br>"._("servitude")." : ".$row['libelle']." - ".$row['observation']." a ".round($row['distance'],2)." m "); |
1211 |
fraynaud |
137 |
$this->servitude.=" [".$row['libelle']."] ".$row['observation']." a ".round($row['distance'],2)." m - "; |
1212 |
fraynaud |
134 |
} |
1213 |
|
|
} |
1214 |
nhaye |
1376 |
|
1215 |
|
|
/** |
1216 |
|
|
* Gestion des liens entre la demande et les demandeurs recemment ajoutés |
1217 |
|
|
**/ |
1218 |
|
|
function insertLinkDemandeDemandeur($db, $DEBUG) { |
1219 |
|
|
// |
1220 |
|
|
require_once "../obj/lien_dossier_demandeur.class.php"; |
1221 |
|
|
// Sippression des anciens demandeurs |
1222 |
|
|
$this->deleteLinkDossierDemandeur($db, $DEBUG); |
1223 |
|
|
|
1224 |
|
|
// Ajout du pétitionnaire principal |
1225 |
|
|
if(!empty($this->postedIdDemandeur['petitionnaire_principal'])) { |
1226 |
|
|
$this->addLinkDossierDemandeur($this->postedIdDemandeur['petitionnaire_principal'], true, $db, $DEBUG); |
1227 |
|
|
} |
1228 |
|
|
|
1229 |
|
|
// Ajout du délégataire |
1230 |
|
|
if(!empty($this->postedIdDemandeur['delegataire'])) { |
1231 |
nhaye |
1399 |
$this->addLinkDossierDemandeur($this->postedIdDemandeur['delegataire'], false, $db, $DEBUG); |
1232 |
nhaye |
1376 |
} |
1233 |
|
|
|
1234 |
|
|
// Ajout des pétitionnaires |
1235 |
|
|
if(isset($this->postedIdDemandeur['petitionnaire'])) { |
1236 |
|
|
// Ajout des nouveaux liens |
1237 |
|
|
foreach ($this->postedIdDemandeur['petitionnaire'] as $petitionnaire) { |
1238 |
|
|
$this->addLinkDossierDemandeur($petitionnaire, false, $db, $DEBUG); |
1239 |
|
|
} |
1240 |
|
|
} |
1241 |
|
|
} |
1242 |
|
|
|
1243 |
|
|
|
1244 |
|
|
/** |
1245 |
|
|
* Fonction permettant d'ajouter un lien |
1246 |
|
|
* entre la table demande et demandeur |
1247 |
|
|
**/ |
1248 |
|
|
function addLinkDossierDemandeur($id, $principal, $db, $DEBUG) { |
1249 |
|
|
$lienAjout = new lien_dossier_demandeur( |
1250 |
|
|
"]", |
1251 |
|
|
$db, |
1252 |
|
|
$DEBUG); |
1253 |
|
|
$lien = array('lien_dossier_demandeur' => "", |
1254 |
|
|
'petitionnaire_principal' => (($principal)?"t":"f"), |
1255 |
|
|
'dossier' => $this->valF['dossier'], |
1256 |
|
|
'demandeur' => $id); |
1257 |
|
|
$lienAjout->ajouter($lien, $db, $DEBUG); |
1258 |
|
|
$lienAjout->__destruct(); |
1259 |
|
|
} |
1260 |
|
|
|
1261 |
|
|
/** |
1262 |
|
|
* Fonction permettant de supprimer un lien |
1263 |
|
|
* entre la table demande et demandeur |
1264 |
|
|
**/ |
1265 |
|
|
function deleteLinkDossierDemandeur($db, $DEBUG) { |
1266 |
|
|
// Suppression |
1267 |
|
|
$sql = "DELETE FROM ".DB_PREFIXE."lien_dossier_demandeur ". |
1268 |
|
|
"WHERE dossier='".$this->valF['dossier']."'"; |
1269 |
|
|
// Execution de la requete de suppression de l'objet |
1270 |
|
|
$res = $db->query($sql); |
1271 |
|
|
// Logger |
1272 |
|
|
$this->f->addToLog("supprimer(): db->query(\"".$sql."\");", VERBOSE_MODE); |
1273 |
vpihour |
1777 |
if ( database::isError($res)){ |
1274 |
|
|
die(); |
1275 |
|
|
} |
1276 |
nhaye |
1376 |
|
1277 |
|
|
} |
1278 |
|
|
|
1279 |
|
|
/** |
1280 |
|
|
* Methode de recupération des valeurs postées |
1281 |
|
|
**/ |
1282 |
|
|
function getPostedValues() { |
1283 |
|
|
// Récupération des demandeurs dans POST |
1284 |
|
|
if (isset($_POST['petitionnaire_principal']) OR |
1285 |
|
|
isset($_POST['delegataire']) OR |
1286 |
|
|
isset($_POST['petitionnaire'])) { |
1287 |
|
|
if( isset($_POST['petitionnaire_principal']) AND |
1288 |
|
|
!empty($_POST['petitionnaire_principal'])) { |
1289 |
|
|
$this->postedIdDemandeur['petitionnaire_principal'] = $_POST['petitionnaire_principal']; |
1290 |
|
|
} |
1291 |
|
|
if( isset($_POST['delegataire']) AND |
1292 |
|
|
!empty($_POST['delegataire'])) { |
1293 |
|
|
$this->postedIdDemandeur['delegataire'] = $_POST['delegataire']; |
1294 |
|
|
} |
1295 |
|
|
if( isset($_POST['petitionnaire']) AND |
1296 |
|
|
!empty($_POST['petitionnaire'])) { |
1297 |
|
|
$this->postedIdDemandeur['petitionnaire'] = $_POST['petitionnaire']; |
1298 |
|
|
} |
1299 |
|
|
} |
1300 |
|
|
} |
1301 |
|
|
|
1302 |
|
|
/** |
1303 |
fmichon |
1713 |
* Méthode permettant de récupérer les id des demandeurs liés à la table |
1304 |
|
|
* liée passée en paramètre |
1305 |
|
|
* |
1306 |
|
|
* @param string $from Table liée : "demande", "dossier", dossier_autorisation" |
1307 |
|
|
* @param string $id Identifiant (clé primaire de la table liée en question) |
1308 |
|
|
*/ |
1309 |
nhaye |
1376 |
function listeDemandeur($from, $id) { |
1310 |
|
|
// Récupération des demandeurs de la base |
1311 |
|
|
$sql = "SELECT demandeur.demandeur, |
1312 |
|
|
demandeur.type_demandeur, |
1313 |
|
|
lien_".$from."_demandeur.petitionnaire_principal |
1314 |
|
|
FROM ".DB_PREFIXE."lien_".$from."_demandeur |
1315 |
|
|
INNER JOIN ".DB_PREFIXE."demandeur |
1316 |
|
|
ON demandeur.demandeur=lien_".$from."_demandeur.demandeur |
1317 |
|
|
WHERE ".$from." = '".$id."'"; |
1318 |
|
|
$res = $this->f->db->query($sql); |
1319 |
fmichon |
1713 |
$this->f->addToLog("listeDemandeur(): db->query(\"".$sql."\")", VERBOSE_MODE); |
1320 |
vpihour |
1777 |
if ( database::isError($res)){ |
1321 |
|
|
die(); |
1322 |
|
|
} |
1323 |
fmichon |
1713 |
// Stockage du résultat dans un tableau |
1324 |
nhaye |
1376 |
while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC)){ |
1325 |
|
|
if ($row['petitionnaire_principal'] == 't' AND |
1326 |
|
|
$row['type_demandeur']=="petitionnaire") { |
1327 |
|
|
$this->valIdDemandeur['petitionnaire_principal']=$row['demandeur']; |
1328 |
|
|
} elseif ($row['petitionnaire_principal'] == 'f' AND |
1329 |
|
|
$row['type_demandeur']=="petitionnaire"){ |
1330 |
|
|
$this->valIdDemandeur['petitionnaire'][]=$row['demandeur']; |
1331 |
|
|
} elseif ($row['type_demandeur']=="delegataire"){ |
1332 |
|
|
$this->valIdDemandeur['delegataire']=$row['demandeur']; |
1333 |
|
|
} |
1334 |
|
|
} |
1335 |
|
|
} |
1336 |
|
|
|
1337 |
|
|
/** |
1338 |
|
|
* Ajout de la liste des demandeurs |
1339 |
|
|
*/ |
1340 |
|
|
function formSpecificContent($maj) { |
1341 |
|
|
|
1342 |
|
|
$this->listeDemandeur("dossier", $this->getVal('dossier')); |
1343 |
|
|
|
1344 |
|
|
if($maj < 2 AND !$this->correct) { |
1345 |
|
|
$linkable = true; |
1346 |
|
|
} else { |
1347 |
|
|
$linkable = false; |
1348 |
|
|
} |
1349 |
|
|
|
1350 |
|
|
// Conteneur de la listes des demandeurs |
1351 |
|
|
echo "<div id=\"liste_demandeur\" class=\"demande_hidden_bloc col_12\">"; |
1352 |
|
|
echo "<fieldset class=\"cadre ui-corner-all ui-widget-content\">"; |
1353 |
|
|
echo " <legend class=\"ui-corner-all ui-widget-content ui-state-active\">" |
1354 |
|
|
._("Petitionnaire")."</legend>"; |
1355 |
|
|
// Si des demandeurs sont liés à la demande |
1356 |
|
|
require_once "../obj/petitionnaire.class.php"; |
1357 |
|
|
require_once "../obj/delegataire.class.php"; |
1358 |
|
|
// Affichage du bloc pétitionnaire principal / délégataire |
1359 |
|
|
// L'ID DU DIV SUIVANT EST NECESSAIRE AU BON FONCTIONNEMENT DU JS |
1360 |
|
|
echo "<div id=\"petitionnaire_principal_delegataire col_12\">"; |
1361 |
|
|
// Affichage de la synthèse |
1362 |
|
|
if (isset ($this->valIdDemandeur["petitionnaire_principal"]) AND |
1363 |
|
|
!empty($this->valIdDemandeur["petitionnaire_principal"])) { |
1364 |
|
|
$demandeur = new petitionnaire( |
1365 |
|
|
$this->valIdDemandeur["petitionnaire_principal"], |
1366 |
|
|
$this->f->db,false); |
1367 |
|
|
$demandeur -> afficherSynthese("petitionnaire_principal", $linkable); |
1368 |
|
|
$demandeur -> __destruct(); |
1369 |
|
|
} elseif ( isset ($this->postedIdDemandeur["petitionnaire_principal"]) AND |
1370 |
|
|
!empty($this->postedIdDemandeur["petitionnaire_principal"]) ) { |
1371 |
|
|
$demandeur = new petitionnaire( |
1372 |
|
|
$this->postedIdDemandeur["petitionnaire_principal"], |
1373 |
|
|
$this->f->db,false); |
1374 |
|
|
$demandeur -> afficherSynthese("petitionnaire_principal", $linkable); |
1375 |
|
|
$demandeur -> __destruct(); |
1376 |
|
|
} |
1377 |
|
|
// Si en édition de formulaire |
1378 |
nhaye |
1396 |
if($maj < 2 AND $linkable) { |
1379 |
nhaye |
1376 |
// Bouton d'ajout du pétitionnaire principal |
1380 |
|
|
// L'ID DE L'INPUT SUIVANT EST NECESSAIRE AU BON FONCTIONNEMENT DU JS |
1381 |
|
|
echo "<span id=\"add_petitionnaire_principal\" |
1382 |
|
|
class=\"om-form-button add-16\">". |
1383 |
|
|
_("Saisir le petitionnaire principal"). |
1384 |
|
|
"</span>"; |
1385 |
|
|
} |
1386 |
|
|
// Bouton d'ajout du delegataire |
1387 |
|
|
// L'ID DU DIV ET DE L'INPUT SUIVANT EST NECESSAIRE AU BON FONCTIONNEMENT DU JS |
1388 |
|
|
echo "<div id=\"delegataire\">"; |
1389 |
|
|
// Affichage de la synthèse |
1390 |
|
|
if (isset ($this->valIdDemandeur["delegataire"]) AND |
1391 |
|
|
!empty($this->valIdDemandeur["delegataire"])) { |
1392 |
|
|
$demandeur = new delegataire($this->valIdDemandeur["delegataire"], |
1393 |
|
|
$this->f->db,false); |
1394 |
|
|
$demandeur -> afficherSynthese("delegataire", $linkable); |
1395 |
|
|
$demandeur -> __destruct(); |
1396 |
|
|
} elseif ( isset ($this->postedIdDemandeur["delegataire"]) AND |
1397 |
|
|
!empty($this->postedIdDemandeur["delegataire"]) ) { |
1398 |
|
|
|
1399 |
|
|
$demandeur = new delegataire($this->postedIdDemandeur["delegataire"], |
1400 |
|
|
$this->f->db,false); |
1401 |
|
|
$demandeur -> afficherSynthese("delegataire", $linkable); |
1402 |
|
|
$demandeur -> __destruct(); |
1403 |
|
|
} |
1404 |
nhaye |
1396 |
if($maj < 2 AND $linkable) { |
1405 |
nhaye |
1376 |
echo "<span id=\"add_delegataire\" |
1406 |
|
|
class=\"om-form-button add-16\">". |
1407 |
|
|
_("Saisir le delegataire"). |
1408 |
|
|
"</span>"; |
1409 |
|
|
} |
1410 |
|
|
echo "</div>"; |
1411 |
|
|
echo "<div class=\"both\"></div>"; |
1412 |
|
|
echo "</div>"; |
1413 |
|
|
// Bloc des pétitionnaires secondaires |
1414 |
|
|
// L'ID DU DIV SUIVANT EST NECESSAIRE AU BON FONCTIONNEMENT DU JS |
1415 |
|
|
echo "<div id=\"listePetitionnaires col_12\">"; |
1416 |
|
|
|
1417 |
|
|
// Affichage de la synthèse |
1418 |
|
|
if (isset ($this->valIdDemandeur["petitionnaire"]) AND |
1419 |
|
|
!empty($this->valIdDemandeur["petitionnaire"])) { |
1420 |
|
|
|
1421 |
|
|
foreach ($this->valIdDemandeur["petitionnaire"] as $petitionnaire) { |
1422 |
|
|
$demandeur = new petitionnaire($petitionnaire, |
1423 |
|
|
$this->f->db,false); |
1424 |
|
|
$demandeur -> afficherSynthese("petitionnaire", $linkable); |
1425 |
|
|
$demandeur -> __destruct(); |
1426 |
|
|
} |
1427 |
|
|
|
1428 |
|
|
} elseif ( isset ($this->postedIdDemandeur["petitionnaire"]) AND |
1429 |
|
|
!empty($this->postedIdDemandeur["petitionnaire"]) ) { |
1430 |
|
|
foreach ($this->postedIdDemandeur["petitionnaire"] as $petitionnaire) { |
1431 |
|
|
$demandeur = new petitionnaire($petitionnaire, |
1432 |
|
|
$this->f->db,false); |
1433 |
|
|
$demandeur -> afficherSynthese("petitionnaire", $linkable); |
1434 |
|
|
$demandeur -> __destruct(); |
1435 |
|
|
} |
1436 |
|
|
} |
1437 |
nhaye |
1396 |
if ($maj < 2 AND $linkable) { |
1438 |
nhaye |
1376 |
// L'ID DE L'INPUT SUIVANT EST NECESSAIRE AU BON FONCTIONNEMENT DU JS |
1439 |
|
|
echo "<span id=\"add_petitionnaire\" |
1440 |
|
|
class=\"om-form-button add-16\">". |
1441 |
|
|
_("Ajouter un petitionnaire") |
1442 |
|
|
."</span>"; |
1443 |
|
|
} |
1444 |
|
|
echo "</div>"; |
1445 |
|
|
echo "</fieldset>"; |
1446 |
|
|
echo "</div>"; |
1447 |
|
|
} |
1448 |
vpihour |
1978 |
|
1449 |
|
|
/** |
1450 |
|
|
* Retourne le statut du dossier |
1451 |
|
|
* @return string Le statut du dossier d'instruction |
1452 |
|
|
*/ |
1453 |
|
|
function getStatut(){ |
1454 |
|
|
|
1455 |
|
|
$statut = ''; |
1456 |
|
|
|
1457 |
|
|
$etat = $this->getVal("etat"); |
1458 |
|
|
//Si l'état du dossier d'instruction n'est pas vide |
1459 |
|
|
if ( $etat != '' ){ |
1460 |
|
|
|
1461 |
|
|
$sql = "SELECT statut |
1462 |
|
|
FROM ".DB_PREFIXE."etat |
1463 |
|
|
WHERE etat ='".$etat."'"; |
1464 |
|
|
$statut = $this->db->getOne($sql); |
1465 |
|
|
$this->f->addToLog("getStatut() : db->getOne(\"".$sql."\")", VERBOSE_MODE); |
1466 |
|
|
if ( database::isError($statut)){ |
1467 |
|
|
die(); |
1468 |
|
|
} |
1469 |
|
|
} |
1470 |
|
|
return $statut; |
1471 |
|
|
} |
1472 |
|
|
|
1473 |
|
|
/** |
1474 |
|
|
* Retourne l'identifiant du rapport d'instruction lié du dossier |
1475 |
|
|
* @return string L'identifiant du rapport d'instruction lié du dossier |
1476 |
|
|
*/ |
1477 |
|
|
function getRapportInstruction(){ |
1478 |
|
|
|
1479 |
|
|
$rapport_instruction = ''; |
1480 |
|
|
|
1481 |
|
|
$sql = "SELECT rapport_instruction |
1482 |
|
|
FROM ".DB_PREFIXE."rapport_instruction |
1483 |
|
|
WHERE dossier_instruction ='".$this->getVal($this->clePrimaire)."'"; |
1484 |
|
|
$rapport_instruction = $this->db->getOne($sql); |
1485 |
|
|
$this->f->addToLog("getStatut() : db->getOne(\"".$sql."\")", VERBOSE_MODE); |
1486 |
|
|
if ( database::isError($rapport_instruction)){ |
1487 |
|
|
die(); |
1488 |
|
|
} |
1489 |
|
|
|
1490 |
|
|
return $rapport_instruction; |
1491 |
|
|
} |
1492 |
|
|
|
1493 |
|
|
/** |
1494 |
|
|
* Retourne l'identifiant des données techniques liées du dossier |
1495 |
|
|
* @return string L'identifiant des données techniques liées du dossier |
1496 |
|
|
*/ |
1497 |
|
|
function getDonneesTechniques(){ |
1498 |
|
|
|
1499 |
|
|
$donnees_techniques = ''; |
1500 |
|
|
|
1501 |
|
|
$sql = "SELECT donnees_techniques |
1502 |
|
|
FROM ".DB_PREFIXE."donnees_techniques |
1503 |
|
|
WHERE dossier_instruction ='".$this->getVal($this->clePrimaire)."'"; |
1504 |
|
|
$donnees_techniques = $this->db->getOne($sql); |
1505 |
|
|
$this->f->addToLog("getStatut() : db->getOne(\"".$sql."\")", VERBOSE_MODE); |
1506 |
|
|
if ( database::isError($donnees_techniques)){ |
1507 |
|
|
die(); |
1508 |
|
|
} |
1509 |
|
|
|
1510 |
|
|
return $donnees_techniques; |
1511 |
|
|
} |
1512 |
|
|
|
1513 |
fraynaud |
3 |
}// fin classe |
1514 |
|
|
?> |