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