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