1 |
fraynaud |
3 |
<?php |
2 |
fmichon |
1540 |
/** |
3 |
|
|
* |
4 |
|
|
* |
5 |
|
|
* specific : |
6 |
|
|
* - cle secondaire |
7 |
|
|
* destruction autorisée que pour le dernier evenement |
8 |
|
|
* [delete the last event ] |
9 |
|
|
* - variable globale [global variables] |
10 |
|
|
* var $archive_date_depot; |
11 |
|
|
* var $retourformulaire; |
12 |
|
|
* var $idxformulaire; |
13 |
|
|
* - modification des données dans dossier trigger avant |
14 |
|
|
* [modify dossier data with trigger function] |
15 |
|
|
* - function moisdate : pour ajouter des mois a une date |
16 |
|
|
* [add months (delay) and calculation final date] |
17 |
|
|
* - voir script_lang.js : bible ... |
18 |
|
|
* |
19 |
|
|
* @package openfoncier |
20 |
|
|
* @version SVN : $Id$ |
21 |
|
|
*/ |
22 |
fraynaud |
3 |
|
23 |
fmichon |
1540 |
// |
24 |
|
|
require_once "../gen/obj/instruction.class.php"; |
25 |
|
|
|
26 |
|
|
// |
27 |
|
|
require_once "../services/outgoing/messageenqueuer.php"; |
28 |
|
|
|
29 |
|
|
// |
30 |
fraynaud |
3 |
class instruction extends instruction_gen { |
31 |
|
|
|
32 |
fraynaud |
20 |
var $archive_date_depot; // specific |
33 |
|
|
var $retourformulaire; // specific |
34 |
|
|
var $idxformulaire; // specific |
35 |
nhaye |
1724 |
var $valEvenement; |
36 |
nhaye |
1945 |
// Tableau contenant une partie des métadonnées arrêtés |
37 |
|
|
var $metadonneesArrete; |
38 |
fraynaud |
3 |
|
39 |
nhaye |
1928 |
var $metadata = array( |
40 |
nhaye |
1938 |
"om_fichier_instruction" => array( |
41 |
nhaye |
1928 |
"dossier" => "getDossier", |
42 |
softime |
2016 |
"dossier_version" => "getDossierVersion", |
43 |
softime |
2025 |
"numDemandeAutor" => "getNumDemandeAutor", |
44 |
|
|
"anneemoisDemandeAutor" => "getAnneemoisDemandeAutor", |
45 |
|
|
"typeInstruction" => "getTypeInstruction", |
46 |
|
|
"statutAutorisation" => "getStatutAutorisation", |
47 |
|
|
"typeAutorisation" => "getTypeAutorisation", |
48 |
|
|
"dateEvenementDocument" => "getDateEvenementDocument", |
49 |
softime |
2016 |
"groupeInstruction" => 'getGroupeInstruction', |
50 |
softime |
2025 |
"title" => 'getTitle', |
51 |
nhaye |
1928 |
), |
52 |
|
|
); |
53 |
|
|
|
54 |
nhaye |
1945 |
|
55 |
nhaye |
2561 |
function __construct($id, &$db, $debug) { |
56 |
fmichon |
1540 |
$this->constructeur($id, $db, $debug); |
57 |
|
|
} |
58 |
fraynaud |
20 |
|
59 |
fmichon |
944 |
// {{{ Gestion de la confidentialité des données spécifiques |
60 |
|
|
|
61 |
|
|
/** |
62 |
|
|
* Surcharge pour gérer les actions disponibles dans le portlet |
63 |
|
|
*/ |
64 |
|
|
function checkAccessibility() { |
65 |
|
|
// |
66 |
|
|
parent::checkAccessibility(); |
67 |
fmichon |
1540 |
// Si l'utilisateur est un intructeur qui ne correspond pas à la |
68 |
fmichon |
944 |
// division du dossier |
69 |
|
|
if ($this->f->isUserInstructeur() |
70 |
|
|
&& isset($this->f->om_utilisateur["division"]) |
71 |
|
|
&& $this->f->om_utilisateur["division"] != $this->getDivisionFromDossier()) { |
72 |
|
|
// |
73 |
vpihour |
2104 |
//On cache les liens d'action |
74 |
|
|
$this->parameters["actions"]["modifier"] = NULL; |
75 |
|
|
$this->parameters["actions"]["supprimer"] = NULL; |
76 |
|
|
$this->actions_sup["finalisation"] = NULL; |
77 |
fmichon |
944 |
} |
78 |
|
|
// Si une action 'lu' est présente et que le champ lu est à true |
79 |
|
|
// on supprime l'action |
80 |
|
|
if (isset($this->actions_sup["lu"]) |
81 |
|
|
&& isset($this->val[array_search("lu", $this->champs)]) |
82 |
|
|
&& $this->val[array_search("lu", $this->champs)]== "t") { |
83 |
|
|
unset($this->actions_sup["lu"]); |
84 |
|
|
} |
85 |
vpihour |
1899 |
|
86 |
|
|
//Si le document est déjà finalisé, on affiche uniquement le lien de |
87 |
|
|
//dé-finalisation |
88 |
vpihour |
1931 |
$om_final_instruction = $this->getVal("om_final_instruction"); |
89 |
vpihour |
1899 |
if ( isset($this->actions_sup["finalisation"]) && |
90 |
vpihour |
1931 |
$om_final_instruction== "t" ){ |
91 |
vpihour |
1921 |
|
92 |
vpihour |
1986 |
//On cache les liens d'action |
93 |
|
|
$this->parameters["actions"]["modifier"] = NULL; |
94 |
|
|
$this->parameters["actions"]["supprimer"] = NULL; |
95 |
vpihour |
1921 |
//On cache le lien de finalisation et on affiche le bon lien pour l'édition |
96 |
vpihour |
1986 |
$this->actions_sup["finalisation"] = NULL; |
97 |
vpihour |
1921 |
$this->actions_sup["pdfetat"]["lien"] = "../spg/file.php?id="; |
98 |
|
|
$this->actions_sup["pdfetat"]["id"] = |
99 |
vpihour |
1927 |
"&obj=instruction&champ=om_fichier_instruction"; |
100 |
vpihour |
1899 |
} |
101 |
|
|
//Si le document n'est pas finalisé, on affiche uniquement le lien de |
102 |
|
|
//finalisation |
103 |
|
|
if ( isset($this->actions_sup["definalisation"]) && |
104 |
vpihour |
1931 |
$om_final_instruction!= "t" ){ |
105 |
vpihour |
1921 |
|
106 |
|
|
//On cache le lien de finalisation et on affiche le bon lien pour l'édition |
107 |
vpihour |
1986 |
$this->actions_sup["definalisation"] = NULL; |
108 |
vpihour |
1921 |
$this->actions_sup["pdfetat"]["lien"] = "../app/pdf_instruction.php?idx="; |
109 |
|
|
$this->actions_sup["pdfetat"]["id"] = ""; |
110 |
vpihour |
1899 |
} |
111 |
vpihour |
1978 |
|
112 |
|
|
$idxformulaire = $this->getParameter("idxformulaire"); |
113 |
|
|
$retourformulaire = $this->getParameter("retourformulaire"); |
114 |
|
|
//Si le dossier d'instruction auquel est rattachée l'instruction est cloturé, |
115 |
|
|
//on affiche pas les liens du portlet |
116 |
|
|
if ( $idxformulaire != '' && |
117 |
|
|
( |
118 |
|
|
$retourformulaire == 'dossier' || |
119 |
|
|
$retourformulaire == 'dossier_instruction' || |
120 |
|
|
$retourformulaire == 'dossier_instruction_mes_encours' || |
121 |
|
|
$retourformulaire == 'dossier_instruction_tous_encours' || |
122 |
|
|
$retourformulaire == 'dossier_instruction_mes_clotures' || |
123 |
|
|
$retourformulaire == 'dossier_instruction_tous_clotures' |
124 |
|
|
)){ |
125 |
|
|
|
126 |
|
|
//On récuppère le statut du dossier d'instruction |
127 |
softime |
2025 |
$statut = $this->getStatutAutorisationDossier($idxformulaire); |
128 |
softime |
2613 |
// Si l'utilisateur est un instructeur, que le statut est clôturé |
129 |
|
|
// et que l'événement n'est pas identifié comme non verrouillable |
130 |
|
|
if ( $this->f->isUserInstructeur() && $statut == "cloture" |
131 |
|
|
&& $this->checkEvenementNonVerrouillable($this->getVal("instruction")) === false){ |
132 |
vpihour |
1978 |
|
133 |
softime |
2613 |
//On cache les liens du portlet |
134 |
vpihour |
1978 |
$this->parameters["actions"]["modifier"] = NULL; |
135 |
|
|
$this->actions_sup["finalisation"] = NULL; |
136 |
|
|
$this->actions_sup["definalisation"] = NULL; |
137 |
|
|
} |
138 |
|
|
} |
139 |
fmichon |
944 |
} |
140 |
|
|
|
141 |
|
|
/** |
142 |
|
|
* Cette methode est à surcharger elle permet de tester dans chaque classe |
143 |
|
|
* des droits des droits spécifiques en fonction des données |
144 |
|
|
*/ |
145 |
|
|
function canAccess() { |
146 |
|
|
// Si l'utilisateur est un intructeur qui ne correspond pas à la |
147 |
|
|
// division du dossier |
148 |
|
|
if ($this->f->isUserInstructeur() |
149 |
|
|
&& $this->f->om_utilisateur["division"] != $this->getDivisionFromDossier() |
150 |
|
|
&& $this->getParameter("maj") != 3) { |
151 |
|
|
// |
152 |
fmichon |
1908 |
$this->addToLog("canAccess(): utilisateur instructeur sur un dossier d'une autre division", EXTRA_VERBOSE_MODE); |
153 |
fmichon |
944 |
return false; |
154 |
|
|
} |
155 |
vpihour |
1978 |
|
156 |
|
|
$retourformulaire = $this->getParameter("retourformulaire"); |
157 |
softime |
2613 |
// Si l'utilisateur est un instructeur, que le dossier est cloturé, |
158 |
|
|
// que l'utilisateur est dans un sous formulaire précis, que le |
159 |
|
|
// formulaire n'est pas en mode consulter ou ajouter et que l'événement |
160 |
|
|
// n'est pas identifié comme non verrouillable |
161 |
vpihour |
1978 |
if ( $this->f->isUserInstructeur() && |
162 |
softime |
2613 |
$this->getStatutAutorisationDossier($this->getParameter("idxformulaire")) == "cloture" |
163 |
|
|
&& ( |
164 |
vpihour |
1978 |
$retourformulaire == 'dossier' || |
165 |
|
|
$retourformulaire == 'dossier_instruction' || |
166 |
|
|
$retourformulaire == 'dossier_instruction_mes_encours' || |
167 |
|
|
$retourformulaire == 'dossier_instruction_tous_encours' || |
168 |
|
|
$retourformulaire == 'dossier_instruction_mes_clotures' || |
169 |
|
|
$retourformulaire == 'dossier_instruction_tous_clotures' |
170 |
|
|
) |
171 |
softime |
2613 |
&& $this->getParameter("maj") != 3 |
172 |
|
|
&& $this->getParameter("maj") != 0 |
173 |
|
|
&& $this->checkEvenementNonVerrouillable($this->getVal("instruction")) === false) { |
174 |
|
|
|
175 |
vpihour |
1978 |
return false; |
176 |
|
|
} |
177 |
fmichon |
944 |
// |
178 |
|
|
return true; |
179 |
|
|
} |
180 |
|
|
|
181 |
|
|
/** |
182 |
fmichon |
1908 |
* Cette variable permet de stocker le résultat de la méthode |
183 |
|
|
* getDivisionFromDossier() afin de ne pas effectuer le recalcul à chacun de |
184 |
|
|
* ces appels. |
185 |
|
|
* @var string Code de la division du dossier en cours |
186 |
fmichon |
944 |
*/ |
187 |
fmichon |
1908 |
var $_division_from_dossier = NULL; |
188 |
|
|
|
189 |
|
|
/** |
190 |
|
|
* Cette méthode permet de récupérer le code de division correspondant |
191 |
|
|
* au dossier sur lequel on se trouve. |
192 |
|
|
* |
193 |
|
|
* @return string Code de la division du dossier en cours |
194 |
|
|
*/ |
195 |
fmichon |
944 |
function getDivisionFromDossier() { |
196 |
fmichon |
1908 |
|
197 |
|
|
// Cette méthode peut être appelée plusieurs fois lors d'une requête. |
198 |
|
|
// Pour éviter de refaire le traitement de recherche de la division |
199 |
|
|
// alors on vérifie si nous ne l'avons pas déjà calculé. |
200 |
|
|
if ($this->_division_from_dossier != NULL) { |
201 |
|
|
// Logger |
202 |
|
|
$this->addToLog("getDivisionFromDossier(): retour de la valeur déjà calculée - '".$this->_division_from_dossier."'", EXTRA_VERBOSE_MODE); |
203 |
|
|
// On retourne la valeur déjà calculée |
204 |
|
|
return $this->_division_from_dossier; |
205 |
fmichon |
944 |
} |
206 |
fmichon |
1908 |
|
207 |
|
|
// Par défaut, on définit la valeur du dossier à NULL |
208 |
|
|
$dossier = NULL; |
209 |
|
|
// Test sur le mode et le contexte du formulaire |
210 |
|
|
if ($this->getParameter("maj") == 0 |
211 |
|
|
&& ($this->getParameter("retourformulaire") == "dossier" |
212 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction" |
213 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_mes_encours" |
214 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_tous_encours" |
215 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_mes_clotures" |
216 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_tous_clotures")) { |
217 |
|
|
// Si on se trouve en mode AJOUT (seul mode où l'enregistrement |
218 |
|
|
// n'existe pas en base de données) ET que nous nous trouvons |
219 |
|
|
// dans le contexte d'un dossier d'instruction alors on récupère |
220 |
|
|
// le numéro de dossier depuis le paramètre 'idxformulaire' |
221 |
|
|
$dossier = $this->getParameter("idxformulaire"); |
222 |
|
|
} else { |
223 |
|
|
// Sinon on récupère le numéro de dossier dans le champs dossier de |
224 |
|
|
// l'enregistrement (en base de données) |
225 |
|
|
$dossier = $this->getVal("dossier"); |
226 |
|
|
} |
227 |
|
|
|
228 |
|
|
// On appelle la méthode de la classe utils qui renvoi le code de la |
229 |
|
|
// division d'un dossier, on la stocke pour ne pas refaire le calcul au |
230 |
|
|
// prochain appel de cette méthode |
231 |
|
|
$this->_division_from_dossier = $this->f->getDivisionFromDossier($dossier); |
232 |
|
|
// Logger |
233 |
|
|
$this->addToLog("getDivisionFromDossier(): retour de la valeur nouvellement calculée - '".$this->_division_from_dossier."'", EXTRA_VERBOSE_MODE); |
234 |
|
|
// On retourne la valeur retournée |
235 |
|
|
return $this->_division_from_dossier; |
236 |
|
|
|
237 |
fmichon |
944 |
} |
238 |
|
|
|
239 |
nhaye |
1643 |
/** |
240 |
|
|
* Cette méthode permet de récupérer le dossier d'autorisation d'un dossier |
241 |
|
|
*/ |
242 |
softime |
2025 |
function getNumDemandeAutorFromDossier($id) { |
243 |
nhaye |
1643 |
// |
244 |
|
|
if (!isset($id)) { |
245 |
|
|
return NULL; |
246 |
|
|
} |
247 |
|
|
// |
248 |
|
|
$sql = "select dossier_autorisation from ".DB_PREFIXE."dossier "; |
249 |
|
|
$sql .= " where dossier='".$id."'"; |
250 |
|
|
// |
251 |
|
|
$dossier_autorisation = $this->db->getOne($sql); |
252 |
softime |
2025 |
$this->addToLog("getNumDemandeAutorFromDossier(): db->getone(\"".$sql."\")", VERBOSE_MODE); |
253 |
nhaye |
1643 |
database::isError($dossier_autorisation); |
254 |
|
|
// |
255 |
|
|
return $dossier_autorisation; |
256 |
|
|
} |
257 |
|
|
|
258 |
fmichon |
944 |
// }}} |
259 |
|
|
|
260 |
fmichon |
1540 |
function setType(&$form, $maj) { |
261 |
|
|
// |
262 |
|
|
parent::setType($form, $maj); |
263 |
|
|
// On cache tous les champs |
264 |
|
|
// XXX |
265 |
fraynaud |
20 |
$form->setType('complement3', 'hidden'); |
266 |
|
|
$form->setType('bible3', 'hidden'); |
267 |
|
|
$form->setType('complement4', 'hidden'); |
268 |
|
|
$form->setType('bible4', 'hidden'); |
269 |
|
|
$form->setType('complement5', 'hidden'); |
270 |
|
|
$form->setType('bible5', 'hidden'); |
271 |
|
|
$form->setType('complement6', 'hidden'); |
272 |
|
|
$form->setType('bible6', 'hidden'); |
273 |
|
|
$form->setType('complement7', 'hidden'); |
274 |
|
|
$form->setType('bible7', 'hidden'); |
275 |
|
|
$form->setType('complement8', 'hidden'); |
276 |
|
|
$form->setType('bible8', 'hidden'); |
277 |
|
|
$form->setType('complement9', 'hidden'); |
278 |
|
|
$form->setType('bible9', 'hidden'); |
279 |
|
|
$form->setType('complement10', 'hidden'); |
280 |
|
|
$form->setType('bible10', 'hidden'); |
281 |
|
|
$form->setType('complement11', 'hidden'); |
282 |
|
|
$form->setType('bible11', 'hidden'); |
283 |
|
|
$form->setType('complement12', 'hidden'); |
284 |
|
|
$form->setType('bible12', 'hidden'); |
285 |
|
|
$form->setType('complement13', 'hidden'); |
286 |
|
|
$form->setType('bible13', 'hidden'); |
287 |
|
|
$form->setType('complement14', 'hidden'); |
288 |
|
|
$form->setType('bible14', 'hidden'); |
289 |
|
|
$form->setType('complement15', 'hidden'); |
290 |
|
|
$form->setType('bible15', 'hidden'); |
291 |
fmichon |
1540 |
// |
292 |
fraynaud |
20 |
$form->setType('delai', 'hidden'); |
293 |
|
|
$form->setType('etat', 'hidden'); |
294 |
|
|
$form->setType('accord_tacite', 'hidden'); |
295 |
|
|
$form->setType('action', 'hidden'); |
296 |
|
|
$form->setType('delai_notification', 'hidden'); |
297 |
vpihour |
489 |
$form->setType('avis_decision', 'hidden'); |
298 |
nhaye |
2099 |
$form->setType('autorite_competente', 'hidden'); |
299 |
fmichon |
1540 |
// |
300 |
fraynaud |
20 |
$form->setType('archive_delai', 'hidden'); |
301 |
|
|
$form->setType('archive_etat', 'hidden'); |
302 |
|
|
$form->setType('archive_accord_tacite', 'hidden'); |
303 |
|
|
$form->setType('archive_avis', 'hidden'); |
304 |
|
|
$form->setType('archive_date_complet', 'hidden'); |
305 |
nhaye |
1571 |
$form->setType('archive_date_dernier_depot', 'hidden'); |
306 |
fraynaud |
20 |
$form->setType('archive_date_rejet', 'hidden'); |
307 |
|
|
$form->setType('archive_date_limite', 'hidden'); |
308 |
|
|
$form->setType('archive_date_notification_delai', 'hidden'); |
309 |
|
|
$form->setType('archive_date_decision', 'hidden'); |
310 |
|
|
$form->setType('archive_date_validite', 'hidden'); |
311 |
|
|
$form->setType('archive_date_achevement', 'hidden'); |
312 |
|
|
$form->setType('archive_date_conformite', 'hidden'); |
313 |
nhaye |
2099 |
$form->setType('archive_date_chantier', 'hidden'); |
314 |
|
|
$form->setType('archive_autorite_competente','hidden'); |
315 |
fmichon |
1540 |
// |
316 |
vpihour |
1307 |
$form->setType('numero_arrete', 'hidden'); |
317 |
vpihour |
1784 |
// |
318 |
|
|
$form->setType('code_barres', 'hidden'); |
319 |
fmichon |
1540 |
|
320 |
|
|
// |
321 |
nhaye |
1717 |
$form->setType('archive_incompletude','hidden'); |
322 |
|
|
$form->setType('archive_evenement_suivant_tacite','hidden'); |
323 |
|
|
$form->setType('archive_evenement_suivant_tacite_incompletude','hidden'); |
324 |
|
|
$form->setType('archive_etat_pendant_incompletude','hidden'); |
325 |
|
|
$form->setType('archive_date_limite_incompletude','hidden'); |
326 |
|
|
$form->setType('archive_delai_incompletude','hidden'); |
327 |
softime |
2142 |
|
328 |
|
|
// |
329 |
|
|
$form->setType('duree_validite','hidden'); |
330 |
|
|
$form->setType('duree_validite_parametrage','hidden'); |
331 |
fmichon |
1540 |
if ($maj < 2) { //ajouter et modifier |
332 |
|
|
$form->setType('destinataire', 'hidden'); |
333 |
|
|
$form->setType('lettretype', 'hiddenstatic'); |
334 |
|
|
$form->setType('complement', 'textarea'); |
335 |
|
|
$form->setType('complement2', 'textarea'); |
336 |
|
|
$form->setType('bible_auto', 'httpclick'); |
337 |
|
|
$form->setType('bible', 'httpclick'); |
338 |
|
|
$form->setType('bible2', 'httpclick'); |
339 |
|
|
$form->setType('dossier', 'hidden'); |
340 |
|
|
$form->setType('libelle', 'hiddenstatic'); |
341 |
|
|
$form->setType('signataire_arrete','select'); |
342 |
nhaye |
1564 |
$form->setType('date_envoi_signature','datedisabled'); |
343 |
|
|
$form->setType('date_retour_signature','datedisabled'); |
344 |
|
|
$form->setType('date_envoi_rar','datedisabled'); |
345 |
|
|
$form->setType('date_retour_rar','datedisabled'); |
346 |
|
|
$form->setType('date_envoi_controle_legalite','datedisabled'); |
347 |
|
|
$form->setType('date_retour_controle_legalite','datedisabled'); |
348 |
vpihour |
1966 |
$form->setType('date_finalisation_courrier','datedisabled'); |
349 |
softime |
2049 |
|
350 |
|
|
// l'administrateur peut modifier les champs de retour de date |
351 |
|
|
if ($this->f->user_is_admin == true) { |
352 |
|
|
$form->setType('date_retour_signature','date'); |
353 |
|
|
$form->setType('date_retour_rar','date'); |
354 |
|
|
$form->setType('date_retour_controle_legalite','date'); |
355 |
|
|
} |
356 |
|
|
|
357 |
fmichon |
1540 |
if($maj==0){ // add |
358 |
|
|
$form->setType('instruction', 'hiddenstatic'); |
359 |
|
|
$form->setType('evenement', 'select'); |
360 |
|
|
$form->setType('date_evenement', 'date2'); |
361 |
|
|
}else{ // modify |
362 |
|
|
$form->setType('instruction', 'hiddenstatic'); |
363 |
|
|
$form->setType('evenement', 'selecthiddenstatic'); |
364 |
|
|
//$form->setType('date_evenement', 'hiddenstaticdate'); |
365 |
|
|
$form->setType('date_evenement', 'date2'); |
366 |
|
|
// necessaire pour calcul de date en modification |
367 |
|
|
//$form->setType('delai', 'hiddenstatic'); |
368 |
|
|
} |
369 |
|
|
} elseif($maj==2){ |
370 |
|
|
$form->setType('dossier', 'hidden'); |
371 |
|
|
$form->setType('bible_auto', 'hidden'); |
372 |
|
|
$form->setType('bible', 'hidden'); |
373 |
|
|
$form->setType('bible2', 'hidden'); |
374 |
|
|
}else { |
375 |
|
|
$form->setType('destinataire', 'hidden'); |
376 |
|
|
$form->setType('dossier', 'hidden'); |
377 |
|
|
$form->setType('bible_auto', 'hidden'); |
378 |
|
|
$form->setType('bible', 'hidden'); |
379 |
|
|
$form->setType('bible2', 'hidden'); |
380 |
|
|
} |
381 |
vpihour |
1899 |
|
382 |
|
|
//Cache les champs pour la finalisation |
383 |
|
|
$form->setType('om_fichier_instruction', 'hidden'); |
384 |
|
|
$form->setType('om_final_instruction', 'hidden'); |
385 |
nhaye |
1945 |
// Cache le document arrêté |
386 |
softime |
2030 |
$form->setType('document_numerise', 'hidden'); |
387 |
vpihour |
2069 |
|
388 |
|
|
//Masquer les champs date_envoi_controle_legalite et |
389 |
|
|
//date_retour_controle_legalite si ce n'est pas un arrêté |
390 |
|
|
if ( !is_numeric($this->getVal("avis_decision"))){ |
391 |
|
|
|
392 |
|
|
$form->setType("date_envoi_controle_legalite", "hidden"); |
393 |
|
|
$form->setType("date_retour_controle_legalite", "hidden"); |
394 |
|
|
} |
395 |
fraynaud |
20 |
} |
396 |
fmichon |
1540 |
|
397 |
|
|
function setSelect(&$form, $maj,&$db,$debug) { |
398 |
|
|
/** |
399 |
|
|
* On ne surcharge pas la méthode parent car une requête sur la table |
400 |
|
|
* dossier est mauvaise pour les performances, car la requête qui |
401 |
|
|
* concerne evenement est plus complexe que celle générée et car les |
402 |
|
|
* champs action, avis_decision et etat ne sont pas utilisés comme des |
403 |
|
|
* select |
404 |
|
|
*/ |
405 |
atreal |
312 |
if(file_exists ("../sql/".$db->phptype."/".$this->table.".form.inc.php")) |
406 |
|
|
include ("../sql/".$db->phptype."/".$this->table.".form.inc.php"); |
407 |
fmichon |
1540 |
elseif(file_exists ("../sql/".$db->phptype."/".$this->table.".form.inc")) |
408 |
|
|
include ("../sql/".$db->phptype."/".$this->table.".form.inc"); |
409 |
nhaye |
428 |
|
410 |
fmichon |
1540 |
//// action |
411 |
|
|
//$this->init_select($form, $db, $maj, $debug, "action", |
412 |
|
|
// $sql_action, $sql_action_by_id, false); |
413 |
vpihour |
1227 |
|
414 |
fmichon |
1540 |
//// avis_decision |
415 |
|
|
//$this->init_select($form, $db, $maj, $debug, "avis_decision", |
416 |
|
|
// $sql_avis_decision, $sql_avis_decision_by_id, false); |
417 |
nhaye |
1140 |
|
418 |
fmichon |
1540 |
//// dossier |
419 |
|
|
//$this->init_select($form, $db, $maj, $debug, "dossier", |
420 |
|
|
// $sql_dossier, $sql_dossier_by_id, false); |
421 |
nhaye |
428 |
|
422 |
fmichon |
1540 |
//// etat |
423 |
|
|
//$this->init_select($form, $db, $maj, $debug, "etat", |
424 |
|
|
// $sql_etat, $sql_etat_by_id, false); |
425 |
|
|
|
426 |
|
|
//// evenement |
427 |
|
|
//$this->init_select($form, $db, $maj, $debug, "evenement", |
428 |
|
|
// $sql_evenement, $sql_evenement_by_id, false); |
429 |
|
|
|
430 |
|
|
// signataire_arrete |
431 |
|
|
$this->init_select($form, $db, $maj, $debug, "signataire_arrete", |
432 |
|
|
$sql_signataire_arrete, $sql_signataire_arrete_by_id, true); |
433 |
|
|
|
434 |
|
|
/** |
435 |
|
|
* Gestion du filtre sur les événements de workflow disponibles |
436 |
|
|
* On récupère ici en fonction de l'état du dossier d'instruction en |
437 |
|
|
* cours et du type du dossier d'instruction en cours la liste |
438 |
|
|
* événements disponibles. |
439 |
|
|
*/ |
440 |
|
|
if ($maj == 0) { |
441 |
|
|
// Récupération des événements par une jointure entre la table dossier |
442 |
|
|
// et la table transition et la table evenement et la table |
443 |
|
|
// lien_dossier_instruction_type_evenement en fonction de l'identifiant |
444 |
|
|
// du dossier d'instruction en cours |
445 |
|
|
$sql = "SELECT |
446 |
|
|
evenement.evenement, |
447 |
softime |
2144 |
CONCAT(evenement.libelle, ' ['||evenement.action||']') as lib |
448 |
fmichon |
1540 |
FROM ".DB_PREFIXE."dossier |
449 |
|
|
INNER JOIN ".DB_PREFIXE."lien_dossier_instruction_type_evenement |
450 |
|
|
ON dossier.dossier_instruction_type=lien_dossier_instruction_type_evenement.dossier_instruction_type |
451 |
|
|
INNER JOIN ".DB_PREFIXE."evenement |
452 |
|
|
ON evenement.evenement=lien_dossier_instruction_type_evenement.evenement |
453 |
|
|
INNER JOIN ".DB_PREFIXE."transition |
454 |
|
|
ON evenement.evenement = transition.evenement |
455 |
|
|
AND dossier.etat=transition.etat |
456 |
|
|
WHERE dossier.dossier='".$this->idxformulaire."' |
457 |
vpihour |
2614 |
ORDER BY evenement.libelle, evenement.action"; |
458 |
fmichon |
1540 |
$res = $db->query($sql); |
459 |
|
|
$this->addToLog("setSelect(): db->query(\"".$sql."\");", VERBOSE_MODE); |
460 |
|
|
if (database::isError($res)) { |
461 |
|
|
die($res->getMessage()); |
462 |
fraynaud |
20 |
} |
463 |
fmichon |
1540 |
// Remplissage du tableau du select |
464 |
|
|
$contenu = array( |
465 |
|
|
0 => array("",), |
466 |
|
|
1 => array(_('choisir')." "._('evenement'),) |
467 |
|
|
); |
468 |
|
|
while ($row=& $res->fetchRow()) { |
469 |
|
|
$contenu[0][] = $row[0]; |
470 |
|
|
$contenu[1][] = $row[1]; |
471 |
|
|
} |
472 |
|
|
$form->setSelect("evenement", $contenu); |
473 |
|
|
} else { |
474 |
|
|
$sql = "SELECT |
475 |
softime |
2144 |
CONCAT(evenement.libelle, ' ['||evenement.action||']') as lib |
476 |
fmichon |
1540 |
FROM ".DB_PREFIXE."evenement |
477 |
|
|
WHERE evenement.evenement=".$this->getVal("evenement").""; |
478 |
|
|
$res = $db->getone($sql); |
479 |
|
|
$this->addToLog("setSelect(): db->getone(\"".$sql."\");", VERBOSE_MODE); |
480 |
|
|
if (database::isError($res)) { |
481 |
|
|
die($res->getMessage()); |
482 |
|
|
} |
483 |
|
|
// |
484 |
|
|
$contenu = array( |
485 |
|
|
0 => array($this->getVal("evenement"),), |
486 |
|
|
1 => array($res,) |
487 |
|
|
); |
488 |
|
|
$form->setSelect("evenement", $contenu); |
489 |
fraynaud |
20 |
} |
490 |
fmichon |
1540 |
|
491 |
|
|
/** |
492 |
|
|
* Gesion des liens vers la bible |
493 |
|
|
*/ |
494 |
|
|
// lien bible_auto |
495 |
|
|
$contenu = array(_("automatique")); |
496 |
nhaye |
428 |
$form->setSelect("bible_auto",$contenu); |
497 |
|
|
// lien bible1 |
498 |
fmichon |
1540 |
$contenu = array(_("bible")); |
499 |
nhaye |
428 |
$form->setSelect("bible",$contenu); |
500 |
|
|
// lien bible2 |
501 |
fmichon |
1540 |
$contenu = array(_("bible")); |
502 |
nhaye |
428 |
$form->setSelect("bible2",$contenu); |
503 |
fmichon |
1540 |
} |
504 |
fraynaud |
20 |
|
505 |
fmichon |
1540 |
function cleSecondaire($id, &$db, $val, $DEBUG) { |
506 |
|
|
// |
507 |
|
|
parent::cleSecondaire($id, $db, $val, $DEBUG); |
508 |
vpihour |
2000 |
|
509 |
vpihour |
2606 |
$id = $this->getVal($this->clePrimaire); |
510 |
vpihour |
2604 |
|
511 |
vpihour |
2603 |
|
512 |
softime |
2633 |
//Requête de vérification que cet événement d'instruction n'est pas lié |
513 |
vpihour |
2606 |
//à la création d'un dossier d'instruction |
514 |
|
|
$sql = "SELECT demande_type.dossier_instruction_type |
515 |
|
|
FROM ".DB_PREFIXE."demande_type |
516 |
|
|
LEFT JOIN ".DB_PREFIXE."demande |
517 |
|
|
ON demande.demande_type = demande_type.demande_type |
518 |
|
|
WHERE demande.instruction_recepisse = ".$id; |
519 |
|
|
$res = $this->db->getOne($sql); |
520 |
|
|
$this->addToLog("cleSecondaire(): db->getone(\"".$sql."\");", VERBOSE_MODE); |
521 |
|
|
if (database::isError($res)) { |
522 |
|
|
die($res->getMessage()); |
523 |
|
|
} |
524 |
|
|
|
525 |
|
|
// Aucune clé secondaire n'a été trouvée ou c'est un événement sans |
526 |
|
|
//création de dossier d'instruction, l'événement d'instruction peut être |
527 |
|
|
//supprimé |
528 |
vpihour |
2603 |
if ( $this->correct !== false || $res == null || $res == ""){ |
529 |
vpihour |
2606 |
|
530 |
softime |
2633 |
// Requête de vérification que cet événement d'instruction est lié |
531 |
|
|
// à une demande |
532 |
|
|
$sql = "SELECT demande |
533 |
|
|
FROM ".DB_PREFIXE."demande |
534 |
|
|
WHERE instruction_recepisse = ".$id; |
535 |
|
|
$res = $this->db->getOne($sql); |
536 |
|
|
$this->addToLog("cleSecondaire(): db->getone(\"".$sql."\");", VERBOSE_MODE); |
537 |
|
|
if (database::isError($res)) { |
538 |
|
|
die($res->getMessage()); |
539 |
|
|
} |
540 |
|
|
|
541 |
vpihour |
2606 |
//Si c'est un événement d'instruction lié à une demande |
542 |
softime |
2633 |
if ($res != null || $res != ""){ |
543 |
vpihour |
2603 |
|
544 |
vpihour |
2606 |
require_once "../obj/demande.class.php"; |
545 |
|
|
$demande = new demande($res, $this->db, DEBUG); |
546 |
|
|
|
547 |
|
|
//On met à jour la demande en supprimant la liaison vers |
548 |
|
|
//l'événement d'instruction |
549 |
|
|
$demande->setParameter("maj", 1); |
550 |
|
|
$valF = array(); |
551 |
|
|
foreach($demande->champs as $identifiant => $champ) { |
552 |
|
|
$valF[$champ] = $demande->val[$identifiant]; |
553 |
|
|
} |
554 |
|
|
$valF['date_demande']=$demande->dateDBToForm($valF['date_demande']); |
555 |
|
|
$valF['instruction_recepisse']=NULL; |
556 |
|
|
$ret = $demande->modifier($valF, $this->db, DEBUG); |
557 |
vpihour |
2603 |
} |
558 |
|
|
|
559 |
vpihour |
2000 |
/** |
560 |
|
|
* Vérification que l'élément supprimé est le dernier pour pouvoir |
561 |
|
|
* remodifier les données de manière itérative. |
562 |
|
|
*/ |
563 |
|
|
// Initialisation |
564 |
|
|
$dernierevenement = ""; |
565 |
|
|
// Récupération du dernier élément de la table d'instruction qui |
566 |
|
|
// concerne le dossier en cours |
567 |
|
|
$sql = "SELECT max(instruction) |
568 |
|
|
FROM ".DB_PREFIXE."instruction |
569 |
|
|
WHERE dossier ='".$this->idxformulaire."'"; |
570 |
|
|
$dernierevenement = $db->getOne($sql); |
571 |
|
|
$this->addToLog("setSelect(): db->getone(\"".$sql."\");", VERBOSE_MODE); |
572 |
|
|
if (database::isError($dernierevenement)) { |
573 |
|
|
die($dernierevenement->getMessage()); |
574 |
|
|
} |
575 |
|
|
// Si on se trouve effectivement sur le dernier evenement d'instruction |
576 |
|
|
if ($dernierevenement == $id) { |
577 |
|
|
// Alors on valide la suppression |
578 |
|
|
$this->correct = true; |
579 |
|
|
$this->addToMessage(_('Destruction_chronologique')); |
580 |
|
|
} else { |
581 |
|
|
// Alors on annule la suppression |
582 |
|
|
$this->correct = false; |
583 |
|
|
$this->addToMessage(_("Seul le dernier evenement d'instruction peut etre supprime.")); |
584 |
|
|
} |
585 |
fmichon |
1540 |
} |
586 |
|
|
} |
587 |
|
|
|
588 |
nhaye |
2412 |
/** |
589 |
|
|
* Vérification de la possibilité ou non de modifier des dates de suivi |
590 |
|
|
* @param string $champ champ date à vérifier |
591 |
|
|
*/ |
592 |
nhaye |
1564 |
function updateDate($champ) { |
593 |
nhaye |
2412 |
|
594 |
softime |
2562 |
//Si le retourformulaire est "dossier_instruction" |
595 |
|
|
if ($this->retourformulaire == "dossier_instruction") { |
596 |
|
|
|
597 |
|
|
// Vérification de la possibilité de modifier les dates si déjà éditées |
598 |
|
|
if($this->valF[$champ] != "" AND !$this->f->user_is_admin) { |
599 |
|
|
// si l'utilisateur n'est pas un admin |
600 |
|
|
if($this->getVal($champ) != "" AND $this->getVal($champ) != $this->valF[$champ]) { |
601 |
|
|
$this->correct = false; |
602 |
|
|
$this->addToMessage(_("Les dates de suivis ne peuvent etre modifiees")); |
603 |
|
|
} |
604 |
nhaye |
1564 |
} |
605 |
|
|
} |
606 |
softime |
2562 |
|
607 |
|
|
// |
608 |
nhaye |
2412 |
return true; |
609 |
nhaye |
1564 |
} |
610 |
|
|
|
611 |
fmichon |
1540 |
// Sélectionne le signataire_arrete par défaut |
612 |
|
|
function setVal(&$form,$maj,$validation){ |
613 |
|
|
|
614 |
|
|
// Ajout |
615 |
|
|
if($maj == 0) { |
616 |
|
|
|
617 |
|
|
// Création de la requête |
618 |
|
|
$sql = "SELECT signataire_arrete |
619 |
|
|
FROM ".DB_PREFIXE."signataire_arrete |
620 |
|
|
WHERE defaut IS TRUE"; |
621 |
|
|
|
622 |
|
|
// Exécution de la requête |
623 |
vpihour |
1777 |
$res = $this->f->db->query($sql); |
624 |
vpihour |
2456 |
$this->f->addToLog("setVal(): db->query(\"".$sql."\");", VERBOSE_MODE); |
625 |
vpihour |
1777 |
if ( database::isError($res)){ |
626 |
|
|
die(); |
627 |
|
|
} |
628 |
fmichon |
1540 |
|
629 |
|
|
$row = $res->fetchrow(DB_FETCHMODE_ASSOC); |
630 |
|
|
|
631 |
|
|
if ( isset($row['signataire_arrete']) && is_numeric($row['signataire_arrete'])){ |
632 |
|
|
|
633 |
|
|
$form->setVal("signataire_arrete",$row['signataire_arrete']); |
634 |
|
|
} |
635 |
|
|
} |
636 |
|
|
} |
637 |
|
|
|
638 |
|
|
/*Met des valeurs par défaut dans certains des sous-formulaire*/ |
639 |
|
|
function setValsousformulaire(&$form,$maj,$validation,$idxformulaire,$retourformulaire,$typeformulaire){ |
640 |
|
|
if ($validation==0 and $maj<2) { |
641 |
|
|
if ($maj == 0){ |
642 |
|
|
$form->setVal("destinataire", $idxformulaire); |
643 |
|
|
$form->setVal("dossier", $idxformulaire); |
644 |
|
|
$form->setVal("date_evenement", date('Y-m-d')); |
645 |
|
|
} |
646 |
|
|
$form->setVal("bible_auto","bible_auto()"); |
647 |
|
|
$form->setVal("bible","bible()"); |
648 |
|
|
$form->setVal("bible2","bible2()"); |
649 |
|
|
} |
650 |
|
|
$this->retourformulaire=$retourformulaire; |
651 |
|
|
$this->idxformulaire=$idxformulaire; |
652 |
|
|
} |
653 |
|
|
|
654 |
|
|
|
655 |
nhaye |
1439 |
function setLayout(&$form, $maj){ |
656 |
|
|
if ( $maj < 2 OR $maj == 3 ) { |
657 |
|
|
/*Champ sur lequel s'ouvre le bloc 1 */ |
658 |
|
|
$form->setBloc('evenement','D',"","col_12"); |
659 |
fraynaud |
20 |
|
660 |
nhaye |
1439 |
$form->setFieldset('evenement','D',_('Evenement')); |
661 |
|
|
$form->setFieldset('lettretype','F',''); |
662 |
|
|
|
663 |
|
|
$form->setBloc('lettretype','F'); |
664 |
|
|
|
665 |
|
|
$form->setBloc('date_finalisation_courrier','D',"","col_12"); |
666 |
|
|
|
667 |
|
|
$form->setFieldset('date_finalisation_courrier','D',_('Dates')); |
668 |
|
|
$form->setBloc('date_finalisation_courrier','D',"","col_6"); |
669 |
|
|
$form->setBloc('date_envoi_controle_legalite','F'); |
670 |
|
|
|
671 |
|
|
$form->setBloc('signataire_arrete','D',"","col_6"); |
672 |
|
|
$form->setBloc('date_retour_controle_legalite','F'); |
673 |
|
|
$form->setFieldset('date_retour_controle_legalite','F',''); |
674 |
|
|
|
675 |
|
|
$form->setBloc('date_retour_controle_legalite','F'); |
676 |
|
|
|
677 |
|
|
$form->setBloc('complement','D',"","col_12"); |
678 |
|
|
$form->setFieldset('complement','D',_('Complement')); |
679 |
|
|
$form->setFieldset('bible','F',''); |
680 |
|
|
$form->setBloc('bible','F'); |
681 |
|
|
|
682 |
|
|
$form->setBloc('complement2','D',"","col_12"); |
683 |
|
|
$form->setFieldset('complement2','D',_('Complement 2')); |
684 |
|
|
$form->setFieldset('bible2','F',''); |
685 |
|
|
$form->setBloc('bible2','F'); |
686 |
|
|
} |
687 |
fraynaud |
20 |
} |
688 |
|
|
|
689 |
fmichon |
1540 |
function setLib(&$form, $maj) { |
690 |
|
|
// |
691 |
|
|
parent::setLib($form, $maj); |
692 |
|
|
// |
693 |
|
|
$form->setLib('bible_auto', ""); |
694 |
|
|
$form->setLib('bible', ""); |
695 |
|
|
$form->setLib('bible2', ""); |
696 |
fraynaud |
20 |
} |
697 |
|
|
|
698 |
fmichon |
1540 |
function triggerajouter($id, &$db, $val, $DEBUG) { |
699 |
|
|
/** |
700 |
|
|
* Le code suivant permet de récupérer des valeurs des tables evenement |
701 |
|
|
* et dossier pour les stocker dans l'instruction : |
702 |
|
|
* DEPUIS L'EVENEMENT |
703 |
|
|
* - action |
704 |
|
|
* - delai |
705 |
|
|
* - accord_tacite |
706 |
|
|
* - etat |
707 |
|
|
* - avis_decision |
708 |
|
|
* - delai_notification |
709 |
|
|
* - lettretype |
710 |
nhaye |
2099 |
* - autorite_competente |
711 |
fmichon |
1540 |
* DEPUIS LE DOSSIER D'INSTRUCTION |
712 |
|
|
* - archive_delai |
713 |
|
|
* - archive_accord_tacite |
714 |
|
|
* - archive_etat |
715 |
|
|
* - archive_avis |
716 |
|
|
* - date_complet |
717 |
|
|
* - date_rejet |
718 |
|
|
* - date_limite |
719 |
|
|
* - date_notification_delai |
720 |
|
|
* - date_decision |
721 |
|
|
* - date_validite |
722 |
|
|
* - date_achevement |
723 |
|
|
* - date_chantier |
724 |
|
|
* - date_conformite |
725 |
nhaye |
2099 |
* - avis_decision |
726 |
fmichon |
1540 |
* Il permet également de stocker la date_depot du dossier d'instruction |
727 |
|
|
* dans l'attribut $this->archive_date_depot de la classe. |
728 |
|
|
*/ |
729 |
|
|
// Récupération de tous les paramètres de l'événement sélectionné |
730 |
|
|
$sql = "SELECT * FROM ".DB_PREFIXE."evenement |
731 |
|
|
WHERE evenement=".$this->valF['evenement']; |
732 |
fraynaud |
20 |
$res = $db->query($sql); |
733 |
fmichon |
1540 |
$this->addToLog("triggerajouter(): db->query(\"".$sql."\");", VERBOSE_MODE); |
734 |
|
|
if (database::isError($res)) { |
735 |
|
|
die($res->getMessage()); |
736 |
|
|
} |
737 |
|
|
while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC)) { |
738 |
|
|
// Récupération de l'identifiant de l'action |
739 |
|
|
// si une action est paramétrée dans l'événement |
740 |
|
|
$this->valF['action'] = NULL; |
741 |
|
|
if (isset($row['action']) and !empty($row['action'])) { |
742 |
nhaye |
460 |
$this->valF['action']=$row['action']; |
743 |
|
|
} |
744 |
fmichon |
1540 |
// Récupération de la valeur du délai |
745 |
|
|
$this->valF['delai'] = $row['delai']; |
746 |
|
|
// Récupération de l'identifiant de l'état |
747 |
|
|
// si un état est paramétré dans l'événement |
748 |
|
|
$this->valF['etat']=NULL; |
749 |
|
|
if (isset($row['etat']) and !empty($row['etat'])) { |
750 |
nhaye |
460 |
$this->valF['etat']=$row['etat']; |
751 |
|
|
} |
752 |
fmichon |
1540 |
// Récupération de la valeur d'accord tacite |
753 |
fraynaud |
20 |
$this->valF['accord_tacite']=$row['accord_tacite']; |
754 |
fmichon |
1540 |
// Récupération de la valeur du délai de notification |
755 |
fraynaud |
20 |
$this->valF['delai_notification']=$row['delai_notification']; |
756 |
fmichon |
1540 |
// Récupération de l'identifiant de l'avis |
757 |
|
|
// si un avis est paramétré dans l'événement |
758 |
|
|
$this->valF['avis_decision'] = NULL; |
759 |
vpihour |
489 |
if(isset($row['avis_decision']) and !empty($row['avis_decision'])) { |
760 |
|
|
$this->valF['avis_decision']=$row['avis_decision']; |
761 |
fmichon |
1540 |
} |
762 |
nhaye |
2099 |
// Récupération de la valeur de l'autorité compétente |
763 |
|
|
// si l'autorité compétente est paramétré dans l'événement |
764 |
|
|
$this->valF['autorite_competente'] = NULL; |
765 |
|
|
if(isset($row['autorite_competente']) and !empty($row['autorite_competente'])) { |
766 |
|
|
$this->valF['autorite_competente']=$row['autorite_competente']; |
767 |
|
|
} |
768 |
fmichon |
1540 |
// Récupération de la valeur de la lettre type |
769 |
|
|
// Sinon on lui affecte lavaleur par défaut standard |
770 |
|
|
if ($row['lettretype'] != "") { |
771 |
|
|
$this->valF['lettretype']=$row['lettretype']; |
772 |
nhaye |
460 |
} else { |
773 |
fmichon |
1540 |
$this->valF['lettretype'] = "standard"; // XXX |
774 |
nhaye |
460 |
} |
775 |
fraynaud |
20 |
} |
776 |
fmichon |
1540 |
// Récupération de toutes les valeurs du dossier d'instruction en cours |
777 |
|
|
$sql = "SELECT * FROM ".DB_PREFIXE."dossier |
778 |
|
|
WHERE dossier='".$this->valF['dossier']."'"; |
779 |
fraynaud |
20 |
$res = $db->query($sql); |
780 |
fmichon |
1540 |
$this->addToLog("triggerajouter(): db->query(\"".$sql."\");", VERBOSE_MODE); |
781 |
|
|
if (database::isError($res)) { |
782 |
fraynaud |
20 |
die($res->getMessage()); |
783 |
fmichon |
1540 |
} |
784 |
vpihour |
2643 |
$row=& $res->fetchRow(DB_FETCHMODE_ASSOC); |
785 |
|
|
$this->updateArchiveData($row); |
786 |
|
|
$this->archive_date_depot = $row['date_depot']; |
787 |
|
|
|
788 |
softime |
2142 |
// Récupération de la duree de validite du dossier d'autorisation |
789 |
|
|
$sql = "SELECT duree_validite_parametrage |
790 |
|
|
FROM ".DB_PREFIXE."dossier_autorisation_type_detaille |
791 |
|
|
LEFT JOIN ".DB_PREFIXE."dossier_autorisation |
792 |
|
|
ON dossier_autorisation.dossier_autorisation_type_detaille = dossier_autorisation_type_detaille.dossier_autorisation_type_detaille |
793 |
|
|
LEFT JOIN ".DB_PREFIXE."dossier |
794 |
|
|
ON dossier.dossier_autorisation = dossier_autorisation.dossier_autorisation |
795 |
|
|
WHERE dossier.dossier='".$this->valF['dossier']."'"; |
796 |
|
|
$duree_validite_parametrage = $db->getOne($sql); |
797 |
|
|
$this->addToLog("triggerajouter(): db->getOne(\"".$sql."\");", VERBOSE_MODE); |
798 |
|
|
database::isError($duree_validite_parametrage); |
799 |
|
|
if ($duree_validite_parametrage != '') { |
800 |
|
|
$this->valF['duree_validite_parametrage']= $duree_validite_parametrage; |
801 |
|
|
} |
802 |
vpihour |
1784 |
|
803 |
|
|
// Identifiant du type de courrier |
804 |
|
|
$idTypeCourrier = '11'; |
805 |
|
|
$idCourrier = str_pad($this->valF["instruction"], 10, "0", STR_PAD_LEFT); |
806 |
|
|
// Code barres |
807 |
|
|
$this->valF["code_barres"] = $idTypeCourrier . $idCourrier; |
808 |
fraynaud |
20 |
} |
809 |
|
|
|
810 |
vpihour |
1137 |
// Test si une restriction est valide |
811 |
|
|
// return boolean |
812 |
|
|
function restrictionIsValid($restriction){ |
813 |
softime |
2305 |
|
814 |
|
|
// Liste des opérateurs possible |
815 |
|
|
$operateurs = array(">=", "<=", "+", "-"); |
816 |
|
|
// Liste des opérateurs avec espace |
817 |
|
|
$operateurs_blank = array(" >= ", " <= ", " + ", " - "); |
818 |
|
|
|
819 |
|
|
// Supprime tous les espaces de la chaîne de caractère |
820 |
|
|
$restriction = str_replace(' ', '', $restriction); |
821 |
vpihour |
1137 |
|
822 |
softime |
2305 |
// Met des espace avant et après les opérateurs puis transforme la |
823 |
|
|
// chaine en un tableau |
824 |
|
|
$tabRestriction = str_replace($operateurs, $operateurs_blank, |
825 |
|
|
$restriction); |
826 |
|
|
$tabRestriction = explode(" ", $tabRestriction); |
827 |
|
|
|
828 |
|
|
// Tableau comprenant les résultat |
829 |
vpihour |
1137 |
$res = array(); |
830 |
softime |
2305 |
// Compteur pour les résultat |
831 |
|
|
// commence à 1 car le 0 doit rester inchangé tout au long du traitement |
832 |
|
|
$j = 1; |
833 |
|
|
// Comparateur du calcul |
834 |
|
|
$comparateur = ''; |
835 |
|
|
// Booléen retourné |
836 |
|
|
$res_bool = true; |
837 |
|
|
|
838 |
|
|
// Si le tableau n'est pas vide |
839 |
|
|
if (count($tabRestriction) > 0) { |
840 |
|
|
|
841 |
|
|
// Boucle dans le tableau pour récupérer seulement les valeurs |
842 |
|
|
foreach ($tabRestriction as $key => $value) { |
843 |
vpihour |
1137 |
|
844 |
softime |
2305 |
// |
845 |
|
|
if (!in_array($value, $operateurs)) { |
846 |
|
|
if ($this->getRestrictionValue($value) != false) { |
847 |
|
|
$res[] = $this->getRestrictionValue($value); |
848 |
|
|
} else { |
849 |
|
|
return false; |
850 |
|
|
} |
851 |
vpihour |
1137 |
} |
852 |
softime |
2305 |
} |
853 |
|
|
|
854 |
|
|
// Boucle dans le tableau |
855 |
|
|
// commence à 1 car le 0 doit rester inchangé tout au long du |
856 |
|
|
// traitement |
857 |
|
|
for ($i = 1; $i<count($tabRestriction); $i++) { |
858 |
|
|
|
859 |
|
|
// Récupère le comparateur |
860 |
|
|
if ($tabRestriction[$i] === ">=" |
861 |
|
|
|| $tabRestriction[$i] === "<=") { |
862 |
|
|
$comparateur = $tabRestriction[$i]; |
863 |
vpihour |
1137 |
} |
864 |
softime |
2305 |
|
865 |
|
|
// Si l'opérateur qui suit est un "+" |
866 |
|
|
if ($tabRestriction[$i] === "+") { |
867 |
|
|
$dateDep = strtotime($res[$j]); |
868 |
|
|
unset($res[$j]);$j++; |
869 |
|
|
$duree = $res[$j]; |
870 |
|
|
unset($res[$j]); |
871 |
|
|
$res[$j] = date('Y-m-d', |
872 |
|
|
strtotime('+'.$duree.' month', $dateDep)); |
873 |
|
|
} |
874 |
|
|
|
875 |
|
|
// Si l'opérateur qui suit est un "-" |
876 |
|
|
if ($tabRestriction[$i] === "-") { |
877 |
|
|
$dateDep = strtotime($res[$j]); |
878 |
|
|
unset($res[$j]);$j++; |
879 |
|
|
$duree = $res[$j]; |
880 |
|
|
unset($res[$j]); |
881 |
|
|
$res[$j] = date('Y-m-d', |
882 |
|
|
strtotime('-'.$duree.' month', $dateDep)); |
883 |
|
|
} |
884 |
vpihour |
1137 |
} |
885 |
|
|
|
886 |
|
|
} |
887 |
|
|
|
888 |
softime |
2305 |
// Si les tableau des résultats n'est pas vide |
889 |
|
|
if (count($res) > 0) { |
890 |
|
|
// |
891 |
|
|
$res_bool = false; |
892 |
|
|
// Effectue le test |
893 |
|
|
if ($comparateur === ">=") { |
894 |
|
|
// |
895 |
|
|
if (strtotime($res[0]) >= strtotime($res[$j])) { |
896 |
|
|
$res_bool = true; |
897 |
|
|
} |
898 |
vpihour |
1137 |
} |
899 |
softime |
2305 |
if ($comparateur === "<=") { |
900 |
vpihour |
1137 |
|
901 |
softime |
2305 |
if (strtotime($res[0]) <= strtotime($res[$j])) { |
902 |
|
|
$res_bool = true; |
903 |
|
|
} |
904 |
vpihour |
1137 |
} |
905 |
|
|
} |
906 |
|
|
|
907 |
softime |
2305 |
return $res_bool; |
908 |
|
|
|
909 |
vpihour |
1137 |
} |
910 |
softime |
2373 |
|
911 |
|
|
/** |
912 |
|
|
* Récupère la valeur du champ dans la restriction |
913 |
|
|
* @param string $restrictionValue Nom du champ |
914 |
|
|
* @return mixed Valeur du champ |
915 |
|
|
*/ |
916 |
vpihour |
1137 |
function getRestrictionValue($restrictionValue){ |
917 |
softime |
2305 |
|
918 |
softime |
2373 |
// Initialisation de la valeur de retour |
919 |
softime |
2305 |
$return = false; |
920 |
|
|
|
921 |
softime |
2373 |
// Récupére les valeurs du dossier |
922 |
|
|
$value_dossier = $this->get_dossier_actual(); |
923 |
|
|
|
924 |
|
|
// |
925 |
softime |
2305 |
if (is_numeric($restrictionValue)) { |
926 |
|
|
$return = $restrictionValue; |
927 |
softime |
2373 |
}elseif (isset($value_dossier[$restrictionValue])) { |
928 |
|
|
$return = $value_dossier[$restrictionValue]; |
929 |
softime |
2305 |
}elseif (isset($this->valF[$restrictionValue])) { |
930 |
|
|
$return = $this->valF[$restrictionValue]; |
931 |
|
|
} |
932 |
|
|
|
933 |
softime |
2373 |
// Retourne la valeur du champ |
934 |
softime |
2305 |
return $return; |
935 |
vpihour |
1137 |
} |
936 |
|
|
|
937 |
fraynaud |
123 |
function regle($regle){ |
938 |
softime |
2564 |
// Supprime tous les espaces de la chaîne de caractère |
939 |
|
|
$regle = str_replace(' ', '', $regle); |
940 |
|
|
// Coupe la chaîne au niveau des "+" |
941 |
fraynaud |
123 |
$temp = explode ("+",$regle); |
942 |
atreal |
208 |
//echo '|'.$regle; |
943 |
fraynaud |
124 |
// cas rejet |
944 |
fraynaud |
129 |
if($regle=="null") // 1 dimension -> null |
945 |
fraynaud |
124 |
return null; |
946 |
|
|
if(sizeof($temp)==1) // 1 dimension |
947 |
|
|
if($temp[0]=="archive_date_depot") // initialisation avec le depot |
948 |
fraynaud |
123 |
return $this->$regle; |
949 |
fraynaud |
124 |
else // cas general |
950 |
fraynaud |
123 |
return $this->valF[$regle]; |
951 |
fraynaud |
124 |
if(sizeof($temp)==2){ // 2 dimensions |
952 |
|
|
if($temp[0]=="archive_date_depot") //initialisation avec le depot |
953 |
fraynaud |
123 |
if(is_numeric($temp[1])) |
954 |
|
|
return $this->moisdate($this->$temp[0], $temp[1]); |
955 |
|
|
else |
956 |
|
|
return $this->moisdate($this->$temp[0], $this->valF[$temp[1]]); |
957 |
fraynaud |
124 |
if($temp[0]=="archive_delai") // majoration de delai |
958 |
|
|
return $this->valF[$temp[0]]+$this->valF[$temp[1]]; |
959 |
|
|
// cas general 2 dimensions |
960 |
fraynaud |
123 |
if(is_numeric($temp[1])) |
961 |
|
|
return $this->moisdate($this->valF[$temp[0]], $temp[1]); |
962 |
|
|
else |
963 |
|
|
return $this->moisdate($this->valF[$temp[0]], $this->valF[$temp[1]]); |
964 |
|
|
} |
965 |
fraynaud |
124 |
if(sizeof($temp)==3){ // 3 dimensions |
966 |
|
|
// cas date de validite de sursis |
967 |
|
|
if(is_numeric($temp[1])) |
968 |
|
|
$temp1 = $this->moisdate($this->valF[$temp[0]], $temp[1]); |
969 |
|
|
else |
970 |
|
|
$temp1 = $this->moisdate($this->valF[$temp[0]], $this->valF[$temp[1]]); |
971 |
|
|
if(is_numeric($temp[2])) |
972 |
|
|
return $this->moisdate($temp1, $temp[2]); |
973 |
|
|
else |
974 |
|
|
return $this->moisdate($temp1, $this->valF[$temp[2]]); |
975 |
|
|
} |
976 |
fraynaud |
123 |
} |
977 |
|
|
|
978 |
|
|
|
979 |
fmichon |
1540 |
|
980 |
fraynaud |
20 |
function triggerajouterapres($id,&$db,$val,$DEBUG) { |
981 |
fmichon |
1540 |
/** |
982 |
|
|
* Mise à jour des valeurs du dossier en fonction des valeurs calculées |
983 |
|
|
* par l'action |
984 |
|
|
*/ |
985 |
nhaye |
1724 |
$this->getValEvenement(); |
986 |
fmichon |
1540 |
// Initialisation |
987 |
|
|
$valF = ""; |
988 |
nhaye |
1741 |
// état de complétude actuel du dossier |
989 |
|
|
$incompletude = $this->dossierIncomplet(); |
990 |
|
|
|
991 |
|
|
if($incompletude === FALSE) { |
992 |
|
|
// Si l'événement d'instruction est de type incompletude |
993 |
|
|
if($this->valEvenement['type'] == "incompletude") { |
994 |
|
|
// On marque le dossier en incomplétude pour application des actions |
995 |
|
|
$incompletude = TRUE; |
996 |
|
|
// Set du flag incomplétude de la table dossier |
997 |
|
|
$valF['incompletude'] = TRUE; |
998 |
|
|
// Enregistrement de l'état dans la variable provisoire |
999 |
|
|
$valF['etat_pendant_incompletude'] = $this->valF['archive_etat']; |
1000 |
|
|
} |
1001 |
|
|
} else { |
1002 |
|
|
// Si l'evenement d'instruction est de type retour ou contient une |
1003 |
|
|
// decision, on sort d'incomplétude |
1004 |
|
|
if($this->valEvenement['type'] == "retour" OR |
1005 |
|
|
$this->valEvenement['avis_decision'] != NULL) { |
1006 |
|
|
// On enlève la marque d'incomplétude pour application des actions |
1007 |
|
|
$incompletude = FALSE; |
1008 |
|
|
// On enlève le flag d'incomplétude sur l'enregistrement de la table dossier |
1009 |
|
|
$valF['incompletude'] = FALSE; |
1010 |
|
|
// Restauration de l'état depuis l'état provisoire |
1011 |
|
|
$valF['etat'] = $this->valF['archive_etat_pendant_incompletude']; |
1012 |
|
|
// On vide la variable provisoire ainsi que le délai de complétude |
1013 |
|
|
// et la date limite de complétude |
1014 |
|
|
$valF['etat_pendant_incompletude'] = NULL; |
1015 |
|
|
$valF['delai_incompletude'] = NULL; |
1016 |
|
|
$valF['date_limite_incompletude'] = NULL; |
1017 |
|
|
} |
1018 |
|
|
} |
1019 |
fmichon |
1540 |
// Récupération des paramètres de l'action |
1020 |
|
|
$sql = "SELECT * FROM ".DB_PREFIXE."action |
1021 |
|
|
WHERE action='".$this->valF['action']."'"; |
1022 |
|
|
$res = $db->query($sql); |
1023 |
|
|
$this->addToLog("triggerajouterapres(): db->query(\"".$sql."\");", VERBOSE_MODE); |
1024 |
|
|
if (database::isError($res)) { |
1025 |
|
|
die($res->getMessage()); |
1026 |
|
|
} |
1027 |
|
|
while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC)) { |
1028 |
nhaye |
1724 |
|
1029 |
fmichon |
1540 |
// pour chacune des regles, on applique la regle |
1030 |
|
|
if($row['regle_delai']!=''){ |
1031 |
|
|
$valF['delai'] = $this->regle($row['regle_delai']); |
1032 |
|
|
} |
1033 |
|
|
if($row['regle_accord_tacite']!=''){ |
1034 |
|
|
$valF['accord_tacite'] = $this->regle($row['regle_accord_tacite']); |
1035 |
|
|
} |
1036 |
|
|
if($row['regle_avis']!=''){ |
1037 |
|
|
$valF['avis_decision'] = $this->regle($row['regle_avis']); |
1038 |
|
|
} |
1039 |
|
|
if($row['regle_date_limite']!=''){ |
1040 |
|
|
$valF['date_limite']= $this->regle($row['regle_date_limite']); |
1041 |
|
|
} |
1042 |
|
|
if($row['regle_date_complet']!=''){ |
1043 |
|
|
$valF['date_complet']= $this->regle($row['regle_date_complet']); |
1044 |
|
|
} |
1045 |
nhaye |
1571 |
if($row['regle_date_dernier_depot']!=''){ |
1046 |
|
|
$valF['date_dernier_depot']= $this->regle($row['regle_date_dernier_depot']); |
1047 |
|
|
} |
1048 |
fmichon |
1540 |
if($row['regle_date_notification_delai']!=''){ |
1049 |
|
|
$valF['date_notification_delai']= $this->regle($row['regle_date_notification_delai']); |
1050 |
|
|
} |
1051 |
|
|
if($row['regle_date_decision']!=''){ |
1052 |
|
|
$valF['date_decision']= $this->regle($row['regle_date_decision']); |
1053 |
|
|
} |
1054 |
|
|
if($row['regle_date_rejet']!=''){ |
1055 |
|
|
$valF['date_rejet']= $this->regle($row['regle_date_rejet']); |
1056 |
|
|
} |
1057 |
|
|
if($row['regle_date_validite']!=''){ |
1058 |
|
|
$valF['date_validite']= $this->regle($row['regle_date_validite']); |
1059 |
|
|
} |
1060 |
|
|
if($row['regle_date_chantier']!=''){ |
1061 |
|
|
$valF['date_chantier']= $this->regle($row['regle_date_chantier']); |
1062 |
|
|
} |
1063 |
|
|
if($row['regle_date_achevement']!=''){ |
1064 |
|
|
$valF['date_achevement']= $this->regle($row['regle_date_achevement']); |
1065 |
|
|
} |
1066 |
|
|
if($row['regle_date_conformite']!=''){ |
1067 |
|
|
$valF['date_conformite']= $this->regle($row['regle_date_conformite']); |
1068 |
|
|
} |
1069 |
nhaye |
1731 |
if($row['regle_date_limite_incompletude']!=''){ |
1070 |
|
|
$valF['date_limite_incompletude']= $this->regle($row['regle_date_limite_incompletude']); |
1071 |
|
|
} |
1072 |
|
|
if($row['regle_delai_incompletude']!=''){ |
1073 |
|
|
$valF['delai_incompletude']= $this->regle($row['regle_delai_incompletude']); |
1074 |
|
|
} |
1075 |
nhaye |
2099 |
if($row['regle_autorite_competente']!=''){ |
1076 |
|
|
$valF['autorite_competente']= $this->regle($row['regle_autorite_competente']); |
1077 |
|
|
} |
1078 |
nhaye |
1741 |
if($row['regle_etat']!=''){ |
1079 |
|
|
// Si on est dans le cas général ou qu'on est en incomplétude et |
1080 |
|
|
// qu'on a un événement de type incomplétude alors : on stocke |
1081 |
|
|
// l'état dans la variable courante |
1082 |
|
|
if ($incompletude == FALSE OR $this->valEvenement['type'] == "incompletude") { |
1083 |
|
|
$valF['etat'] = $this->regle($row['regle_etat']); |
1084 |
|
|
} else { |
1085 |
|
|
$valF['etat_pendant_incompletude'] = $this->regle($row['regle_etat']); |
1086 |
|
|
} |
1087 |
|
|
} |
1088 |
|
|
if($this->valEvenement['evenement_suivant_tacite'] != '') { |
1089 |
|
|
// Si on est pas en incomplétude on stocke l'événement tacite |
1090 |
|
|
//de l'événement dans la variable courante |
1091 |
|
|
if ($incompletude == FALSE) { |
1092 |
|
|
$valF['evenement_suivant_tacite'] = $this->valEvenement['evenement_suivant_tacite']; |
1093 |
|
|
} else { |
1094 |
|
|
$valF['evenement_suivant_tacite_incompletude'] = $this->valEvenement['evenement_suivant_tacite']; |
1095 |
|
|
} |
1096 |
|
|
} |
1097 |
fmichon |
1540 |
} |
1098 |
|
|
// Si des valeurs ont été calculées alors on met à jour l'enregistrement |
1099 |
|
|
if ($valF != "") { |
1100 |
|
|
// On met à jour le dossier |
1101 |
|
|
$cle = " dossier='".$this->valF['dossier']."'"; |
1102 |
|
|
$res1 = $db->autoExecute(DB_PREFIXE.'dossier', $valF, DB_AUTOQUERY_UPDATE, $cle); |
1103 |
|
|
$this->addToLog("triggerajouterapres(): db->autoexecute(\"".DB_PREFIXE."dossier\", ".print_r($valF, true).", DB_AUTOQUERY_UPDATE, \"".$cle."\");", VERBOSE_MODE); |
1104 |
|
|
if (database::isError($res1)) { |
1105 |
fraynaud |
20 |
die($res->getMessage()); |
1106 |
fmichon |
1540 |
} |
1107 |
|
|
// Affichage d'informations à l'utilisateur |
1108 |
|
|
$this->addToMessage(_('enregistrement')." ".$this->valF['dossier']." "._('table')." dossier [".$db->affectedRows()." "._('enregistrement')." "._('mis_a_jour')."]"); |
1109 |
fraynaud |
20 |
} |
1110 |
fmichon |
1540 |
|
1111 |
|
|
/** |
1112 |
|
|
* REFERENTIEL ERP |
1113 |
|
|
*/ |
1114 |
fmichon |
1005 |
// verification si envoi vers ERP est active |
1115 |
|
|
if ($this->f->getParameter('option_erp') != "") { |
1116 |
|
|
// la nature du dossier |
1117 |
|
|
$nature_dossier = substr($this->idxformulaire,0,2); |
1118 |
fmichon |
1540 |
// |
1119 |
|
|
$sql = "SELECT erp |
1120 |
|
|
FROM ".DB_PREFIXE."dossier |
1121 |
|
|
WHERE dossier='".$this->valF['dossier']."'"; |
1122 |
|
|
$dossier_erp = $this->db->getone($sql); |
1123 |
|
|
$this->addToLog("triggerajouterapres(): db->getone(\"".$sql."\");", VERBOSE_MODE); |
1124 |
|
|
if (database::isError($res)) { |
1125 |
|
|
die($res->getMessage()); |
1126 |
|
|
} |
1127 |
|
|
// |
1128 |
|
|
$sql = "SELECT libelle |
1129 |
|
|
FROM ".DB_PREFIXE."evenement |
1130 |
|
|
WHERE evenement='".$this->valF['evenement']."'"; |
1131 |
|
|
$evenement_libelle = $this->db->getone($sql); |
1132 |
|
|
$this->addToLog("triggerajouterapres(): db->getone(\"".$sql."\");", VERBOSE_MODE); |
1133 |
|
|
if (database::isError($res)) { |
1134 |
|
|
die($res->getMessage()); |
1135 |
|
|
} |
1136 |
|
|
// |
1137 |
fmichon |
1005 |
if ($dossier_erp == 't') { |
1138 |
|
|
// envoi du message en cas d'un PC qui est ERP et sur lequel un evenement |
1139 |
|
|
// d'acceptation etait fait |
1140 |
|
|
if ($nature_dossier == |
1141 |
|
|
$this->f->getParameter('erp_evenement_accepter_dossier_PC') |
1142 |
|
|
&& $this->valF['evenement'] == |
1143 |
|
|
$this->f->getParameter('erp_evenement_accepter_sans_reserve')) { |
1144 |
|
|
$msgenque = new MessageEnqueuer(); |
1145 |
|
|
$msgenque->setDossierInstructionIdentifier($this->valF['dossier']); |
1146 |
|
|
$msgenque->setDecision($evenement_libelle); |
1147 |
|
|
$msgenque->enqueueMessage($msgenque::$ERP_ARRETE_PC_EFFECTUE); |
1148 |
|
|
} |
1149 |
|
|
if ($this->valF['evenement'] == |
1150 |
|
|
$this->f->getParameter('erp_evenement_refuser_dossier')) { |
1151 |
|
|
$msgenque = new MessageEnqueuer(); |
1152 |
|
|
$msgenque->setDossierInstructionIdentifier($this->valF['dossier']); |
1153 |
|
|
$msgenque->enqueueMessage($msgenque::$ERP_DECISION_CONFORMITE_EFFECTUE); |
1154 |
|
|
} |
1155 |
mlimic |
936 |
} |
1156 |
fmichon |
1005 |
} // fin de if ($this->f->getParameter('option_erp') != "") |
1157 |
nhaye |
1643 |
|
1158 |
|
|
// Mise à jour des données du dossier d'autorisation |
1159 |
|
|
require_once "../obj/dossier_autorisation.class.php"; |
1160 |
softime |
2025 |
$da = new dossier_autorisation($this->getNumDemandeAutorFromDossier($this->valF['dossier']), $this->db, DEBUG); |
1161 |
nhaye |
1643 |
$da->majDossierAutorisation(); |
1162 |
fmichon |
1540 |
} |
1163 |
softime |
2030 |
|
1164 |
fraynaud |
129 |
function triggermodifierapres($id,&$db,$val,$DEBUG) { |
1165 |
fmichon |
1540 |
/** |
1166 |
|
|
* L'objectif ici est d'effectuer les recalculs de date dans le dossier |
1167 |
|
|
* si la date de l'evenement est modifiee |
1168 |
|
|
*/ |
1169 |
|
|
// Initialisation |
1170 |
|
|
$valF = ""; |
1171 |
nhaye |
2561 |
// Initialisation du type d'événement |
1172 |
|
|
$type_evmt = ""; |
1173 |
fmichon |
1540 |
// Récupération de l'action correspondante à l'événement |
1174 |
|
|
$sql = "SELECT action |
1175 |
|
|
FROM ".DB_PREFIXE."evenement |
1176 |
|
|
WHERE evenement=".$this->valF['evenement']; |
1177 |
fraynaud |
129 |
$action = $db->getOne($sql); |
1178 |
fmichon |
1540 |
$this->addToLog("triggermodifierapres(): db->getone(\"".$sql."\");", VERBOSE_MODE); |
1179 |
|
|
if (database::isError($action)) { |
1180 |
|
|
die($action->getMessage()); |
1181 |
|
|
} |
1182 |
nhaye |
1564 |
|
1183 |
fmichon |
1540 |
// Récupération des paramètres de l'action |
1184 |
|
|
$sql = "SELECT * FROM ".DB_PREFIXE."action |
1185 |
|
|
WHERE action='".$action."'"; |
1186 |
fraynaud |
129 |
$res = $db->query($sql); |
1187 |
fmichon |
1540 |
$this->addToLog("triggermodifierapres(): db->query(\"".$sql."\");", VERBOSE_MODE); |
1188 |
|
|
if (database::isError($res)) { |
1189 |
|
|
die($res->getMessage()); |
1190 |
|
|
} |
1191 |
fraynaud |
129 |
while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC)){ |
1192 |
|
|
// application des regles sur le courrier + delai |
1193 |
vpihour |
1127 |
if(preg_match("/date_evenement/",$row['regle_date_limite'])){ |
1194 |
fraynaud |
129 |
$valF['date_limite']= $this->regle($row['regle_date_limite']); |
1195 |
|
|
} |
1196 |
vpihour |
1127 |
if(preg_match("/date_evenement/",$row['regle_date_complet'])){ |
1197 |
fraynaud |
129 |
$valF['date_complet']= $this->regle($row['regle_date_complet']); |
1198 |
|
|
} |
1199 |
nhaye |
1571 |
if(preg_match("/date_evenement/",$row['regle_date_dernier_depot'])){ |
1200 |
|
|
$valF['date_dernier_depot']= $this->regle($row['regle_date_dernier_depot']); |
1201 |
|
|
} |
1202 |
vpihour |
1127 |
if(preg_match("/date_evenement/",$row['regle_date_notification_delai'])){ |
1203 |
fraynaud |
129 |
$valF['date_notification_delai']= $this->regle($row['regle_date_notification_delai']); |
1204 |
|
|
} |
1205 |
vpihour |
1127 |
if(preg_match("/date_evenement/",$row['regle_date_decision'])){ |
1206 |
fraynaud |
129 |
$valF['date_decision']= $this->regle($row['regle_date_decision']); |
1207 |
|
|
} |
1208 |
vpihour |
1127 |
if(preg_match("/date_evenement/",$row['regle_date_rejet'])){ |
1209 |
fraynaud |
129 |
$valF['date_rejet']= $this->regle($row['regle_date_rejet']); |
1210 |
|
|
} |
1211 |
vpihour |
1127 |
if(preg_match("/date_evenement/",$row['regle_date_validite'])){ |
1212 |
fraynaud |
129 |
$valF['date_validite']= $this->regle($row['regle_date_validite']); |
1213 |
|
|
} |
1214 |
vpihour |
1127 |
if(preg_match("/date_evenement/",$row['regle_date_chantier'])){ |
1215 |
fraynaud |
129 |
$valF['date_chantier']= $this->regle($row['regle_date_chantier']); |
1216 |
|
|
} |
1217 |
vpihour |
1127 |
if(preg_match("/date_evenement/",$row['regle_date_achevement'])){ |
1218 |
fraynaud |
129 |
$valF['date_achevement']= $this->regle($row['regle_date_achevement']); |
1219 |
|
|
} |
1220 |
vpihour |
1127 |
if(preg_match("/date_evenement/",$row['regle_date_conformite'])){ |
1221 |
fraynaud |
129 |
$valF['date_conformite']= $this->regle($row['regle_date_conformite']); |
1222 |
|
|
} |
1223 |
fmichon |
1540 |
} |
1224 |
|
|
// Si des valeurs ont été calculées alors on met à jour l'enregistrement |
1225 |
|
|
if ($valF != "") { |
1226 |
|
|
// On met à jour le dossier |
1227 |
|
|
$cle = " dossier='".$this->valF['dossier']."'"; |
1228 |
|
|
$res1 = $db->autoExecute(DB_PREFIXE.'dossier', $valF, DB_AUTOQUERY_UPDATE, $cle); |
1229 |
softime |
2562 |
$this->addToLog("triggermodifierapres(): db->autoexecute(\"".DB_PREFIXE."dossier\", ".print_r($valF, true).", DB_AUTOQUERY_UPDATE, \"".$cle."\");", VERBOSE_MODE); |
1230 |
fmichon |
1540 |
if (database::isError($res1)) { |
1231 |
fraynaud |
129 |
die($res->getMessage()); |
1232 |
fmichon |
1540 |
} |
1233 |
|
|
// Affichage d'informations à l'utilisateur |
1234 |
|
|
$this->addToMessage(_('enregistrement')." ".$this->valF['dossier']." "._('table')." dossier [".$db->affectedRows()." "._('enregistrement')." "._('mis_a_jour')."]"); |
1235 |
fraynaud |
129 |
} |
1236 |
nhaye |
1299 |
|
1237 |
softime |
2562 |
// Récupération de tous les paramètres de l'événement sélectionné |
1238 |
|
|
$sql = "SELECT * FROM ".DB_PREFIXE."evenement |
1239 |
|
|
WHERE evenement=".$this->valF['evenement']; |
1240 |
|
|
$res = $db->query($sql); |
1241 |
|
|
$this->addToLog("triggermodifierapres(): db->query(\"".$sql."\");", VERBOSE_MODE); |
1242 |
|
|
if (database::isError($res)) { |
1243 |
|
|
die($res->getMessage()); |
1244 |
|
|
} |
1245 |
|
|
while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC)) { |
1246 |
|
|
// Si la date de retour signature est éditée on vérifie si il existe un événement automatique |
1247 |
|
|
if ($this->getVal('date_retour_signature') == "" AND |
1248 |
|
|
$this->valF['date_retour_signature'] != "" AND |
1249 |
|
|
$row['evenement_retour_signature'] != "") { |
1250 |
|
|
$new_instruction = new instruction("]", $db, $DEBUG); |
1251 |
|
|
// Création d'un tableau avec la liste des champs de l'instruction |
1252 |
|
|
foreach($new_instruction->champs as $champ) { |
1253 |
|
|
$valNewInstr[$champ] = ""; |
1254 |
|
|
} |
1255 |
|
|
// Définition des valeurs de la nouvelle instruction |
1256 |
|
|
$valNewInstr["evenement"] = $row['evenement_retour_signature']; |
1257 |
|
|
$valNewInstr["destinataire"] = $this->valF['destinataire']; |
1258 |
|
|
$valNewInstr["dossier"] = $this->valF['dossier']; |
1259 |
|
|
$valNewInstr["date_evenement"] = date("d/m/Y"); |
1260 |
|
|
$valNewInstr["date_envoi_signature"] = $this->f->formatDate($this->valF['date_envoi_signature']); |
1261 |
|
|
$valNewInstr["date_retour_signature"] = $this->f->formatDate($this->valF['date_retour_signature']); |
1262 |
|
|
$valNewInstr["date_envoi_rar"] = $this->f->formatDate($this->valF['date_envoi_rar']); |
1263 |
|
|
$valNewInstr["date_retour_rar"] = $this->f->formatDate($this->valF['date_retour_rar']); |
1264 |
|
|
$valNewInstr["date_envoi_controle_legalite"] = $this->f->formatDate($this->valF['date_envoi_controle_legalite']); |
1265 |
|
|
$valNewInstr["date_retour_controle_legalite"] = $this->f->formatDate($this->valF['date_retour_controle_legalite']); |
1266 |
|
|
$new_instruction->ajouter($valNewInstr,$db, $DEBUG); |
1267 |
|
|
} |
1268 |
|
|
// Si la date de retour AR est éditée on vérifie si il existe un événement automatique |
1269 |
|
|
if ($this->getVal('date_retour_rar') == "" AND |
1270 |
|
|
$this->valF['date_retour_rar'] != "" AND |
1271 |
|
|
$row['evenement_retour_ar'] != "" ) { |
1272 |
|
|
$new_instruction = new instruction("]", $db, $DEBUG); |
1273 |
|
|
// Création d'un tableau avec la liste des champs de l'instruction |
1274 |
|
|
foreach($new_instruction->champs as $champ) { |
1275 |
|
|
$valNewInstr[$champ] = ""; |
1276 |
|
|
} |
1277 |
|
|
// Définition des valeurs de la nouvelle instruction |
1278 |
|
|
$valNewInstr["evenement"] = $row['evenement_retour_ar']; |
1279 |
|
|
$valNewInstr["destinataire"] = $this->valF['destinataire']; |
1280 |
|
|
$valNewInstr["dossier"] = $this->valF['dossier']; |
1281 |
|
|
$valNewInstr["date_evenement"] = date("d/m/Y"); |
1282 |
|
|
$valNewInstr["date_envoi_signature"] = $this->f->formatDate($this->valF['date_envoi_signature']); |
1283 |
|
|
$valNewInstr["date_retour_signature"] = $this->f->formatDate($this->valF['date_retour_signature']); |
1284 |
|
|
$valNewInstr["date_envoi_rar"] = $this->f->formatDate($this->valF['date_envoi_rar']); |
1285 |
|
|
$valNewInstr["date_retour_rar"] = $this->f->formatDate($this->valF['date_retour_rar']); |
1286 |
|
|
$valNewInstr["date_envoi_controle_legalite"] = $this->f->formatDate($this->valF['date_envoi_controle_legalite']); |
1287 |
|
|
$valNewInstr["date_retour_controle_legalite"] = $this->f->formatDate($this->valF['date_retour_controle_legalite']); |
1288 |
|
|
$new_instruction->ajouter($valNewInstr,$db, $DEBUG); |
1289 |
|
|
} |
1290 |
|
|
} |
1291 |
|
|
|
1292 |
fmichon |
1540 |
/** |
1293 |
|
|
* REFERENTIEL ARRETE |
1294 |
|
|
*/ |
1295 |
nhaye |
2561 |
// Si l'option référentiel arrêté est activé et l'événement est de type |
1296 |
|
|
// arrêté |
1297 |
|
|
if ($this->f->getParameter('option_referentiel_arrete') != "" AND |
1298 |
|
|
$type_evmt == "arrete") { |
1299 |
fmichon |
1540 |
if ($this->valF['date_retour_signature'] != $this->getVal('date_retour_signature')) { |
1300 |
|
|
$msgenque = new MessageEnqueuer(); |
1301 |
|
|
$sqlArrete = "SELECT instruction.signataire_arrete as \"ws_DA_In_Signataire\", |
1302 |
|
|
signataire_arrete.nom as \"ws_DA_In_Sign_Nom\", |
1303 |
|
|
signataire_arrete.prenom as \"ws_DA_In_Sign_Prenom\", |
1304 |
|
|
signataire_arrete.qualite as \"ws_DA_In_Sign_Qualite\", |
1305 |
|
|
instruction.date_evenement as \"ws_DA_In_Dte_Redac\", |
1306 |
|
|
'' as \"ws_DA_In_lieu_Redac\", |
1307 |
|
|
instruction.dossier as \"ws_DA_In_N_Doss_DAS\", |
1308 |
|
|
'' as \"ws_DA_In_Sigle\", |
1309 |
|
|
instruction.etat as \"ws_DA_In_Decision\", |
1310 |
|
|
dossier.date_depot as \"ws_DA_In_Dte_Depot_Dem\", |
1311 |
nhaye |
2561 |
dossier.terrain_adresse_voie_numero as \"ws_DA_In_N_Voie\", |
1312 |
fmichon |
1540 |
'' as \"ws_DA_In_Type_Voie\", |
1313 |
softime |
2061 |
dossier.terrain_adresse_voie as \"ws_DA_In_Adresse1\", |
1314 |
fmichon |
1540 |
dossier.terrain_adresse_lieu_dit as \"ws_DA_In_Adresse2\", |
1315 |
|
|
dossier.terrain_adresse_code_postal as \"ws_DA_In_CP\", |
1316 |
|
|
dossier.terrain_adresse_localite as \"ws_DA_In_Ville\", |
1317 |
|
|
dossier.terrain_references_cadastrales as \"ws_DA_In_Nb_Parcelle\", |
1318 |
|
|
'' as \"ws_DA_In_Detail_Parcelle\", |
1319 |
|
|
CONCAT(donnees_techniques.am_projet_desc,' ',donnees_techniques.co_projet_desc) as \"ws_DA_In_Nature_Trvx\", |
1320 |
|
|
'' as \"ws_DA_In_Destination_Trvx\", |
1321 |
|
|
dossier_autorisation_type_detaille.code as \"ws_DA_In_Type_Dos_Autoris\", |
1322 |
|
|
COALESCE(particulier_nom,personne_morale_raison_sociale) as \"ws_DA_In_Nom_Petition\", |
1323 |
|
|
COALESCE(particulier_prenom, personne_morale_denomination) as \"ws_DA_In_Prenom_Petition\", |
1324 |
|
|
'' as \"ws_DA_In_Piece_GED\", |
1325 |
|
|
instruction.date_retour_signature as \"ws_DA_In_Dte_Signature\" |
1326 |
|
|
FROM ".DB_PREFIXE."instruction |
1327 |
|
|
LEFT JOIN ".DB_PREFIXE."signataire_arrete ON |
1328 |
|
|
instruction.signataire_arrete = signataire_arrete.signataire_arrete |
1329 |
|
|
LEFT JOIN ".DB_PREFIXE."dossier ON |
1330 |
|
|
instruction.dossier = dossier.dossier |
1331 |
|
|
LEFT JOIN ".DB_PREFIXE."lien_dossier_demandeur ON |
1332 |
|
|
lien_dossier_demandeur.dossier = dossier.dossier |
1333 |
|
|
LEFT JOIN ".DB_PREFIXE."demandeur ON |
1334 |
|
|
lien_dossier_demandeur.demandeur = demandeur.demandeur |
1335 |
|
|
LEFT JOIN ".DB_PREFIXE."dossier_instruction_type ON |
1336 |
|
|
dossier.dossier_instruction_type = dossier_instruction_type.dossier_instruction_type |
1337 |
|
|
LEFT JOIN ".DB_PREFIXE."dossier_autorisation_type_detaille ON |
1338 |
|
|
dossier_instruction_type.dossier_autorisation_type_detaille = |
1339 |
|
|
dossier_autorisation_type_detaille.dossier_autorisation_type_detaille |
1340 |
|
|
LEFT JOIN ".DB_PREFIXE."donnees_techniques ON |
1341 |
|
|
donnees_techniques.dossier_instruction = dossier.dossier |
1342 |
|
|
WHERE instruction.instruction = ".$this->valF['instruction']; |
1343 |
|
|
$resArrete = $this->db->query($sqlArrete); |
1344 |
softime |
2562 |
$this->f->addToLog("triggermodifierapres(): db->query(\"".$sqlArrete."\");", VERBOSE_MODE); |
1345 |
vpihour |
1777 |
if ( database::isError($resArrete)){ |
1346 |
|
|
die(); |
1347 |
|
|
} |
1348 |
fmichon |
1540 |
|
1349 |
|
|
$rowArrete = $resArrete->fetchRow(DB_FETCHMODE_ASSOC); |
1350 |
|
|
$msgenque->setArreteInfo($rowArrete); |
1351 |
|
|
$msgenque->enqueueMessage($msgenque::$ARRETE_ENVOI); |
1352 |
|
|
} |
1353 |
nhaye |
1299 |
} |
1354 |
nhaye |
1643 |
|
1355 |
|
|
// Mise à jour des données du dossier d'autorisation |
1356 |
|
|
require_once "../obj/dossier_autorisation.class.php"; |
1357 |
softime |
2025 |
$da = new dossier_autorisation($this->getNumDemandeAutorFromDossier($this->valF['dossier']), $this->db, DEBUG); |
1358 |
nhaye |
1643 |
$da->majDossierAutorisation(); |
1359 |
fraynaud |
129 |
} |
1360 |
|
|
|
1361 |
fraynaud |
20 |
function triggersupprimer($id,&$db,$val,$DEBUG) { |
1362 |
fmichon |
1540 |
/** |
1363 |
|
|
* L'objectif ici est de repositionner les valeurs récupérées en |
1364 |
|
|
* archive dans le dossier d'instruction avant de supprimer l'événement |
1365 |
|
|
* d'instruction |
1366 |
|
|
*/ |
1367 |
vpihour |
2603 |
|
1368 |
|
|
// Mise à jour des 4 valeurs modifiées par l'action |
1369 |
|
|
$valF['delai'] = $val['archive_delai']; |
1370 |
|
|
$valF['accord_tacite'] = $val['archive_accord_tacite']; |
1371 |
|
|
$valF['etat'] = $val['archive_etat']; |
1372 |
|
|
if ($val['archive_avis'] != '') { |
1373 |
|
|
$valF['avis_decision'] = $val['archive_avis']; |
1374 |
|
|
} else { |
1375 |
|
|
$valF['avis_decision'] = NULL; |
1376 |
|
|
} |
1377 |
|
|
// Mise à jour des 10 dates avec la valeur présente dans le formulaire |
1378 |
|
|
// de suppression. Si la valeur de la date est vide alors on fixe |
1379 |
|
|
// à la valeur NULL |
1380 |
|
|
// |
1381 |
|
|
if ($val['archive_date_complet'] != '') { |
1382 |
|
|
$valF['date_complet'] = $val['archive_date_complet']; |
1383 |
|
|
} else { |
1384 |
|
|
$valF['date_complet'] = NULL; |
1385 |
|
|
} |
1386 |
|
|
if ($val['archive_date_dernier_depot'] != '') { |
1387 |
|
|
$valF['date_dernier_depot'] = $val['archive_date_dernier_depot']; |
1388 |
|
|
} else { |
1389 |
|
|
$valF['date_dernier_depot'] = NULL; |
1390 |
|
|
} |
1391 |
|
|
if ($val['archive_date_rejet'] != '') { |
1392 |
|
|
$valF['date_rejet'] = $val['archive_date_rejet']; |
1393 |
|
|
} else { |
1394 |
|
|
$valF['date_rejet'] = NULL; |
1395 |
|
|
} |
1396 |
|
|
if ($val['archive_date_limite'] != '') { |
1397 |
|
|
$valF['date_limite'] = $val['archive_date_limite']; |
1398 |
|
|
} else { |
1399 |
|
|
$valF['date_limite'] = NULL; |
1400 |
|
|
} |
1401 |
|
|
if ($val['archive_date_notification_delai'] != '') { |
1402 |
|
|
$valF['date_notification_delai'] = $val['archive_date_notification_delai']; |
1403 |
|
|
} else { |
1404 |
|
|
$valF['date_notification_delai'] = NULL; |
1405 |
|
|
} |
1406 |
|
|
if ($val['archive_date_decision'] != '') { |
1407 |
|
|
$valF['date_decision'] = $val['archive_date_decision']; |
1408 |
|
|
} else { |
1409 |
|
|
$valF['date_decision'] = NULL; |
1410 |
|
|
} |
1411 |
|
|
if ($val['archive_date_validite'] != '') { |
1412 |
|
|
$valF['date_validite'] = $val['archive_date_validite']; |
1413 |
|
|
} else { |
1414 |
|
|
$valF['date_validite'] = NULL; |
1415 |
|
|
} |
1416 |
|
|
if ($val['archive_date_achevement'] != '') { |
1417 |
|
|
$valF['date_achevement'] = $val['archive_date_achevement']; |
1418 |
|
|
} else { |
1419 |
|
|
$valF['date_achevement'] = NULL; |
1420 |
|
|
} |
1421 |
|
|
if ($val['archive_date_chantier'] != '') { |
1422 |
|
|
$valF['date_chantier'] = $val['archive_date_chantier']; |
1423 |
|
|
} else { |
1424 |
|
|
$valF['date_chantier'] = NULL; |
1425 |
|
|
} |
1426 |
|
|
if ($val['archive_date_conformite'] != '') { |
1427 |
|
|
$valF['date_conformite'] = $val['archive_date_conformite']; |
1428 |
|
|
} else { |
1429 |
|
|
$valF['date_conformite'] = NULL; |
1430 |
|
|
} |
1431 |
|
|
if ($val['archive_incompletude'] != '') { |
1432 |
|
|
$valF['incompletude'] = $val['archive_incompletude']; |
1433 |
|
|
} else { |
1434 |
|
|
$valF['incompletude'] = NULL; |
1435 |
|
|
} |
1436 |
|
|
if ($val['archive_evenement_suivant_tacite'] != '') { |
1437 |
|
|
$valF['evenement_suivant_tacite'] = $val['archive_evenement_suivant_tacite']; |
1438 |
|
|
} else { |
1439 |
|
|
$valF['evenement_suivant_tacite'] = NULL; |
1440 |
|
|
} |
1441 |
|
|
if ($val['archive_evenement_suivant_tacite_incompletude'] != '') { |
1442 |
|
|
$valF['evenement_suivant_tacite_incompletude'] = $val['archive_evenement_suivant_tacite_incompletude']; |
1443 |
|
|
} else { |
1444 |
|
|
$valF['evenement_suivant_tacite_incompletude'] = NULL; |
1445 |
|
|
} |
1446 |
|
|
if ($val['archive_etat_pendant_incompletude'] != '') { |
1447 |
|
|
$valF['etat_pendant_incompletude'] = $val['archive_etat_pendant_incompletude']; |
1448 |
|
|
} else { |
1449 |
|
|
$valF['etat_pendant_incompletude'] = NULL; |
1450 |
|
|
} |
1451 |
|
|
if ($val['archive_date_limite_incompletude'] != '') { |
1452 |
|
|
$valF['date_limite_incompletude'] = $val['archive_date_limite_incompletude']; |
1453 |
|
|
} else { |
1454 |
|
|
$valF['date_limite_incompletude'] = NULL; |
1455 |
|
|
} |
1456 |
|
|
if ($val['archive_delai_incompletude'] != '') { |
1457 |
|
|
$valF['delai_incompletude'] = $val['archive_delai_incompletude']; |
1458 |
|
|
} else { |
1459 |
|
|
$valF['delai_incompletude'] = NULL; |
1460 |
|
|
} |
1461 |
|
|
if ($val['archive_autorite_competente'] != '') { |
1462 |
|
|
$valF['autorite_competente'] = $val['archive_autorite_competente']; |
1463 |
|
|
} else { |
1464 |
|
|
$valF['autorite_competente'] = NULL; |
1465 |
|
|
} |
1466 |
|
|
// On met à jour le dossier |
1467 |
|
|
$cle = " dossier='".$val['dossier']."'"; |
1468 |
|
|
$res = $db->autoExecute(DB_PREFIXE.'dossier', $valF, DB_AUTOQUERY_UPDATE, $cle); |
1469 |
|
|
$this->addToLog("triggersupprimer(): db->autoexecute(\"".DB_PREFIXE."dossier\", ".print_r($valF, true).", DB_AUTOQUERY_UPDATE, \"".$cle."\");", VERBOSE_MODE); |
1470 |
|
|
if (database::isError($res)) { |
1471 |
|
|
die($res->getMessage()); |
1472 |
|
|
} |
1473 |
|
|
// Affichage d'informations à l'utilisateur |
1474 |
|
|
$this->addToMessage(_("Suppression de l'instruction")." [".$db->affectedRows()." "._('enregistrement')." "._('mis_a_jour')."]"); |
1475 |
|
|
|
1476 |
|
|
// Mise à jour de la demande si un récépissé d'instruction correspond à l'instruction à supprimer |
1477 |
fraynaud |
20 |
} |
1478 |
fmichon |
1540 |
|
1479 |
nhaye |
1643 |
function triggersupprimerapres($id,&$db,$val,$DEBUG) { |
1480 |
|
|
|
1481 |
|
|
// Mise à jour des données du dossier d'autorisation |
1482 |
|
|
require_once "../obj/dossier_autorisation.class.php"; |
1483 |
softime |
2025 |
$da = new dossier_autorisation($this->getNumDemandeAutorFromDossier($val["dossier"]), $this->db, DEBUG); |
1484 |
nhaye |
1643 |
$da->majDossierAutorisation(); |
1485 |
|
|
} |
1486 |
|
|
|
1487 |
fraynaud |
20 |
// ============================================= |
1488 |
|
|
// calcul de date avec ajout de mois (delais) |
1489 |
|
|
// [add months (delay) and calculation final date] |
1490 |
|
|
// LIMITE DE LA FONCTION si delai >24 MOIS |
1491 |
|
|
// [limit : delay < 24 month] |
1492 |
|
|
// ============================================= |
1493 |
|
|
function moisdate($date,$delaimois) { |
1494 |
|
|
$temp = explode("-" , $date); |
1495 |
|
|
$jour = (int) $temp[2]; |
1496 |
|
|
$mois = (int) $temp[1]; |
1497 |
|
|
$annee = (int) $temp[0]; |
1498 |
|
|
// calcul si delai superieur à 12 (limite 24) [delay > 24 month] |
1499 |
|
|
if($delaimois>=12){ |
1500 |
|
|
$delaimois=$delaimois-12; |
1501 |
|
|
$annee=$annee+1; |
1502 |
|
|
} |
1503 |
|
|
if($delaimois>=12){ |
1504 |
|
|
$delaimois=$delaimois-12; |
1505 |
|
|
$annee=$annee+1; |
1506 |
|
|
} |
1507 |
|
|
// mois |
1508 |
|
|
$mois=$mois+$delaimois; |
1509 |
|
|
// calcul mois annee [calculation number of years if > 12 month] |
1510 |
|
|
// nb de mois > à 12 |
1511 |
|
|
if ($mois>12){ |
1512 |
|
|
$mois=$mois-12; |
1513 |
|
|
$annee=$annee+1; |
1514 |
|
|
} |
1515 |
|
|
// Calcul du nombre de jours dans le mois sélectionné [calculation number of days] |
1516 |
|
|
switch($mois) { |
1517 |
|
|
case "2": |
1518 |
|
|
if ($annee % 4 == 0 && $annee % 100 != 0 || $annee % 400 == 0) |
1519 |
|
|
$jourmax = 29; |
1520 |
|
|
else |
1521 |
|
|
$jourmax = 28; |
1522 |
|
|
break; |
1523 |
|
|
case "4": |
1524 |
|
|
case "6": |
1525 |
|
|
case "9": |
1526 |
|
|
case "11": |
1527 |
|
|
$jourmax = 30; |
1528 |
|
|
break; |
1529 |
|
|
default: |
1530 |
|
|
$jourmax = 31; |
1531 |
|
|
} |
1532 |
|
|
if ($jour > $jourmax) |
1533 |
|
|
$jour = $jourmax; |
1534 |
|
|
//$dateretour=$annee."-".$mois."-".$jour; |
1535 |
|
|
return $annee."-".$mois."-".$jour ; |
1536 |
|
|
} |
1537 |
|
|
|
1538 |
vpihour |
1137 |
// Vérifie la restriction sur l'événement |
1539 |
|
|
function verifier($val = array(), &$db, $DEBUG){ |
1540 |
nhaye |
1186 |
parent::verifier($val, $db, $DEBUG); |
1541 |
vpihour |
1784 |
|
1542 |
|
|
if ( isset($val['evenement']) && is_numeric($val['evenement'])){ |
1543 |
nhaye |
2412 |
//Récupère la restriction |
1544 |
vpihour |
1784 |
$sql= "SELECT |
1545 |
|
|
restriction |
1546 |
|
|
FROM |
1547 |
|
|
".DB_PREFIXE."evenement |
1548 |
|
|
WHERE |
1549 |
|
|
evenement =".$val['evenement']; |
1550 |
|
|
|
1551 |
|
|
$res = $db->query($sql); |
1552 |
|
|
$this->addToLog("verifier(): db->query(\"".$sql."\");", VERBOSE_MODE); |
1553 |
|
|
if (database::isError($res)) { |
1554 |
|
|
die($res->getMessage()); |
1555 |
|
|
} |
1556 |
|
|
$row=& $res->fetchRow(DB_FETCHMODE_ASSOC); |
1557 |
|
|
|
1558 |
|
|
//Test qu'une restriction est présente |
1559 |
|
|
if ( isset($row['restriction']) && $row['restriction'] != "" ){ |
1560 |
softime |
2305 |
|
1561 |
|
|
$restriction = $row['restriction']; |
1562 |
vpihour |
1137 |
|
1563 |
vpihour |
1784 |
//Test si la restriction est valide |
1564 |
softime |
2305 |
if ( !$this->restrictionIsValid($restriction) ){ |
1565 |
vpihour |
1784 |
|
1566 |
|
|
$this->correct=false; |
1567 |
|
|
$this->addToMessage(_("Restriction non valide")); |
1568 |
|
|
} |
1569 |
|
|
else { |
1570 |
|
|
|
1571 |
|
|
$this->correct = true; |
1572 |
|
|
} |
1573 |
softime |
2305 |
|
1574 |
|
|
// Liste des opérateurs possible |
1575 |
|
|
$operateurs = array(">=", "<=", "+", "-"); |
1576 |
|
|
|
1577 |
|
|
// Supprime tous les espaces de la chaîne de caractère |
1578 |
|
|
$restriction = str_replace(' ', '', $restriction); |
1579 |
|
|
|
1580 |
|
|
// Met des espace avant et après les opérateurs puis transforme la |
1581 |
|
|
// chaine en un tableau |
1582 |
|
|
$tabRestriction = str_replace($operateurs, " ", $restriction); |
1583 |
|
|
// Tableau des champ |
1584 |
|
|
$tabRestriction = explode(" ", $tabRestriction); |
1585 |
|
|
// Supprime les numériques du tableau |
1586 |
|
|
foreach ($tabRestriction as $key => $value) { |
1587 |
|
|
if (is_numeric($value)) { |
1588 |
|
|
unset($tabRestriction[$key]); |
1589 |
|
|
} |
1590 |
|
|
} |
1591 |
|
|
|
1592 |
|
|
// Vérifie les champs utilisés pour la restriction |
1593 |
|
|
$check_field_exist = $this->f->check_field_exist($tabRestriction, 'instruction'); |
1594 |
|
|
if ($check_field_exist !== true) { |
1595 |
|
|
|
1596 |
|
|
// Liste des champs en erreur |
1597 |
|
|
$string_error_fields = implode(", ", $check_field_exist); |
1598 |
|
|
|
1599 |
|
|
// Message d'erreur |
1600 |
|
|
$error_message = _("Le champ %s n'est pas utilisable pour le champ %s"); |
1601 |
|
|
if (count($check_field_exist) > 1) { |
1602 |
|
|
$error_message = _("Les champs %s ne sont pas utilisable pour le champ %s"); |
1603 |
|
|
} |
1604 |
|
|
|
1605 |
|
|
// Affiche l'erreur |
1606 |
|
|
$this->correct=false; |
1607 |
|
|
$this->addToMessage(sprintf($error_message, $string_error_fields, _("restriction"))); |
1608 |
|
|
$this->addToMessage(_("Veuillez contacter votre administrateur.")); |
1609 |
|
|
} |
1610 |
vpihour |
1137 |
} |
1611 |
softime |
2305 |
|
1612 |
vpihour |
1137 |
} |
1613 |
nhaye |
2412 |
if(!$this->updateDate("date_envoi_signature")) { |
1614 |
|
|
return false; |
1615 |
|
|
} |
1616 |
|
|
if(!$this->updateDate("date_retour_signature")) { |
1617 |
|
|
return false; |
1618 |
|
|
} |
1619 |
|
|
if(!$this->updateDate("date_envoi_rar")) { |
1620 |
|
|
return false; |
1621 |
|
|
} |
1622 |
|
|
if(!$this->updateDate("date_retour_rar")) { |
1623 |
|
|
return false; |
1624 |
|
|
} |
1625 |
|
|
if(!$this->updateDate("date_envoi_controle_legalite")) { |
1626 |
|
|
return false; |
1627 |
|
|
} |
1628 |
|
|
if(!$this->updateDate("date_retour_controle_legalite")) { |
1629 |
|
|
return false; |
1630 |
|
|
} |
1631 |
vpihour |
1921 |
|
1632 |
vpihour |
1137 |
} |
1633 |
vpihour |
1284 |
|
1634 |
nhaye |
1724 |
/** |
1635 |
|
|
* Méthode permettant de récupérer toutes les valeurs de l'événement |
1636 |
|
|
* sélectionné après validation du formulaire d'instruction |
1637 |
|
|
* |
1638 |
|
|
* @return array() veleurs de l'événement lié |
1639 |
|
|
*/ |
1640 |
|
|
|
1641 |
|
|
private function getValEvenement() { |
1642 |
|
|
if(!empty($this->valEvenement)) { |
1643 |
|
|
return $this->valEvenement; |
1644 |
|
|
} else { |
1645 |
|
|
$sql = "SELECT * FROM ".DB_PREFIXE."evenement |
1646 |
|
|
WHERE evenement=".$this->valF['evenement']; |
1647 |
|
|
$res = $this->db->query($sql); |
1648 |
|
|
$this->addToLog("getValEvenement(): db->query(\"".$sql."\");", VERBOSE_MODE); |
1649 |
|
|
if (database::isError($res)) { |
1650 |
|
|
die($res->getMessage()); |
1651 |
|
|
} |
1652 |
|
|
$this->valEvenement = $res->fetchRow(DB_FETCHMODE_ASSOC); |
1653 |
|
|
return $this->valEvenement; |
1654 |
|
|
} |
1655 |
|
|
} |
1656 |
|
|
|
1657 |
|
|
/** |
1658 |
|
|
* Méthode permettant de savoir si le dossier lié à l'instruction à le flag |
1659 |
|
|
* incompletude à true après validation du formulaire d'instruction |
1660 |
|
|
* |
1661 |
|
|
* @return boolean |
1662 |
|
|
*/ |
1663 |
|
|
private function dossierIncomplet() { |
1664 |
|
|
$sql = "SELECT incompletude FROM ".DB_PREFIXE."dossier |
1665 |
|
|
WHERE dossier='".$this->valF['dossier']."'"; |
1666 |
|
|
$incompletude = $this->db->getOne($sql); |
1667 |
|
|
$this->addToLog("dossierIncomplet(): db->query(\"".$sql."\");", VERBOSE_MODE); |
1668 |
|
|
if (database::isError($incompletude)) { |
1669 |
|
|
die($incompletude->getMessage()); |
1670 |
|
|
} |
1671 |
|
|
if ($incompletude == 't') { |
1672 |
|
|
return true; |
1673 |
|
|
} else { |
1674 |
|
|
return false; |
1675 |
|
|
} |
1676 |
|
|
} |
1677 |
vpihour |
1921 |
|
1678 |
|
|
/** |
1679 |
nhaye |
1949 |
* Finalisation des documents. |
1680 |
|
|
* @param string $champ champ du fichier à finaliser |
1681 |
|
|
* @param booleen $status permet de définir si on finalise ou définalise |
1682 |
|
|
* @param string $sousform permet de savoir si se trouve dans un sousformulaire (passé au javascript) |
1683 |
vpihour |
1921 |
*/ |
1684 |
vpihour |
1986 |
function finaliser( $champ = '', $status, $sousform, $retourformulaire){ |
1685 |
nhaye |
1724 |
|
1686 |
vpihour |
1921 |
//Si on finalise le document |
1687 |
|
|
if ( $status == 1 ){ |
1688 |
|
|
|
1689 |
|
|
//Génération du PDF |
1690 |
|
|
$_GET['output'] = "string"; |
1691 |
|
|
$f = $this->f; |
1692 |
|
|
include '../app/pdf_instruction.php'; |
1693 |
|
|
|
1694 |
|
|
//Métadonnées du document |
1695 |
|
|
$metadata = array( |
1696 |
vpihour |
1927 |
'filename' => 'instruction_'.$idx.'.pdf', |
1697 |
vpihour |
1921 |
'mimetype' => 'application/pdf', |
1698 |
|
|
'size' => strlen($pdf_output) |
1699 |
|
|
); |
1700 |
|
|
|
1701 |
nhaye |
1928 |
// Récupération des métadonnées calculées après validation |
1702 |
nhaye |
1938 |
$spe_metadata = $this->getMetadata("om_fichier_instruction"); |
1703 |
nhaye |
1928 |
|
1704 |
|
|
$metadata = array_merge($metadata, $spe_metadata); |
1705 |
vpihour |
1921 |
//Si le document a déjà été finalisé |
1706 |
|
|
//on met à jour le document mais pas son uid |
1707 |
vpihour |
1927 |
if ( $this->getVal("om_fichier_instruction") != '' ){ |
1708 |
|
|
$uid = $this->f->storage->update( |
1709 |
|
|
$this->getVal("om_fichier_instruction"), $pdf_output, $metadata); |
1710 |
vpihour |
1921 |
} |
1711 |
|
|
//Sinon, on joute le document et on récupère son uid |
1712 |
|
|
else { |
1713 |
|
|
//Stockage du PDF |
1714 |
|
|
$uid = $this->f->storage->create($pdf_output, $metadata); |
1715 |
|
|
} |
1716 |
|
|
} |
1717 |
|
|
else { |
1718 |
|
|
//Récupération de l'uid du document finalisé |
1719 |
vpihour |
1927 |
$uid = $this->getVal("om_fichier_instruction"); |
1720 |
vpihour |
1921 |
|
1721 |
|
|
//On dé-finalise avant de finaliser |
1722 |
vpihour |
2603 |
if ( $uid == '' || $uid == 'OP_FAILURE' ){ |
1723 |
vpihour |
1921 |
return -1; |
1724 |
|
|
} |
1725 |
|
|
} |
1726 |
|
|
|
1727 |
|
|
//Mise à jour des données |
1728 |
vpihour |
2603 |
if ( $uid != '' || $uid == 'OP_FAILURE' ){ |
1729 |
vpihour |
1921 |
// Logger |
1730 |
vpihour |
1927 |
$this->addToLog("finaliser() - begin", EXTRA_VERBOSE_MODE); |
1731 |
vpihour |
1921 |
// Recuperation de la valeur de la cle primaire de l'objet |
1732 |
vpihour |
1927 |
if($this->getVal($this->clePrimaire) != '') |
1733 |
|
|
$id = $this->getVal($this->clePrimaire); |
1734 |
vpihour |
1921 |
else |
1735 |
|
|
$id=$this->id; |
1736 |
vpihour |
1986 |
|
1737 |
|
|
$actions = array(); |
1738 |
vpihour |
1921 |
//Tableau contenant le lien vers le PDF et lien du portlet pour la mise |
1739 |
|
|
//à jour de l'interface |
1740 |
|
|
if ( $status == 0 ){ |
1741 |
|
|
$lien = '../app/pdf_instruction.php?idx='.$id; |
1742 |
vpihour |
1986 |
|
1743 |
|
|
//Ajout des actions |
1744 |
|
|
//Si l'utilisateur a le droit de modifier l'objet |
1745 |
|
|
if ( $this->f->isAccredited('instruction') || |
1746 |
|
|
$this->f->isAccredited('instruction_modifier') ){ |
1747 |
|
|
|
1748 |
|
|
$actions["modifier"] = ($sousform!='')? |
1749 |
|
|
'<li><a href="#" onclick="ajaxIt(\'instruction\', |
1750 |
|
|
\'../scr/sousform.php?obj=instruction&action=1&idx='. |
1751 |
|
|
$this->getVal($this->clePrimaire). |
1752 |
|
|
'&premiersf=0&trisf=&retourformulaire='.$retourformulaire.'&idxformulaire='. |
1753 |
|
|
$this->getVal("dossier"). |
1754 |
|
|
'&retour=form\');"> |
1755 |
|
|
<span class="om-prev-icon om-icon-16 edit-16" title="'. |
1756 |
|
|
_('Modifier').'">'. |
1757 |
|
|
_('Modifier'). |
1758 |
|
|
'</span></a></li>': |
1759 |
|
|
'<li> |
1760 |
|
|
<a href="form.php?obj=instruction&action=1'.'&idx='. |
1761 |
|
|
$this->getVal($this->clePrimaire). |
1762 |
|
|
'&premier=&advs_id=&recherche=&tricol=&selectioncol=&valide=&retour=form"> |
1763 |
|
|
<span class="om-prev-icon om-icon-16 edit-16" title="'. |
1764 |
|
|
_('Modifier').'">'. |
1765 |
|
|
_('Modifier'). |
1766 |
|
|
'</span></a></li>'; |
1767 |
|
|
} |
1768 |
softime |
1994 |
//Si l'utilisateur a le droit de supprimer l'objet |
1769 |
vpihour |
1986 |
if ( $this->f->isAccredited('instruction') || |
1770 |
|
|
$this->f->isAccredited('instruction_supprimer') ){ |
1771 |
|
|
|
1772 |
|
|
$actions["supprimer"] = ($sousform!='')? |
1773 |
|
|
'<li><a href="#" onclick="ajaxIt(\'instruction\', |
1774 |
|
|
\'../scr/sousform.php?obj=instruction&action=2&idx='. |
1775 |
|
|
$this->getVal($this->clePrimaire). |
1776 |
|
|
'&premiersf=0&trisf=&retourformulaire='.$retourformulaire.'&idxformulaire='. |
1777 |
|
|
$this->getVal("dossier"). |
1778 |
|
|
'&retour=form\');"> |
1779 |
|
|
<span class="om-prev-icon om-icon-16 delete-16" title="'. |
1780 |
|
|
_('Supprimer').'">'. |
1781 |
|
|
_('Supprimer'). |
1782 |
|
|
'</span></a></li>': |
1783 |
|
|
'<li> |
1784 |
|
|
<a href="form.php?obj=instruction&action=1'.'&idx='. |
1785 |
|
|
$this->getVal($this->clePrimaire). |
1786 |
|
|
'&premier=&advs_id=&recherche=&tricol=&selectioncol=&valide=&retour=form"> |
1787 |
|
|
<span class="om-prev-icon om-icon-16 delete-16" title="'. |
1788 |
|
|
_('Supprimer').'">'. |
1789 |
|
|
_('Supprimer'). |
1790 |
|
|
'</span></a></li>'; |
1791 |
|
|
} |
1792 |
vpihour |
1921 |
} |
1793 |
|
|
else { |
1794 |
|
|
$lien = '../spg/file.php?obj=instruction&'. |
1795 |
|
|
'champ=om_fichier_instruction&id='.$id; |
1796 |
|
|
} |
1797 |
|
|
|
1798 |
|
|
$retour = array( |
1799 |
|
|
"portlet"=> "<a href=\"#\" onclick=\"finalizeDocument(". |
1800 |
|
|
$id.", 'instruction', '".$sousform."', ".(($status==0)?1:0).")\"> |
1801 |
vpihour |
1986 |
<span class=\"om-prev-icon om-icon-16 om-icon-fix " |
1802 |
vpihour |
1921 |
.(($status==1)?"de":"")."finalise\" title=\"". |
1803 |
|
|
(($status==1)?_("Reprendre la redaction du document"):_("Finaliser le document"))."\">". |
1804 |
|
|
(($status==1)?_("Reprendre la redaction du document"):_("Finaliser le document"))."</span> |
1805 |
|
|
</a>", |
1806 |
vpihour |
1986 |
"pdf" => $lien, |
1807 |
|
|
"actions" => $actions |
1808 |
vpihour |
1921 |
); |
1809 |
|
|
|
1810 |
|
|
foreach ( $this->champs as $key=>$value ) |
1811 |
|
|
$val[$value] = $this->val[$key]; |
1812 |
|
|
$val['date_evenement']=$this->dateDBToForm($val['date_evenement']); |
1813 |
|
|
$val['archive_date_complet']=$this->dateDBToForm($val['archive_date_complet']); |
1814 |
|
|
$val['archive_date_rejet']=$this->dateDBToForm($val['archive_date_rejet']); |
1815 |
|
|
$val['archive_date_limite']=$this->dateDBToForm($val['archive_date_limite']); |
1816 |
|
|
$val['archive_date_notification_delai']=$this->dateDBToForm($val['archive_date_notification_delai']); |
1817 |
|
|
$val['archive_date_decision']=$this->dateDBToForm($val['archive_date_decision']); |
1818 |
|
|
$val['archive_date_validite']=$this->dateDBToForm($val['archive_date_validite']); |
1819 |
|
|
$val['archive_date_achevement']=$this->dateDBToForm($val['archive_date_achevement']); |
1820 |
|
|
$val['archive_date_chantier']=$this->dateDBToForm($val['archive_date_chantier']); |
1821 |
|
|
$val['archive_date_conformite']=$this->dateDBToForm($val['archive_date_conformite']); |
1822 |
|
|
$val['archive_date_dernier_depot']=$this->dateDBToForm($val['archive_date_dernier_depot']); |
1823 |
|
|
$val['archive_date_limite_incompletude']=$this->dateDBToForm($val['archive_date_limite_incompletude']); |
1824 |
|
|
$val['date_finalisation_courrier']=$this->dateDBToForm($val['date_finalisation_courrier']); |
1825 |
|
|
$val['date_envoi_signature']=$this->dateDBToForm($val['date_envoi_signature']); |
1826 |
|
|
$val['date_retour_signature']=$this->dateDBToForm($val['date_retour_signature']); |
1827 |
|
|
$val['date_envoi_rar']=$this->dateDBToForm($val['date_envoi_rar']); |
1828 |
|
|
$val['date_retour_rar']=$this->dateDBToForm($val['date_retour_rar']); |
1829 |
|
|
$val['date_envoi_controle_legalite']=$this->dateDBToForm($val['date_envoi_controle_legalite']); |
1830 |
|
|
$val['date_retour_controle_legalite']=$this->dateDBToForm($val['date_retour_controle_legalite']); |
1831 |
|
|
|
1832 |
|
|
$this->setvalF($val); |
1833 |
|
|
|
1834 |
|
|
// Verification de la validite des donnees |
1835 |
|
|
$this->verifier($this->val, $this->db, DEBUG); |
1836 |
|
|
// Verification du verrou |
1837 |
|
|
$this->testverrou(); |
1838 |
|
|
// Si les verifications precedentes sont correctes, on procede a |
1839 |
|
|
// la modification, sinon on ne fait rien et on retourne une erreur |
1840 |
|
|
if ($this->correct) { |
1841 |
|
|
// Execution du trigger 'before' specifique au MODE 'update' |
1842 |
|
|
$this->triggermodifier( $id, $this->db, $this->val, DEBUG); |
1843 |
|
|
$valF = array( |
1844 |
|
|
"om_final_instruction"=> ($status==1)?TRUE:FALSE, |
1845 |
vpihour |
1966 |
"om_fichier_instruction"=>$uid, |
1846 |
|
|
"date_finalisation_courrier"=>date('Y-m-d')); |
1847 |
vpihour |
1921 |
// Execution de la requête de modification des donnees de l'attribut |
1848 |
|
|
// valF de l'objet dans l'attribut table de l'objet |
1849 |
|
|
$res = $this->db->autoExecute(DB_PREFIXE.$this->table, $valF, |
1850 |
|
|
DB_AUTOQUERY_UPDATE, $this->getCle($id)); |
1851 |
vpihour |
1927 |
$this->addToLog("finaliser() : db->autoExecute(\"".DB_PREFIXE.$this->table."\", ".print_r($valF, true).", DB_AUTOQUERY_UPDATE, \"".$this->getCle($id)."\")", VERBOSE_MODE); |
1852 |
vpihour |
1921 |
// Si une erreur survient |
1853 |
|
|
if (database::isError($res)) { |
1854 |
|
|
// Appel de la methode de recuperation des erreurs |
1855 |
|
|
$this->erreur_db($res->getDebugInfo(), $res->getMessage(), ''); |
1856 |
|
|
} else { |
1857 |
|
|
// Log |
1858 |
|
|
$this->addToLog(_("Requete executee"), VERBOSE_MODE); |
1859 |
|
|
// Log |
1860 |
|
|
$message = _("Enregistrement")." ".$id." "; |
1861 |
|
|
$message .= _("de la table")." \"".$this->table."\" "; |
1862 |
|
|
$message .= "[ ".$this->db->affectedRows()." "; |
1863 |
|
|
$message .= _("enregistrement(s) mis a jour")." ]"; |
1864 |
|
|
$this->addToLog($message, VERBOSE_MODE); |
1865 |
|
|
// Mise en place du verrou pour ne pas finaliser plusieurs fois |
1866 |
|
|
// le meme document |
1867 |
|
|
$this->verrouille(); |
1868 |
|
|
// Execution du trigger 'after' specifique au MODE 'update' |
1869 |
|
|
//$this->triggermodifierapres($id, $this->db, $val, DEBUG); |
1870 |
|
|
|
1871 |
|
|
return $retour; |
1872 |
|
|
} |
1873 |
|
|
} else { |
1874 |
|
|
// Message d'echec (saut d'une ligne supplementaire avant le |
1875 |
|
|
// message pour qu'il soit mis en evidence) |
1876 |
vpihour |
2290 |
$this->addToLog(_("Finalisation non enregistree")); |
1877 |
vpihour |
1921 |
return -1; |
1878 |
|
|
} |
1879 |
|
|
} |
1880 |
|
|
// Si le document n'a pas été stocké |
1881 |
|
|
else{ |
1882 |
|
|
return -1; |
1883 |
|
|
} |
1884 |
|
|
} |
1885 |
vpihour |
1927 |
|
1886 |
|
|
/** |
1887 |
nhaye |
1928 |
* Récupération du numéro de dossier d'instruction à ajouter aux métadonnées |
1888 |
nhaye |
1949 |
* @return string numéro de dossier d'instruction |
1889 |
nhaye |
1928 |
*/ |
1890 |
|
|
protected function getDossier() { |
1891 |
|
|
if(empty($this->specificMetadata)) { |
1892 |
|
|
$this->getSpecificMetadata(); |
1893 |
|
|
} |
1894 |
|
|
return $this->specificMetadata->dossier; |
1895 |
|
|
} |
1896 |
|
|
/** |
1897 |
softime |
2016 |
* Récupération la version du dossier d'instruction à ajouter aux métadonnées |
1898 |
|
|
* @return int Version |
1899 |
|
|
*/ |
1900 |
|
|
protected function getDossierVersion() { |
1901 |
|
|
if(empty($this->specificMetadata)) { |
1902 |
|
|
$this->getSpecificMetadata(); |
1903 |
|
|
} |
1904 |
|
|
return $this->specificMetadata->version; |
1905 |
|
|
} |
1906 |
|
|
/** |
1907 |
nhaye |
1928 |
* Récupération du numéro de dossier d'autorisation à ajouter aux métadonnées |
1908 |
nhaye |
1949 |
* @return string numéro de dossier d'autorisation |
1909 |
nhaye |
1928 |
*/ |
1910 |
softime |
2025 |
protected function getNumDemandeAutor() { |
1911 |
nhaye |
1928 |
if(empty($this->specificMetadata)) { |
1912 |
|
|
$this->getSpecificMetadata(); |
1913 |
|
|
} |
1914 |
|
|
return $this->specificMetadata->dossier_autorisation; |
1915 |
|
|
} |
1916 |
|
|
/** |
1917 |
|
|
* Récupération de la date de demande initiale du dossier à ajouter aux métadonnées |
1918 |
nhaye |
1949 |
* @return date de la demande initiale |
1919 |
nhaye |
1928 |
*/ |
1920 |
softime |
2025 |
protected function getAnneemoisDemandeAutor() { |
1921 |
nhaye |
1928 |
if(empty($this->specificMetadata)) { |
1922 |
|
|
$this->getSpecificMetadata(); |
1923 |
|
|
} |
1924 |
|
|
return $this->specificMetadata->date_demande_initiale; |
1925 |
|
|
} |
1926 |
|
|
/** |
1927 |
|
|
* Récupération du type de dossier d'instruction à ajouter aux métadonnées |
1928 |
nhaye |
1949 |
* @return string type du dossier d'instruction |
1929 |
nhaye |
1928 |
*/ |
1930 |
softime |
2025 |
protected function getTypeInstruction() { |
1931 |
nhaye |
1928 |
if(empty($this->specificMetadata)) { |
1932 |
|
|
$this->getSpecificMetadata(); |
1933 |
|
|
} |
1934 |
|
|
return $this->specificMetadata->dossier_instruction_type; |
1935 |
|
|
} |
1936 |
|
|
/** |
1937 |
|
|
* Récupération du statut du dossier d'autorisation à ajouter aux métadonnées |
1938 |
nhaye |
1949 |
* @return string avis |
1939 |
nhaye |
1928 |
*/ |
1940 |
softime |
2025 |
protected function getStatutAutorisation() { |
1941 |
nhaye |
1928 |
if(empty($this->specificMetadata)) { |
1942 |
|
|
$this->getSpecificMetadata(); |
1943 |
|
|
} |
1944 |
|
|
return $this->specificMetadata->statut; |
1945 |
|
|
} |
1946 |
|
|
/** |
1947 |
|
|
* Récupération du type de dossier d'autorisation à ajouter aux métadonnées |
1948 |
nhaye |
1949 |
* @return string type du dossier d'autorisation |
1949 |
nhaye |
1928 |
*/ |
1950 |
softime |
2025 |
protected function getTypeAutorisation() { |
1951 |
nhaye |
1928 |
if(empty($this->specificMetadata)) { |
1952 |
|
|
$this->getSpecificMetadata(); |
1953 |
|
|
} |
1954 |
|
|
return $this->specificMetadata->dossier_autorisation_type; |
1955 |
|
|
} |
1956 |
|
|
/** |
1957 |
|
|
* Récupération de la date d'ajout de document à ajouter aux métadonnées |
1958 |
nhaye |
1949 |
* @return date de l'évènement |
1959 |
nhaye |
1928 |
*/ |
1960 |
softime |
2025 |
protected function getDateEvenementDocument() { |
1961 |
softime |
2046 |
return date("Y-m-d"); |
1962 |
nhaye |
1928 |
} |
1963 |
|
|
/** |
1964 |
|
|
* Récupération du groupe d'instruction à ajouter aux métadonnées |
1965 |
|
|
* @return string Groupe d'instruction |
1966 |
|
|
*/ |
1967 |
|
|
protected function getGroupeInstruction() { |
1968 |
|
|
if(empty($this->specificMetadata)) { |
1969 |
|
|
$this->getSpecificMetadata(); |
1970 |
|
|
} |
1971 |
|
|
return $this->specificMetadata->groupe_instruction; |
1972 |
|
|
} |
1973 |
softime |
2002 |
/** |
1974 |
|
|
* Récupération du libellé du type du document à ajouter aux métadonnées |
1975 |
|
|
* @return string Groupe d'instruction |
1976 |
|
|
*/ |
1977 |
softime |
2025 |
protected function getTitle() { |
1978 |
nhaye |
1928 |
|
1979 |
softime |
2002 |
// Récupère le champ événement |
1980 |
|
|
if (isset($this->valF["evenement"]) AND $this->valF["evenement"] != "") { |
1981 |
|
|
$evenement = $this->valF["evenement"]; |
1982 |
|
|
} else { |
1983 |
|
|
$evenement = $this->getVal("evenement"); |
1984 |
|
|
} |
1985 |
|
|
|
1986 |
|
|
// Requête sql |
1987 |
|
|
$sql = "SELECT libelle FROM ".DB_PREFIXE."evenement |
1988 |
|
|
WHERE evenement=".$evenement; |
1989 |
|
|
$evenement_libelle = $this->db->getOne($sql); |
1990 |
softime |
2025 |
$this->addToLog("getTitle(): db->getOne(\"".$sql."\");", VERBOSE_MODE); |
1991 |
softime |
2002 |
if (database::isError($evenement_libelle)) { |
1992 |
|
|
die(); |
1993 |
|
|
} |
1994 |
|
|
|
1995 |
|
|
// Retourne le libelle de l'événement |
1996 |
|
|
return $evenement_libelle; |
1997 |
|
|
} |
1998 |
|
|
|
1999 |
nhaye |
1928 |
/** |
2000 |
|
|
* Cette méthode permet de stocker en attribut toutes les métadonnées |
2001 |
|
|
* nécessaire à l'ajout d'un document. |
2002 |
|
|
*/ |
2003 |
|
|
public function getSpecificMetadata() { |
2004 |
|
|
if (isset($this->valF["dossier"]) AND $this->valF["dossier"] != "") { |
2005 |
|
|
$dossier = $this->valF["dossier"]; |
2006 |
|
|
} else { |
2007 |
|
|
$dossier = $this->getVal("dossier"); |
2008 |
|
|
} |
2009 |
|
|
//Requête pour récupérer les informations essentiels sur le dossier d'instruction |
2010 |
|
|
$sql = "SELECT dossier.dossier as dossier, |
2011 |
|
|
dossier_autorisation.dossier_autorisation as dossier_autorisation, |
2012 |
|
|
to_char(dossier.date_demande, 'YYYY/MM') as date_demande_initiale, |
2013 |
|
|
dossier_instruction_type.code as dossier_instruction_type, |
2014 |
|
|
etat_dossier_autorisation.libelle as statut, |
2015 |
|
|
dossier_autorisation_type.code as dossier_autorisation_type, |
2016 |
|
|
groupe.code as groupe_instruction |
2017 |
|
|
FROM ".DB_PREFIXE."dossier |
2018 |
|
|
LEFT JOIN ".DB_PREFIXE."dossier_instruction_type |
2019 |
|
|
ON dossier.dossier_instruction_type = dossier_instruction_type.dossier_instruction_type |
2020 |
|
|
LEFT JOIN ".DB_PREFIXE."dossier_autorisation |
2021 |
|
|
ON dossier.dossier_autorisation = dossier_autorisation.dossier_autorisation |
2022 |
|
|
LEFT JOIN ".DB_PREFIXE."etat_dossier_autorisation |
2023 |
|
|
ON dossier_autorisation.etat_dossier_autorisation = etat_dossier_autorisation.etat_dossier_autorisation |
2024 |
|
|
LEFT JOIN ".DB_PREFIXE."dossier_autorisation_type_detaille |
2025 |
|
|
ON dossier_autorisation.dossier_autorisation_type_detaille = dossier_autorisation_type_detaille.dossier_autorisation_type_detaille |
2026 |
|
|
LEFT JOIN ".DB_PREFIXE."dossier_autorisation_type |
2027 |
|
|
ON dossier_autorisation_type_detaille.dossier_autorisation_type = dossier_autorisation_type.dossier_autorisation_type |
2028 |
|
|
LEFT JOIN ".DB_PREFIXE."groupe |
2029 |
|
|
ON dossier_autorisation_type.groupe = groupe.groupe |
2030 |
|
|
WHERE dossier.dossier = '".$dossier."'"; |
2031 |
|
|
$res = $this->db->query($sql); |
2032 |
softime |
2030 |
$this->f->addToLog("getSpecificMetadata() : db->query(".$sql.")", VERBOSE_MODE); |
2033 |
nhaye |
1928 |
if ( database::isError($res)){ |
2034 |
|
|
die(); |
2035 |
|
|
} |
2036 |
|
|
|
2037 |
|
|
//Le résultat est récupéré dans un objet |
2038 |
|
|
$row =& $res->fetchRow(DB_FETCHMODE_OBJECT); |
2039 |
|
|
|
2040 |
|
|
//Si il y a un résultat |
2041 |
|
|
if ($row !== null) { |
2042 |
vpihour |
2119 |
|
2043 |
|
|
//Génération du numéro de version |
2044 |
|
|
$sql = "SELECT |
2045 |
|
|
count(*) |
2046 |
|
|
FROM |
2047 |
|
|
".DB_PREFIXE."dossier |
2048 |
|
|
LEFT JOIN |
2049 |
|
|
".DB_PREFIXE."dossier_autorisation |
2050 |
|
|
ON |
2051 |
|
|
dossier_autorisation.dossier_autorisation = dossier.dossier_autorisation |
2052 |
|
|
LEFT JOIN |
2053 |
|
|
".DB_PREFIXE."dossier_instruction_type |
2054 |
|
|
ON |
2055 |
|
|
dossier_instruction_type.dossier_instruction_type = dossier.dossier_instruction_type |
2056 |
|
|
WHERE |
2057 |
vpihour |
2124 |
dossier_autorisation.dossier_autorisation = '".$row->dossier_autorisation."' |
2058 |
vpihour |
2119 |
AND |
2059 |
vpihour |
2124 |
dossier_instruction_type.code = '".$row->dossier_instruction_type."'"; |
2060 |
|
|
$row->version = $this->db->getOne($sql); |
2061 |
vpihour |
2119 |
$this->f->addToLog("getSpecificMetadata(): db->getOne(\"".$sql."\")", VERBOSE_MODE); |
2062 |
vpihour |
2124 |
if ( database::isError($row->version)){ |
2063 |
|
|
$this->f->addToError("", $row->version, $row->version); |
2064 |
vpihour |
2119 |
return false; |
2065 |
|
|
} |
2066 |
|
|
|
2067 |
|
|
//Formatage du numéro de version |
2068 |
vpihour |
2124 |
$row->version = str_pad($row->version, 2, "0", STR_PAD_LEFT); |
2069 |
nhaye |
1928 |
|
2070 |
|
|
//Alors on créé l'objet dossier_instruction |
2071 |
|
|
$this->specificMetadata = $row; |
2072 |
|
|
|
2073 |
|
|
} |
2074 |
|
|
} |
2075 |
vpihour |
1978 |
|
2076 |
|
|
/** |
2077 |
|
|
* Retourne le statut du dossier d'instruction |
2078 |
|
|
* @param string $idx Identifiant du dossier d'instruction |
2079 |
|
|
* @return string Le statut du dossier d'instruction |
2080 |
|
|
*/ |
2081 |
softime |
2025 |
function getStatutAutorisationDossier($idx){ |
2082 |
vpihour |
1978 |
|
2083 |
|
|
$statut = ''; |
2084 |
|
|
|
2085 |
|
|
//Si l'identifiant du dossier d'instruction fourni est correct |
2086 |
|
|
if ( $idx != '' ){ |
2087 |
|
|
|
2088 |
|
|
//On récupère le statut de l'état du dossier à partir de l'identifiant du |
2089 |
|
|
//dossier |
2090 |
|
|
$sql = "SELECT etat.statut |
2091 |
|
|
FROM ".DB_PREFIXE."dossier |
2092 |
|
|
LEFT JOIN |
2093 |
|
|
".DB_PREFIXE."etat |
2094 |
|
|
ON |
2095 |
|
|
dossier.etat = etat.etat |
2096 |
|
|
WHERE dossier ='".$idx."'"; |
2097 |
|
|
$statut = $this->db->getOne($sql); |
2098 |
softime |
2025 |
$this->f->addToLog("getStatutAutorisationDossier() : db->getOne(\"".$sql."\")", VERBOSE_MODE); |
2099 |
vpihour |
1978 |
if ( database::isError($statut)){ |
2100 |
|
|
die(); |
2101 |
|
|
} |
2102 |
|
|
} |
2103 |
|
|
return $statut; |
2104 |
|
|
} |
2105 |
softime |
2373 |
|
2106 |
|
|
/** |
2107 |
|
|
* Récupère les données du dossier |
2108 |
|
|
* @return array |
2109 |
|
|
*/ |
2110 |
|
|
function get_dossier_actual() { |
2111 |
|
|
|
2112 |
|
|
// Initialisation de la valeur de retour |
2113 |
|
|
$return = array(); |
2114 |
|
|
|
2115 |
|
|
// Récupération de toutes les valeurs du dossier d'instruction en cours |
2116 |
|
|
$sql = "SELECT * FROM ".DB_PREFIXE."dossier |
2117 |
|
|
WHERE dossier='".$this->valF['dossier']."'"; |
2118 |
|
|
$res = $this->db->query($sql); |
2119 |
|
|
$this->addToLog("get_dossier_actual(): db->query(\"".$sql."\");", VERBOSE_MODE); |
2120 |
|
|
$this->f->isDatabaseError($res); |
2121 |
|
|
|
2122 |
|
|
// |
2123 |
|
|
while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC)) { |
2124 |
|
|
|
2125 |
|
|
// Récupération de la valeur actuelle du délai, de l'accord tacite, |
2126 |
|
|
// de l'état et de l'avis du dossier d'instruction |
2127 |
|
|
$return['archive_delai']=$row['delai']; |
2128 |
|
|
$return['archive_accord_tacite']=$row['accord_tacite']; |
2129 |
|
|
$return['archive_etat']=$row['etat']; |
2130 |
|
|
$return['archive_avis']=$row['avis_decision']; |
2131 |
|
|
// Récupération de la valeur actuelle des 9 dates du dossier |
2132 |
|
|
// d'instruction |
2133 |
|
|
$return['archive_date_complet']=$row['date_complet']; |
2134 |
|
|
$return['archive_date_dernier_depot']=$row['date_dernier_depot']; |
2135 |
|
|
$return['archive_date_rejet']= $row['date_rejet']; |
2136 |
|
|
$return['archive_date_limite']= $row['date_limite']; |
2137 |
|
|
$return['archive_date_notification_delai']= $row['date_notification_delai']; |
2138 |
|
|
$return['archive_date_decision']= $row['date_decision']; |
2139 |
|
|
$return['archive_date_validite']= $row['date_validite']; |
2140 |
|
|
$return['archive_date_achevement']= $row['date_achevement']; |
2141 |
|
|
$return['archive_date_chantier']= $row['date_chantier']; |
2142 |
|
|
$return['archive_date_conformite']= $row['date_conformite']; |
2143 |
|
|
$return['archive_incompletude']= $row['incompletude']; |
2144 |
|
|
$return['archive_evenement_suivant_tacite']= $row['evenement_suivant_tacite']; |
2145 |
|
|
$return['archive_evenement_suivant_tacite_incompletude']= $row['evenement_suivant_tacite_incompletude']; |
2146 |
|
|
$return['archive_etat_pendant_incompletude']= $row['etat_pendant_incompletude']; |
2147 |
|
|
$return['archive_date_limite_incompletude']= $row['date_limite_incompletude']; |
2148 |
|
|
$return['archive_delai_incompletude']= $row['delai_incompletude']; |
2149 |
|
|
$return['archive_autorite_competente']= $row['autorite_competente']; |
2150 |
|
|
$return['duree_validite']= $row['duree_validite']; |
2151 |
|
|
} |
2152 |
|
|
|
2153 |
|
|
// Retour de la fonction |
2154 |
|
|
return $return; |
2155 |
|
|
|
2156 |
|
|
} |
2157 |
|
|
|
2158 |
softime |
2613 |
/** |
2159 |
|
|
* Permet de vérifier qu'un événement est verrouillable |
2160 |
|
|
* @param integer $idx Identifiant de l'instruction |
2161 |
|
|
* @return boolean |
2162 |
|
|
*/ |
2163 |
|
|
function checkEvenementNonVerrouillable($idx) { |
2164 |
|
|
|
2165 |
|
|
// Initialisation du résultat |
2166 |
|
|
$non_verrouillable = false; |
2167 |
|
|
|
2168 |
|
|
// Si la condition n'est pas vide |
2169 |
|
|
if ($idx != "") { |
2170 |
|
|
|
2171 |
|
|
// Requête SQL |
2172 |
|
|
$sql = "SELECT evenement.non_verrouillable |
2173 |
|
|
FROM ".DB_PREFIXE."evenement |
2174 |
|
|
LEFT JOIN ".DB_PREFIXE."instruction |
2175 |
|
|
ON instruction.evenement = evenement.evenement |
2176 |
|
|
WHERE instruction.instruction = $idx"; |
2177 |
|
|
$this->f->addToLog("checkEvenementNonVerrouillable() : db->getOne(\"".$sql."\")", VERBOSE_MODE); |
2178 |
|
|
$res = $this->db->getOne($sql); |
2179 |
|
|
$this->f->isDatabaseError($res); |
2180 |
|
|
|
2181 |
|
|
// Si le retour de la requête est true |
2182 |
|
|
if ($res == 't') { |
2183 |
|
|
// |
2184 |
|
|
$non_verrouillable = true; |
2185 |
|
|
} |
2186 |
|
|
} |
2187 |
|
|
|
2188 |
|
|
// Retourne résultat |
2189 |
|
|
return $non_verrouillable; |
2190 |
|
|
} |
2191 |
vpihour |
2643 |
|
2192 |
|
|
/** |
2193 |
|
|
* Mise à jour des champs archive_* |
2194 |
|
|
* @param mixed $row La ligne de données |
2195 |
|
|
*/ |
2196 |
|
|
public function updateArchiveData($row){ |
2197 |
|
|
|
2198 |
|
|
// Récupération de la valeur actuelle du délai, de l'accord tacite, |
2199 |
|
|
// de l'état et de l'avis du dossier d'instruction |
2200 |
|
|
$this->valF['archive_delai']=$row['delai']; |
2201 |
|
|
$this->valF['archive_accord_tacite']=$row['accord_tacite']; |
2202 |
|
|
$this->valF['archive_etat']=$row['etat']; |
2203 |
|
|
$this->valF['archive_avis']=$row['avis_decision']; |
2204 |
|
|
// Récupération de la valeur actuelle des 9 dates du dossier |
2205 |
|
|
// d'instruction |
2206 |
|
|
if ($row['date_complet'] != '') { |
2207 |
|
|
$this->valF['archive_date_complet']=$row['date_complet']; |
2208 |
|
|
} |
2209 |
|
|
if ($row['date_dernier_depot'] != '') { |
2210 |
|
|
$this->valF['archive_date_dernier_depot']=$row['date_dernier_depot']; |
2211 |
|
|
} |
2212 |
|
|
if ($row['date_rejet']!='') { |
2213 |
|
|
$this->valF['archive_date_rejet']= $row['date_rejet']; |
2214 |
|
|
} |
2215 |
|
|
if ($row['date_limite']!='') { |
2216 |
|
|
$this->valF['archive_date_limite']= $row['date_limite']; |
2217 |
|
|
} |
2218 |
|
|
if ($row['date_notification_delai']!='') { |
2219 |
|
|
$this->valF['archive_date_notification_delai']= $row['date_notification_delai']; |
2220 |
|
|
} |
2221 |
|
|
if ($row['date_decision']!='') { |
2222 |
|
|
$this->valF['archive_date_decision']= $row['date_decision']; |
2223 |
|
|
} |
2224 |
|
|
if ($row['date_validite']!='') { |
2225 |
|
|
$this->valF['archive_date_validite']= $row['date_validite']; |
2226 |
|
|
} |
2227 |
|
|
if ($row['date_achevement']!='') { |
2228 |
|
|
$this->valF['archive_date_achevement']= $row['date_achevement']; |
2229 |
|
|
} |
2230 |
|
|
if ($row['date_chantier']!='') { |
2231 |
|
|
$this->valF['archive_date_chantier']= $row['date_chantier']; |
2232 |
|
|
} |
2233 |
|
|
if ($row['date_conformite']!='') { |
2234 |
|
|
$this->valF['archive_date_conformite']= $row['date_conformite']; |
2235 |
|
|
} |
2236 |
|
|
if ($row['incompletude']!='') { |
2237 |
|
|
$this->valF['archive_incompletude']= $row['incompletude']; |
2238 |
|
|
} |
2239 |
|
|
if ($row['evenement_suivant_tacite']!='') { |
2240 |
|
|
$this->valF['archive_evenement_suivant_tacite']= $row['evenement_suivant_tacite']; |
2241 |
|
|
} |
2242 |
|
|
if ($row['evenement_suivant_tacite_incompletude']!='') { |
2243 |
|
|
$this->valF['archive_evenement_suivant_tacite_incompletude']= $row['evenement_suivant_tacite_incompletude']; |
2244 |
|
|
} |
2245 |
|
|
if ($row['etat_pendant_incompletude']!='') { |
2246 |
|
|
$this->valF['archive_etat_pendant_incompletude']= $row['etat_pendant_incompletude']; |
2247 |
|
|
} |
2248 |
|
|
if ($row['date_limite_incompletude']!='') { |
2249 |
|
|
$this->valF['archive_date_limite_incompletude']= $row['date_limite_incompletude']; |
2250 |
|
|
} |
2251 |
|
|
if ($row['delai_incompletude']!='') { |
2252 |
|
|
$this->valF['archive_delai_incompletude']= $row['delai_incompletude']; |
2253 |
|
|
} |
2254 |
|
|
if ($row['autorite_competente']!='') { |
2255 |
|
|
$this->valF['archive_autorite_competente']= $row['autorite_competente']; |
2256 |
|
|
} |
2257 |
|
|
if ($row['duree_validite']!='') { |
2258 |
|
|
$this->valF['duree_validite']= $row['duree_validite']; |
2259 |
|
|
} |
2260 |
|
|
} |
2261 |
fraynaud |
3 |
}// fin classe |
2262 |
atreal |
208 |
?> |