1 |
fraynaud |
3 |
<?php |
2 |
|
|
//$Id$ |
3 |
fraynaud |
20 |
//gen openMairie le 10/02/2011 20:34 |
4 |
|
|
/* |
5 |
|
|
$Id: instruction.class.php,v 1.29 2010-10-27 10:52:20 fraynaud Exp $ |
6 |
|
|
specific : |
7 |
|
|
- cle secondaire |
8 |
|
|
destruction autorisée que pour le dernier evenement |
9 |
|
|
[delete the last event ] |
10 |
|
|
- variable globale [global variables] |
11 |
|
|
var $archive_date_depot; |
12 |
|
|
var $retourformulaire; |
13 |
|
|
var $idxformulaire; |
14 |
|
|
- modification des données dans dossier trigger avant |
15 |
|
|
[modify dossier data with trigger function] |
16 |
|
|
- function moisdate : pour ajouter des mois a une date |
17 |
|
|
[add months (delay) and calculation final date] |
18 |
|
|
- voir script_lang.js : bible ... |
19 |
|
|
*/ |
20 |
fraynaud |
3 |
require_once ("../gen/obj/instruction.class.php"); |
21 |
mlimic |
910 |
require_once("../services/outgoing/messageenqueuer.php"); |
22 |
fraynaud |
3 |
|
23 |
|
|
class instruction extends instruction_gen { |
24 |
|
|
|
25 |
fraynaud |
20 |
var $archive_date_depot; // specific |
26 |
|
|
var $retourformulaire; // specific |
27 |
|
|
var $idxformulaire; // specific |
28 |
fraynaud |
3 |
|
29 |
fraynaud |
20 |
function instruction($id,&$db,$debug) { |
30 |
|
|
$this->constructeur($id,$db,$debug); |
31 |
|
|
}// fin constructeur |
32 |
|
|
|
33 |
fmichon |
944 |
// {{{ Gestion de la confidentialité des données spécifiques |
34 |
|
|
|
35 |
|
|
/** |
36 |
|
|
* Surcharge pour gérer les actions disponibles dans le portlet |
37 |
|
|
*/ |
38 |
|
|
function checkAccessibility() { |
39 |
|
|
// |
40 |
|
|
parent::checkAccessibility(); |
41 |
|
|
// Si l'utilisateur est un intructeur qui en correspond pas à la |
42 |
|
|
// division du dossier |
43 |
|
|
if ($this->f->isUserInstructeur() |
44 |
|
|
&& isset($this->f->om_utilisateur["division"]) |
45 |
|
|
&& $this->f->om_utilisateur["division"] != $this->getDivisionFromDossier()) { |
46 |
|
|
// |
47 |
|
|
$this->actions_sup = array(); |
48 |
|
|
$this->setParameter("actions", array()); |
49 |
|
|
} |
50 |
|
|
// Si une action 'lu' est présente et que le champ lu est à true |
51 |
|
|
// on supprime l'action |
52 |
|
|
if (isset($this->actions_sup["lu"]) |
53 |
|
|
&& isset($this->val[array_search("lu", $this->champs)]) |
54 |
|
|
&& $this->val[array_search("lu", $this->champs)]== "t") { |
55 |
|
|
unset($this->actions_sup["lu"]); |
56 |
|
|
} |
57 |
|
|
} |
58 |
|
|
|
59 |
|
|
/** |
60 |
|
|
* Cette methode est à surcharger elle permet de tester dans chaque classe |
61 |
|
|
* des droits des droits spécifiques en fonction des données |
62 |
|
|
*/ |
63 |
|
|
function canAccess() { |
64 |
|
|
// Si l'utilisateur est un intructeur qui ne correspond pas à la |
65 |
|
|
// division du dossier |
66 |
|
|
if ($this->f->isUserInstructeur() |
67 |
|
|
&& $this->f->om_utilisateur["division"] != $this->getDivisionFromDossier() |
68 |
|
|
&& $this->getParameter("maj") != 3) { |
69 |
|
|
// |
70 |
|
|
return false; |
71 |
|
|
} |
72 |
|
|
// |
73 |
|
|
return true; |
74 |
|
|
} |
75 |
|
|
|
76 |
|
|
/** |
77 |
|
|
* Cette méthode permet de récupérer la division d'un dossier |
78 |
|
|
*/ |
79 |
|
|
function getDivisionFromDossier() { |
80 |
|
|
// |
81 |
|
|
if (!isset($this->val[array_search("dossier", $this->champs)])) { |
82 |
|
|
return NULL; |
83 |
|
|
} |
84 |
|
|
// |
85 |
|
|
$sql = "select division from ".DB_PREFIXE."dossier "; |
86 |
|
|
$sql .= " where dossier='".$this->val[array_search("dossier", $this->champs)]."'"; |
87 |
|
|
// |
88 |
|
|
$division = $this->db->getOne($sql); |
89 |
|
|
$this->addToLog("getDivisionFromDossier(): db->getone(\"".$sql."\")", VERBOSE_MODE); |
90 |
|
|
database::isError($division); |
91 |
|
|
// |
92 |
|
|
return $division; |
93 |
|
|
} |
94 |
|
|
|
95 |
|
|
// }}} |
96 |
|
|
|
97 |
fraynaud |
20 |
function cleSecondaire($id,&$db,$val,$DEBUG) { |
98 |
fraynaud |
129 |
parent::cleSecondaire($id,$db,$val,$DEBUG); |
99 |
|
|
// controle suppression cle secondaire [secondary key delete control] |
100 |
|
|
// ------------------------------------------------------------------------------------ |
101 |
|
|
// specifique detruire que le dernier [specific instruction : delete the last event ] |
102 |
|
|
// ------------------------------------------------------------------------------------ |
103 |
fraynaud |
20 |
$dernierevenement=''; |
104 |
fraynaud |
242 |
$sql="select max(instruction) from ".DB_PREFIXE."instruction where dossier ='". |
105 |
fraynaud |
20 |
$this->idxformulaire."'"; |
106 |
|
|
$dernierevenement = $db->getOne($sql); |
107 |
|
|
if($dernierevenement==$id){ |
108 |
|
|
$this->correct=true; |
109 |
nhaye |
460 |
$this->addToMessage(_('Destruction_chronologique')); |
110 |
fraynaud |
20 |
}else{ |
111 |
nhaye |
460 |
$this->addToMessage(_('Destruction_evenement')." : ".$dernierevenement); |
112 |
|
|
$this->addToMessage(_('Destruction_chronologique')); |
113 |
fraynaud |
20 |
$this->correct=false; |
114 |
|
|
} |
115 |
|
|
} |
116 |
|
|
|
117 |
vpihour |
1058 |
/*Met des valeurs par défaut dans certains des sous-formulaire*/ |
118 |
fraynaud |
20 |
function setValsousformulaire(&$form,$maj,$validation,$idxformulaire,$retourformulaire,$typeformulaire){ |
119 |
nhaye |
428 |
if ($validation==0 and $maj<2) { |
120 |
fraynaud |
20 |
if ($maj == 0){ |
121 |
|
|
$form->setVal("destinataire", $idxformulaire); |
122 |
|
|
$form->setVal("dossier", $idxformulaire); |
123 |
vpihour |
1127 |
$form->setVal("date_evenement", date('Y-m-d')); |
124 |
fraynaud |
20 |
} |
125 |
|
|
$form->setVal("bible_auto","bible_auto()"); |
126 |
|
|
$form->setVal("bible","bible()"); |
127 |
|
|
$form->setVal("bible2","bible2()"); |
128 |
|
|
} |
129 |
|
|
$this->retourformulaire=$retourformulaire; |
130 |
|
|
$this->idxformulaire=$idxformulaire; |
131 |
|
|
} |
132 |
|
|
|
133 |
vpihour |
1058 |
/*Affecte un type à certains champs*/ |
134 |
fraynaud |
20 |
function setType(&$form,$maj) { |
135 |
nhaye |
428 |
parent::setType($form,$maj); |
136 |
|
|
if ($maj < 2) { //ajouter et modifier |
137 |
|
|
$form->setType('destinataire', 'hidden'); |
138 |
|
|
$form->setType('lettretype', 'hiddenstatic'); |
139 |
|
|
$form->setType('complement', 'textarea'); |
140 |
|
|
$form->setType('complement2', 'textarea'); |
141 |
|
|
$form->setType('bible_auto', 'httpclick'); |
142 |
|
|
$form->setType('bible', 'httpclick'); |
143 |
|
|
$form->setType('bible2', 'httpclick'); |
144 |
|
|
$form->setType('dossier', 'hiddenstatic'); |
145 |
|
|
$form->setType('libelle', 'hiddenstatic'); |
146 |
|
|
if($maj==0){ // add |
147 |
|
|
$form->setType('instruction', 'hiddenstatic'); |
148 |
|
|
$form->setType('evenement', 'select'); |
149 |
vpihour |
1127 |
$form->setType('date_evenement', 'date2'); |
150 |
nhaye |
428 |
}else{ // modify |
151 |
|
|
$form->setType('instruction', 'hiddenstatic'); |
152 |
|
|
$form->setType('evenement', 'hiddenstatic'); |
153 |
vpihour |
1127 |
//$form->setType('date_evenement', 'hiddenstaticdate'); |
154 |
|
|
$form->setType('date_evenement', 'date2'); |
155 |
nhaye |
428 |
// necessaire pour calcul de date en modification |
156 |
|
|
$form->setType('delai', 'hiddenstatic'); |
157 |
|
|
} |
158 |
nhaye |
460 |
} elseif($maj==2){ |
159 |
|
|
$form->setType('dossier', 'hiddenstatic'); |
160 |
|
|
}else { |
161 |
|
|
$form->setType('destinataire', 'hidden'); |
162 |
|
|
$form->setType('dossier', 'static'); |
163 |
nhaye |
428 |
} |
164 |
fraynaud |
20 |
$form->setType('complement3', 'hidden'); |
165 |
nhaye |
428 |
$form->setType('bible_auto', 'hidden'); |
166 |
|
|
$form->setType('bible', 'hidden'); |
167 |
|
|
$form->setType('bible2', 'hidden'); |
168 |
fraynaud |
20 |
$form->setType('bible3', 'hidden'); |
169 |
|
|
$form->setType('complement4', 'hidden'); |
170 |
|
|
$form->setType('bible4', 'hidden'); |
171 |
|
|
$form->setType('complement5', 'hidden'); |
172 |
|
|
$form->setType('bible5', 'hidden'); |
173 |
|
|
$form->setType('complement6', 'hidden'); |
174 |
|
|
$form->setType('bible6', 'hidden'); |
175 |
|
|
$form->setType('complement7', 'hidden'); |
176 |
|
|
$form->setType('bible7', 'hidden'); |
177 |
|
|
$form->setType('complement8', 'hidden'); |
178 |
|
|
$form->setType('bible8', 'hidden'); |
179 |
|
|
$form->setType('complement9', 'hidden'); |
180 |
|
|
$form->setType('bible9', 'hidden'); |
181 |
|
|
$form->setType('complement10', 'hidden'); |
182 |
|
|
$form->setType('bible10', 'hidden'); |
183 |
|
|
$form->setType('complement11', 'hidden'); |
184 |
|
|
$form->setType('bible11', 'hidden'); |
185 |
|
|
$form->setType('complement12', 'hidden'); |
186 |
|
|
$form->setType('bible12', 'hidden'); |
187 |
|
|
$form->setType('complement13', 'hidden'); |
188 |
|
|
$form->setType('bible13', 'hidden'); |
189 |
|
|
$form->setType('complement14', 'hidden'); |
190 |
|
|
$form->setType('bible14', 'hidden'); |
191 |
|
|
$form->setType('complement15', 'hidden'); |
192 |
|
|
$form->setType('bible15', 'hidden'); |
193 |
|
|
$form->setType('delai', 'hidden'); |
194 |
|
|
$form->setType('etat', 'hidden'); |
195 |
|
|
$form->setType('accord_tacite', 'hidden'); |
196 |
|
|
$form->setType('action', 'hidden'); |
197 |
|
|
$form->setType('delai_notification', 'hidden'); |
198 |
vpihour |
489 |
$form->setType('avis_decision', 'hidden'); |
199 |
fraynaud |
20 |
$form->setType('archive_delai', 'hidden'); |
200 |
|
|
$form->setType('archive_etat', 'hidden'); |
201 |
|
|
$form->setType('archive_accord_tacite', 'hidden'); |
202 |
|
|
$form->setType('archive_avis', 'hidden'); |
203 |
|
|
$form->setType('archive_date_complet', 'hidden'); |
204 |
|
|
$form->setType('archive_date_rejet', 'hidden'); |
205 |
|
|
$form->setType('archive_date_limite', 'hidden'); |
206 |
|
|
$form->setType('archive_date_notification_delai', 'hidden'); |
207 |
|
|
$form->setType('archive_date_decision', 'hidden'); |
208 |
|
|
$form->setType('archive_date_validite', 'hidden'); |
209 |
|
|
$form->setType('archive_date_achevement', 'hidden'); |
210 |
|
|
$form->setType('archive_date_conformite', 'hidden'); |
211 |
nhaye |
428 |
$form->setType('archive_date_chantier', 'hidden'); |
212 |
fraynaud |
20 |
} |
213 |
fraynaud |
265 |
|
214 |
vpihour |
1058 |
/*Met des valeurs choisies dans certains select du formulaire*/ |
215 |
fraynaud |
20 |
function setSelect(&$form, $maj,&$db,$DEBUG) { |
216 |
atreal |
312 |
if(file_exists ("../sql/".$db->phptype."/".$this->table.".form.inc.php")) |
217 |
|
|
include ("../sql/".$db->phptype."/".$this->table.".form.inc.php"); |
218 |
nhaye |
428 |
|
219 |
|
|
// *** evenement *** |
220 |
|
|
$contenu=array(); |
221 |
|
|
// etat du dossier |
222 |
|
|
$sql="select etat from ".DB_PREFIXE."dossier where dossier ='". |
223 |
|
|
$this->idxformulaire."'"; |
224 |
|
|
$etat_dossier = $db->getOne($sql); |
225 |
nhaye |
1140 |
// nature du dossier d'autorisation |
226 |
|
|
$sql="select code from ".DB_PREFIXE."dossier |
227 |
|
|
INNER JOIN ".DB_PREFIXE."dossier_autorisation ON |
228 |
|
|
dossier.dossier_autorisation = dossier_autorisation.dossier_autorisation |
229 |
|
|
INNER JOIN ".DB_PREFIXE."dossier_autorisation_type_detaille ON |
230 |
|
|
dossier_autorisation.dossier_autorisation_type_detaille = |
231 |
|
|
dossier_autorisation_type_detaille.dossier_autorisation_type_detaille |
232 |
|
|
WHERE dossier ='". |
233 |
|
|
$this->idxformulaire."'"; |
234 |
|
|
$nature_dossier = $db->getOne($sql); |
235 |
|
|
|
236 |
nhaye |
428 |
// recherche des evenement de transition |
237 |
nhaye |
1140 |
// XXX modifier la requète après la modification de structure du workflow |
238 |
|
|
$sql= $sql_transition." where transition.etat ='".$etat_dossier."' and (dossier_autorisation_type_detaille.code ='". |
239 |
|
|
$nature_dossier."' or (dossier_autorisation_type_detaille.code ='T' |
240 |
|
|
and dossier_autorisation_type_detaille.code !='CU')) order by evenement.action"; |
241 |
nhaye |
428 |
|
242 |
|
|
// *** attention en dur le CU |
243 |
vpihour |
1124 |
$this->addToLog("setSelect(): db->query(\"".$sql."\");", VERBOSE_MODE); |
244 |
nhaye |
428 |
|
245 |
|
|
$res = $db->query($sql); |
246 |
|
|
if (database::isError($res)) |
247 |
|
|
die($res->getMessage()); |
248 |
|
|
$contenu[0][0]=""; |
249 |
|
|
$contenu[1][0]=_('choisir')." "._('evenement'); |
250 |
|
|
$k=1; |
251 |
|
|
while ($row=& $res->fetchRow()){ |
252 |
|
|
if($maj==0){ // ajouter |
253 |
|
|
$contenu[0][$k]=$row[0]; |
254 |
|
|
$contenu[1][$k]=$row[1]; |
255 |
|
|
$k++; |
256 |
|
|
}else{ |
257 |
|
|
// select hiddenstatic |
258 |
|
|
$contenu[0][$k]=$row[0]; |
259 |
|
|
$contenu[1][$k]=$row[1]; |
260 |
|
|
$k++; |
261 |
fraynaud |
20 |
} |
262 |
|
|
} |
263 |
nhaye |
428 |
$form->setSelect("evenement",$contenu); |
264 |
|
|
// lien bible_auto [link] |
265 |
|
|
$contenu=array(); |
266 |
|
|
$contenu[0]=" automatique "; |
267 |
|
|
$form->setSelect("bible_auto",$contenu); |
268 |
|
|
// lien bible1 |
269 |
|
|
$contenu=array(); |
270 |
|
|
$contenu[0]=" Bible "; |
271 |
|
|
$form->setSelect("bible",$contenu); |
272 |
|
|
// lien bible2 |
273 |
|
|
$contenu=array(); |
274 |
|
|
$contenu[0]=" Bible "; |
275 |
|
|
$form->setSelect("bible2",$contenu); |
276 |
fraynaud |
20 |
} // function select |
277 |
|
|
|
278 |
|
|
function setGroupe(&$form,$maj){ |
279 |
|
|
$form->setGroupe('evenement','D'); |
280 |
|
|
$form->setGroupe('libelle','G'); |
281 |
vpihour |
1127 |
$form->setGroupe('date_evenement','G'); |
282 |
fraynaud |
20 |
$form->setGroupe('lettretype','F'); |
283 |
|
|
} |
284 |
|
|
|
285 |
|
|
function setRegroupe(&$form,$maj){ |
286 |
|
|
$form->setRegroupe('evenement','D',_('evenement'), "collapsible"); |
287 |
|
|
$form->setRegroupe('libelle','G',''); |
288 |
vpihour |
1127 |
$form->setRegroupe('date_evenement','G',''); |
289 |
fraynaud |
20 |
$form->setRegroupe('lettretype','F',''); |
290 |
fraynaud |
196 |
$form->setRegroupe('complement','D',_('complement'), "collapsible"); |
291 |
fraynaud |
20 |
$form->setRegroupe('bible_auto','G',''); |
292 |
|
|
$form->setRegroupe('bible','F',''); |
293 |
|
|
$form->setRegroupe('complement2','D',_('complement2'), "startClosed"); |
294 |
|
|
$form->setRegroupe('bible2','F',''); |
295 |
|
|
} |
296 |
|
|
|
297 |
vpihour |
1058 |
/*Change le libellé de certains champs*/ |
298 |
fraynaud |
20 |
function setLib(&$form,$maj) { |
299 |
|
|
parent :: setLib($form,$maj); |
300 |
|
|
$form->setLib('libelle',' '); |
301 |
|
|
$form->setLib('bible_auto',""); |
302 |
|
|
$form->setLib('bible',""); |
303 |
|
|
$form->setLib('bible2',""); |
304 |
|
|
$form->setLib('lettretype',"->"._(" courrier ")); |
305 |
vpihour |
1127 |
$form->setLib('date_evenement',_(" du ")); |
306 |
fraynaud |
20 |
} |
307 |
|
|
|
308 |
|
|
// ================================================================== |
309 |
vpihour |
1058 |
// trigger avant modification des données [trigger before modify data] |
310 |
fraynaud |
20 |
// ================================================================== |
311 |
|
|
function triggerajouter($id,&$db,$val,$DEBUG) { |
312 |
|
|
// mise a jour instruction avec evenement |
313 |
|
|
// [modify instruction with evenement] |
314 |
fraynaud |
242 |
$sql= "select * from ".DB_PREFIXE."evenement where evenement =".$this->valF['evenement']; |
315 |
vpihour |
1137 |
|
316 |
fraynaud |
20 |
$res = $db->query($sql); |
317 |
fraynaud |
129 |
if (database::isError($res)) die($res->getMessage()); |
318 |
vpihour |
1137 |
|
319 |
fraynaud |
20 |
if ($DEBUG == 1) |
320 |
|
|
echo " la requete ".$sql." est exécutée<br>"; |
321 |
vpihour |
1137 |
|
322 |
fraynaud |
20 |
while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC)){ |
323 |
vpihour |
1137 |
|
324 |
nhaye |
460 |
if(isset($row['action']) and !empty($row['action'])) { |
325 |
|
|
$this->valF['action']=$row['action']; |
326 |
|
|
} else { |
327 |
|
|
$this->valF['action']=NULL; |
328 |
|
|
} |
329 |
fraynaud |
20 |
$this->valF['delai']=$row['delai']; |
330 |
nhaye |
460 |
if(isset($row['etat']) and !empty($row['etat'])) { |
331 |
|
|
$this->valF['etat']=$row['etat']; |
332 |
|
|
} else { |
333 |
|
|
$this->valF['etat']=NULL; |
334 |
|
|
} |
335 |
fraynaud |
20 |
$this->valF['accord_tacite']=$row['accord_tacite']; |
336 |
|
|
$this->valF['delai_notification']=$row['delai_notification']; |
337 |
vpihour |
489 |
if(isset($row['avis_decision']) and !empty($row['avis_decision'])) { |
338 |
|
|
$this->valF['avis_decision']=$row['avis_decision']; |
339 |
nhaye |
460 |
} else { |
340 |
vpihour |
489 |
$this->valF['avis_decision']=NULL; |
341 |
nhaye |
460 |
} |
342 |
fraynaud |
20 |
if($row['lettretype']!="") |
343 |
|
|
$this->valF['lettretype']=$row['lettretype']; |
344 |
|
|
else |
345 |
|
|
$this->valF['lettretype']="standard"; |
346 |
vpihour |
1137 |
|
347 |
fraynaud |
20 |
} |
348 |
fraynaud |
242 |
$sql= "select * from ".DB_PREFIXE."dossier where dossier = '".$this->valF['dossier']."'"; |
349 |
fraynaud |
20 |
$res = $db->query($sql); |
350 |
|
|
if (database::isError($res)) |
351 |
|
|
die($res->getMessage()); |
352 |
|
|
if ($DEBUG == 1) |
353 |
|
|
echo " la requete ".$sql." est exécutée<br>"; |
354 |
|
|
while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC)){ |
355 |
|
|
// |
356 |
|
|
$this->archive_date_depot = $row['date_depot']; |
357 |
|
|
// archive en instruction (si suppression) |
358 |
|
|
$this->valF['archive_delai']=$row['delai']; |
359 |
|
|
$this->valF['archive_accord_tacite']=$row['accord_tacite']; |
360 |
|
|
$this->valF['archive_etat']=$row['etat']; |
361 |
vpihour |
489 |
$this->valF['archive_avis']=$row['avis_decision']; |
362 |
fraynaud |
20 |
// compatibilite pgsql |
363 |
|
|
if($row['date_complet']!='') |
364 |
|
|
$this->valF['archive_date_complet']=$row['date_complet']; |
365 |
|
|
if($row['date_rejet']!='') |
366 |
|
|
$this->valF['archive_date_rejet']= $row['date_rejet']; |
367 |
|
|
if($row['date_limite']!='') |
368 |
|
|
$this->valF['archive_date_limite']= $row['date_limite']; |
369 |
|
|
if($row['date_notification_delai']!='') |
370 |
|
|
$this->valF['archive_date_notification_delai']= $row['date_notification_delai']; |
371 |
|
|
if($row['date_decision']!='') |
372 |
|
|
$this->valF['archive_date_decision']= $row['date_decision']; |
373 |
|
|
if($row['date_validite']!='') |
374 |
|
|
$this->valF['archive_date_validite']= $row['date_validite']; |
375 |
|
|
if($row['date_achevement']!='') |
376 |
|
|
$this->valF['archive_date_achevement']= $row['date_achevement']; |
377 |
|
|
if($row['date_chantier']!='') |
378 |
|
|
$this->valF['archive_date_chantier']= $row['date_chantier']; |
379 |
|
|
if($row['date_conformite']!='') |
380 |
|
|
$this->valF['archive_date_conformite']= $row['date_conformite']; |
381 |
|
|
} |
382 |
|
|
} |
383 |
|
|
|
384 |
vpihour |
1137 |
// Test si une restriction est valide |
385 |
|
|
// return boolean |
386 |
|
|
function restrictionIsValid($restriction){ |
387 |
|
|
|
388 |
|
|
/* Met des espace avant et après les opérateurs puis transforme la chaine en |
389 |
|
|
* un tableau */ |
390 |
|
|
$tabRestriction = str_replace(">="," >= ", |
391 |
|
|
str_replace("<="," <= ", |
392 |
|
|
str_replace("-"," - ", |
393 |
|
|
str_replace("+"," + ",$restriction)))); |
394 |
|
|
$tabRestriction = explode( " ", $tabRestriction); |
395 |
|
|
|
396 |
|
|
//Variables de résultat |
397 |
|
|
$res = array(); |
398 |
|
|
$i = 0; |
399 |
|
|
$comp = ""; |
400 |
|
|
|
401 |
|
|
|
402 |
|
|
//Test que le tableau n'est pas vide |
403 |
|
|
if ( count($tabRestriction) > 0 ){ |
404 |
|
|
|
405 |
|
|
$res[0] = $this->getRestrictionValue($tabRestriction[0]); |
406 |
|
|
|
407 |
|
|
//Calcul des variables |
408 |
|
|
for ( $j = 1 ; $j < count($tabRestriction) ; $j += 2 ) { |
409 |
|
|
|
410 |
|
|
//Variable de comparaison |
411 |
|
|
if ( strcmp( ">=", $tabRestriction[$j] ) == 0 || |
412 |
|
|
strcmp( "<=", $tabRestriction[$j]) ==0 ){ |
413 |
|
|
|
414 |
|
|
$comp = $tabRestriction[$j]; |
415 |
|
|
$res[++$i] = $this->getRestrictionValue($tabRestriction[$j+1]); |
416 |
|
|
} |
417 |
|
|
// Fait l'addition |
418 |
|
|
elseif ( strcmp( "+", $tabRestriction[$j]) == 0 ){ |
419 |
|
|
|
420 |
|
|
$res[$i] = $this->moisdate( $res[$i], $this->getRestrictionValue($tabRestriction[$j+1]) ); |
421 |
|
|
} |
422 |
|
|
} |
423 |
|
|
} |
424 |
|
|
|
425 |
|
|
// Effectue le test |
426 |
|
|
if ( strcmp($comp, ">=") == 0 ){ |
427 |
|
|
|
428 |
|
|
if ( $res[0] >= $res[1] || $res[0] == "" ){ |
429 |
|
|
|
430 |
|
|
return true; |
431 |
|
|
} |
432 |
|
|
else { |
433 |
|
|
|
434 |
|
|
return false; |
435 |
|
|
} |
436 |
|
|
} |
437 |
|
|
elseif ( strcmp($comp, "<=") == 0 ){ |
438 |
|
|
|
439 |
|
|
if ( $res[0] <= $res[1] || $res[1] == "" ){ |
440 |
|
|
|
441 |
|
|
return true; |
442 |
|
|
} |
443 |
|
|
else { |
444 |
|
|
|
445 |
|
|
return false; |
446 |
|
|
} |
447 |
|
|
} |
448 |
|
|
|
449 |
|
|
return true; |
450 |
|
|
} |
451 |
|
|
|
452 |
|
|
//Retourne la valeur de valF si $restrictionValue n'est pas un chiffre, le chiffre sinon |
453 |
|
|
function getRestrictionValue($restrictionValue){ |
454 |
|
|
|
455 |
|
|
return ( is_numeric($restrictionValue) ) ? |
456 |
|
|
$restrictionValue : |
457 |
|
|
$this->valF[$restrictionValue]; |
458 |
|
|
} |
459 |
|
|
|
460 |
fraynaud |
123 |
function regle($regle){ |
461 |
|
|
$temp = explode ("+",$regle); |
462 |
atreal |
208 |
//echo '|'.$regle; |
463 |
fraynaud |
124 |
// cas rejet |
464 |
fraynaud |
129 |
if($regle=="null") // 1 dimension -> null |
465 |
fraynaud |
124 |
return null; |
466 |
|
|
if(sizeof($temp)==1) // 1 dimension |
467 |
|
|
if($temp[0]=="archive_date_depot") // initialisation avec le depot |
468 |
fraynaud |
123 |
return $this->$regle; |
469 |
fraynaud |
124 |
else // cas general |
470 |
fraynaud |
123 |
return $this->valF[$regle]; |
471 |
fraynaud |
124 |
if(sizeof($temp)==2){ // 2 dimensions |
472 |
|
|
if($temp[0]=="archive_date_depot") //initialisation avec le depot |
473 |
fraynaud |
123 |
if(is_numeric($temp[1])) |
474 |
|
|
return $this->moisdate($this->$temp[0], $temp[1]); |
475 |
|
|
else |
476 |
|
|
return $this->moisdate($this->$temp[0], $this->valF[$temp[1]]); |
477 |
fraynaud |
124 |
if($temp[0]=="archive_delai") // majoration de delai |
478 |
|
|
return $this->valF[$temp[0]]+$this->valF[$temp[1]]; |
479 |
|
|
// cas general 2 dimensions |
480 |
fraynaud |
123 |
if(is_numeric($temp[1])) |
481 |
|
|
return $this->moisdate($this->valF[$temp[0]], $temp[1]); |
482 |
|
|
else |
483 |
|
|
return $this->moisdate($this->valF[$temp[0]], $this->valF[$temp[1]]); |
484 |
|
|
} |
485 |
fraynaud |
124 |
if(sizeof($temp)==3){ // 3 dimensions |
486 |
|
|
// cas date de validite de sursis |
487 |
|
|
if(is_numeric($temp[1])) |
488 |
|
|
$temp1 = $this->moisdate($this->valF[$temp[0]], $temp[1]); |
489 |
|
|
else |
490 |
|
|
$temp1 = $this->moisdate($this->valF[$temp[0]], $this->valF[$temp[1]]); |
491 |
|
|
if(is_numeric($temp[2])) |
492 |
|
|
return $this->moisdate($temp1, $temp[2]); |
493 |
|
|
else |
494 |
|
|
return $this->moisdate($temp1, $this->valF[$temp[2]]); |
495 |
|
|
} |
496 |
fraynaud |
123 |
} |
497 |
|
|
|
498 |
|
|
|
499 |
|
|
|
500 |
fraynaud |
20 |
// ================================================================== |
501 |
|
|
// valeur dossier apres modification [values dossier after action] |
502 |
|
|
// ================================================================== |
503 |
|
|
function triggerajouterapres($id,&$db,$val,$DEBUG) { |
504 |
fraynaud |
47 |
// mise a null au lieu de "" / voir compatibilite mysql |
505 |
|
|
// voir parametrage CU en dur |
506 |
|
|
// voir parametrage des actions en dur |
507 |
fraynaud |
123 |
$param=1; |
508 |
fraynaud |
121 |
if($param==1){ |
509 |
fraynaud |
242 |
$sql="select * from ".DB_PREFIXE."action where action = '".$this->valF['action']."'"; |
510 |
fraynaud |
121 |
$res = $db->query($sql); |
511 |
|
|
if (database::isError($res)) |
512 |
|
|
die($res->getMessage()); |
513 |
|
|
while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC)){ |
514 |
|
|
if($row['regle_etat']!=''){ |
515 |
fraynaud |
123 |
$valF['etat']= $this->regle($row['regle_etat']); |
516 |
fraynaud |
121 |
} |
517 |
|
|
if($row['regle_delai']!=''){ |
518 |
fraynaud |
123 |
$valF['delai']= $this->regle($row['regle_delai']); |
519 |
fraynaud |
121 |
} |
520 |
|
|
if($row['regle_accord_tacite']!=''){ |
521 |
fraynaud |
123 |
$valF['accord_tacite']= $this->regle($row['regle_accord_tacite']); |
522 |
fraynaud |
121 |
} |
523 |
fraynaud |
124 |
if($row['regle_avis']!=''){ |
524 |
vpihour |
489 |
$valF['avis_decision']= $this->regle($row['regle_avis']); |
525 |
fraynaud |
124 |
} |
526 |
fraynaud |
121 |
if($row['regle_date_limite']!=''){ |
527 |
fraynaud |
123 |
$valF['date_limite']= $this->regle($row['regle_date_limite']); |
528 |
|
|
} |
529 |
|
|
if($row['regle_date_complet']!=''){ |
530 |
|
|
$valF['date_complet']= $this->regle($row['regle_date_complet']); |
531 |
|
|
} |
532 |
|
|
if($row['regle_date_notification_delai']!=''){ |
533 |
|
|
$valF['date_notification_delai']= $this->regle($row['regle_date_notification_delai']); |
534 |
|
|
} |
535 |
fraynaud |
124 |
if($row['regle_date_decision']!=''){ |
536 |
|
|
$valF['date_decision']= $this->regle($row['regle_date_decision']); |
537 |
|
|
} |
538 |
|
|
if($row['regle_date_rejet']!=''){ |
539 |
|
|
$valF['date_rejet']= $this->regle($row['regle_date_rejet']); |
540 |
|
|
} |
541 |
|
|
if($row['regle_date_validite']!=''){ |
542 |
|
|
$valF['date_validite']= $this->regle($row['regle_date_validite']); |
543 |
|
|
} |
544 |
|
|
if($row['regle_date_chantier']!=''){ |
545 |
|
|
$valF['date_chantier']= $this->regle($row['regle_date_chantier']); |
546 |
|
|
} |
547 |
|
|
if($row['regle_date_achevement']!=''){ |
548 |
|
|
$valF['date_achevement']= $this->regle($row['regle_date_achevement']); |
549 |
|
|
} |
550 |
|
|
if($row['regle_date_conformite']!=''){ |
551 |
|
|
$valF['date_conformite']= $this->regle($row['regle_date_conformite']); |
552 |
|
|
} |
553 |
fraynaud |
121 |
} |
554 |
|
|
}else{ |
555 |
fraynaud |
242 |
switch ($this->valF['action']) { |
556 |
|
|
case "initialisation" : |
557 |
|
|
$valF['delai']= $this->valF['delai']; |
558 |
|
|
$valF['etat']= $this->valF['etat']; |
559 |
|
|
$valF['accord_tacite']= $this->valF['accord_tacite']; |
560 |
|
|
// la date_complet est la date de depot |
561 |
|
|
$valF['date_complet']= $this->archive_date_depot; // **** |
562 |
|
|
$valF['date_limite'] = $this->moisdate($valF['date_complet'],$valF['delai']); |
563 |
|
|
$valF['date_notification_delai'] = $this->moisdate($valF['date_complet'],1); |
564 |
|
|
break; |
565 |
|
|
case "notification" : |
566 |
|
|
$valF['delai']= $this->valF['delai']; |
567 |
|
|
$valF['etat']= $this->valF['etat']; |
568 |
|
|
$valF['accord_tacite']= $this->valF['accord_tacite']; |
569 |
|
|
// la date_complet est celle precedemment saisie |
570 |
|
|
$valF['date_complet']=$this->valF['archive_date_complet']; |
571 |
|
|
$valF['date_limite'] = $this->moisdate($valF['date_complet'],$valF['delai']); |
572 |
|
|
$valF['date_notification_delai'] = $this->moisdate($valF['date_complet'],1); |
573 |
|
|
// la date du courrier ne doit pas etre depasse par rapport au delai de |
574 |
|
|
// notification [verify notification date] |
575 |
vpihour |
1127 |
if($this->valF['archive_date_notification_delai']<$this->valF['date_evenement']) |
576 |
fraynaud |
242 |
$this->msg=$this->msg."<br><img src='../img/erreur.gif'> "._("date_notification_delai")." ". |
577 |
vpihour |
1127 |
$this->valF['archive_date_notification_delai']." < "._('date_evenement'); |
578 |
fraynaud |
242 |
// |
579 |
|
|
break; |
580 |
|
|
case "retour" : |
581 |
|
|
$valF['delai']= $this->valF['delai']; |
582 |
|
|
$valF['etat']= $this->valF['etat']; |
583 |
|
|
$valF['accord_tacite']= $this->valF['accord_tacite']; |
584 |
|
|
// la date_complet est celle de l evenement |
585 |
vpihour |
1127 |
$valF['date_complet']= $this->valF['date_evenement']; |
586 |
fraynaud |
242 |
$valF['date_limite'] = $this->moisdate($valF['date_complet'],$valF['delai']); |
587 |
|
|
$valF['date_notification_delai'] = $this->moisdate($valF['date_complet'],1); |
588 |
|
|
break; |
589 |
|
|
case "rejet" : |
590 |
|
|
//$valF['delai']=0; // *** delai a garder pour etat dpc |
591 |
|
|
$valF['etat']= $this->valF['etat']; |
592 |
|
|
$valF['accord_tacite']= $this->valF['accord_tacite']; |
593 |
|
|
// la date rejet est initialisee |
594 |
vpihour |
1127 |
$valF['date_rejet']= $this->valF['date_evenement']; |
595 |
fraynaud |
242 |
// les dates de depart et fin d instruction sont annulées |
596 |
|
|
$valF['date_limite'] =null; |
597 |
|
|
$valF['date_notification_delai'] =null; |
598 |
|
|
$valF['date_complet']=null; |
599 |
|
|
break; |
600 |
|
|
case "majoration" : |
601 |
|
|
$valF['delai']= $this->valF['archive_delai']+$this->valF['delai']; |
602 |
|
|
$valF['etat']= $this->valF['etat']; |
603 |
|
|
$valF['accord_tacite']= $this->valF['accord_tacite']; |
604 |
|
|
$valF['date_complet']=$this->valF['archive_date_complet']; |
605 |
|
|
// majoration de la date limite |
606 |
|
|
$valF['date_limite'] = $this->moisdate($valF['date_complet'],$valF['delai']); |
607 |
|
|
$valF['date_notification_delai'] = $this->moisdate($valF['date_complet'],1); |
608 |
|
|
// la date du courrier ne doit pas etre depasse par rapport au delai de |
609 |
|
|
// notification |
610 |
vpihour |
1127 |
if($this->valF['archive_date_notification_delai']<$this->valF['date_evenement']) |
611 |
fraynaud |
242 |
$this->msg=$this->msg."<br><img src='../img/erreur.gif'>"._("date_notification_delai"). |
612 |
vpihour |
1127 |
$this->valF['archive_date_notification_delai']." < "._('date_evenement'); |
613 |
fraynaud |
242 |
break; |
614 |
|
|
case "acceptation" : |
615 |
|
|
$valF['etat']= $this->valF['etat']; |
616 |
vpihour |
1127 |
$valF['date_decision']= $this->valF['date_evenement']; |
617 |
vpihour |
489 |
$valF['avis_decision']= $this->valF['avis_decision']; |
618 |
fraynaud |
242 |
// date de validite = date de l evenement + delai |
619 |
vpihour |
1127 |
$valF['date_validite'] = $this->moisdate($this->valF['date_evenement'],$this->valF['delai']); |
620 |
fraynaud |
242 |
break; |
621 |
|
|
case "refus" : |
622 |
|
|
$valF['etat']= $this->valF['etat']; |
623 |
vpihour |
1127 |
$valF['date_decision']= $this->valF['date_evenement']; |
624 |
vpihour |
489 |
$valF['avis_decision']= $this->valF['avis_decision']; |
625 |
fraynaud |
242 |
break; |
626 |
|
|
case "prolongation" : |
627 |
|
|
$valF['date_validite'] = $this->moisdate($this->valF['archive_date_validite'],$this->valF['delai']); |
628 |
|
|
break; |
629 |
|
|
case "sursis" : |
630 |
vpihour |
1127 |
$valF['date_limite'] = $this->moisdate($this->valF['date_evenement'],$this->valF['delai']); |
631 |
fraynaud |
242 |
$valF['etat']= $this->valF['etat']; |
632 |
|
|
$valF['accord_tacite']= $this->valF['accord_tacite']; |
633 |
vpihour |
489 |
$valF['avis_decision']= $this->valF['avis_decision']; |
634 |
vpihour |
1127 |
$valF['date_decision']= $this->valF['date_evenement']; |
635 |
fraynaud |
242 |
$temp = $valF['date_limite']; |
636 |
|
|
$valF['date_validite']= $this->moisdate($temp,2); |
637 |
|
|
break; |
638 |
|
|
case "execution" : |
639 |
|
|
$valF['etat']= $this->valF['etat']; |
640 |
vpihour |
1127 |
$valF['date_chantier'] = $this->valF['date_evenement']; |
641 |
fraynaud |
242 |
//echo $this->msg=$this->msg.$valF['date_chantier'].""; |
642 |
|
|
break; |
643 |
|
|
case "achevement" : |
644 |
|
|
$valF['etat']= $this->valF['etat']; |
645 |
vpihour |
1127 |
$valF['date_achevement'] = $this->valF['date_evenement']; |
646 |
fraynaud |
242 |
break; |
647 |
|
|
case "archivage" : |
648 |
|
|
$valF['etat']= $this->valF['etat']; |
649 |
vpihour |
1127 |
$valF['date_conformite'] = $this->valF['date_evenement']; |
650 |
fraynaud |
242 |
break; |
651 |
|
|
|
652 |
|
|
default: |
653 |
|
|
if ($this->valF['etat']!="") |
654 |
|
|
$valF['etat']= $this->valF['etat']; |
655 |
|
|
}// end switch |
656 |
fraynaud |
121 |
} // end param |
657 |
fraynaud |
20 |
if($valF!=""){ |
658 |
|
|
$cle= " dossier = '".$this->valF['dossier']."'"; |
659 |
fraynaud |
242 |
$res1= $db->autoExecute(DB_PREFIXE.'dossier',$valF,DB_AUTOQUERY_UPDATE,$cle); |
660 |
fraynaud |
20 |
if (database::isError($res1)) |
661 |
|
|
die($res->getMessage()); |
662 |
|
|
if ($DEBUG == 1) |
663 |
|
|
echo "La requête de mise à jour est effectuée.<br>"; |
664 |
|
|
$this->msg=$this->msg."<br>"._('enregistrement')." ". |
665 |
|
|
$this->valF['dossier']." "._('table')." dossier [". |
666 |
|
|
$db->affectedRows()." "._('enregistrement'). |
667 |
|
|
" "._('mis_a_jour')."]" ; |
668 |
|
|
} |
669 |
fmichon |
1005 |
// verification si envoi vers ERP est active |
670 |
|
|
if ($this->f->getParameter('option_erp') != "") { |
671 |
|
|
// la nature du dossier |
672 |
|
|
$nature_dossier = substr($this->idxformulaire,0,2); |
673 |
|
|
$dossier_erp = $this->getFromDB("SELECT erp FROM ".DB_PREFIXE."dossier WHERE dossier = '" . |
674 |
|
|
$this->valF['dossier'] . "'"); |
675 |
|
|
$evenement_libelle = $this->getFromDB( |
676 |
|
|
"SELECT libelle FROM ".DB_PREFIXE."evenement WHERE evenement = '" . |
677 |
|
|
$this->valF['evenement'] . "'"); |
678 |
|
|
if ($dossier_erp == 't') { |
679 |
|
|
// envoi du message en cas d'un PC qui est ERP et sur lequel un evenement |
680 |
|
|
// d'acceptation etait fait |
681 |
|
|
if ($nature_dossier == |
682 |
|
|
$this->f->getParameter('erp_evenement_accepter_dossier_PC') |
683 |
|
|
&& $this->valF['evenement'] == |
684 |
|
|
$this->f->getParameter('erp_evenement_accepter_sans_reserve')) { |
685 |
|
|
$msgenque = new MessageEnqueuer(); |
686 |
|
|
$msgenque->setDossierInstructionIdentifier($this->valF['dossier']); |
687 |
|
|
$msgenque->setDecision($evenement_libelle); |
688 |
|
|
$msgenque->enqueueMessage($msgenque::$ERP_ARRETE_PC_EFFECTUE); |
689 |
|
|
} |
690 |
|
|
if ($this->valF['evenement'] == |
691 |
|
|
$this->f->getParameter('erp_evenement_refuser_dossier')) { |
692 |
|
|
$msgenque = new MessageEnqueuer(); |
693 |
|
|
$msgenque->setDossierInstructionIdentifier($this->valF['dossier']); |
694 |
|
|
$msgenque->enqueueMessage($msgenque::$ERP_DECISION_CONFORMITE_EFFECTUE); |
695 |
|
|
} |
696 |
mlimic |
936 |
} |
697 |
fmichon |
1005 |
} // fin de if ($this->f->getParameter('option_erp') != "") |
698 |
fraynaud |
20 |
} |
699 |
mlimic |
910 |
|
700 |
|
|
|
701 |
|
|
/** |
702 |
|
|
* Fait une requette sql pour extraire la valeur d'un champ, et retourne |
703 |
|
|
* cette valeur |
704 |
|
|
* @param string $sql La requete sql a executer |
705 |
|
|
* @return La valeur du champs cherche, sinon NULL. En cas d'erreur de la BD |
706 |
|
|
* l'execution s'arrete. |
707 |
|
|
*/ |
708 |
|
|
function getFromDB($sql) { |
709 |
fmichon |
926 |
//$sql = "SELECT libelle FROM ".DB_PREFIXE."dossier WHERE dossier = '" . $dossier . "'"; |
710 |
mlimic |
910 |
$res = $this->db->limitquery($sql, 0, 1); |
711 |
|
|
$this->addToLog("getDossierERPSpecification(): db->limitquery(\"". |
712 |
|
|
str_replace(",",", ",$sql)."\", 0, 1);", VERBOSE_MODE); |
713 |
|
|
// Si une erreur survient on die |
714 |
|
|
if (database::isError($res, true)) { |
715 |
|
|
// Appel de la methode de recuperation des erreurs |
716 |
|
|
$this->erreur_db($res->getDebugInfo(), $res->getMessage(), 'instruction'); |
717 |
|
|
} |
718 |
|
|
// retourne la nature du dossier |
719 |
|
|
while ($row =& $res->fetchRow()) { |
720 |
|
|
return $row[0]; |
721 |
|
|
} |
722 |
|
|
// la nature n'etait pas trouve, ce qui ne devrait pas se passer |
723 |
|
|
return NULL; |
724 |
fraynaud |
129 |
|
725 |
mlimic |
910 |
} |
726 |
|
|
|
727 |
|
|
|
728 |
fraynaud |
129 |
function triggermodifierapres($id,&$db,$val,$DEBUG) { |
729 |
|
|
/* |
730 |
vpihour |
1058 |
* cette fonction a pour objet de permettre de modifier la date courrier |
731 |
fraynaud |
129 |
*/ |
732 |
|
|
$valF=array(); |
733 |
fraynaud |
242 |
$sql= "select action from ".DB_PREFIXE."evenement where evenement =".$this->valF['evenement']; |
734 |
fraynaud |
129 |
$action = $db->getOne($sql); |
735 |
|
|
if (database::isError($action)) die($action->getMessage().$sql); |
736 |
fraynaud |
242 |
$sql="select * from ".DB_PREFIXE."action where action = '".$action."'"; |
737 |
fraynaud |
129 |
$res = $db->query($sql); |
738 |
|
|
if (database::isError($res)) die($res->getMessage().$sql); |
739 |
|
|
while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC)){ |
740 |
|
|
// application des regles sur le courrier + delai |
741 |
vpihour |
1127 |
if(preg_match("/date_evenement/",$row['regle_date_limite'])){ |
742 |
fraynaud |
129 |
$valF['date_limite']= $this->regle($row['regle_date_limite']); |
743 |
|
|
} |
744 |
vpihour |
1127 |
if(preg_match("/date_evenement/",$row['regle_date_complet'])){ |
745 |
fraynaud |
129 |
$valF['date_complet']= $this->regle($row['regle_date_complet']); |
746 |
|
|
} |
747 |
vpihour |
1127 |
if(preg_match("/date_evenement/",$row['regle_date_notification_delai'])){ |
748 |
fraynaud |
129 |
$valF['date_notification_delai']= $this->regle($row['regle_date_notification_delai']); |
749 |
|
|
} |
750 |
vpihour |
1127 |
if(preg_match("/date_evenement/",$row['regle_date_decision'])){ |
751 |
fraynaud |
129 |
$valF['date_decision']= $this->regle($row['regle_date_decision']); |
752 |
|
|
} |
753 |
vpihour |
1127 |
if(preg_match("/date_evenement/",$row['regle_date_rejet'])){ |
754 |
fraynaud |
129 |
$valF['date_rejet']= $this->regle($row['regle_date_rejet']); |
755 |
|
|
} |
756 |
vpihour |
1127 |
if(preg_match("/date_evenement/",$row['regle_date_validite'])){ |
757 |
fraynaud |
129 |
$valF['date_validite']= $this->regle($row['regle_date_validite']); |
758 |
|
|
} |
759 |
vpihour |
1127 |
if(preg_match("/date_evenement/",$row['regle_date_chantier'])){ |
760 |
fraynaud |
129 |
$valF['date_chantier']= $this->regle($row['regle_date_chantier']); |
761 |
|
|
} |
762 |
vpihour |
1127 |
if(preg_match("/date_evenement/",$row['regle_date_achevement'])){ |
763 |
fraynaud |
129 |
$valF['date_achevement']= $this->regle($row['regle_date_achevement']); |
764 |
|
|
} |
765 |
vpihour |
1127 |
if(preg_match("/date_evenement/",$row['regle_date_conformite'])){ |
766 |
fraynaud |
129 |
$valF['date_conformite']= $this->regle($row['regle_date_conformite']); |
767 |
|
|
} |
768 |
|
|
} // while |
769 |
|
|
if($valF!=array()){ |
770 |
|
|
$cle= " dossier = '".$this->valF['dossier']."'"; |
771 |
fraynaud |
242 |
$res1= $db->autoExecute(DB_PREFIXE.'dossier',$valF,DB_AUTOQUERY_UPDATE,$cle); |
772 |
fraynaud |
129 |
if (database::isError($res1)) |
773 |
|
|
die($res->getMessage()); |
774 |
|
|
if ($DEBUG == 1) |
775 |
|
|
echo "La requête de mise à jour est effectuée.<br>"; |
776 |
|
|
$this->msg=$this->msg."<br>"._('enregistrement')." ". |
777 |
|
|
$this->valF['dossier']." "._('table')." dossier [". |
778 |
|
|
$db->affectedRows()." "._('enregistrement'). |
779 |
|
|
" "._('mis_a_jour')."]" ; |
780 |
|
|
} |
781 |
|
|
} |
782 |
|
|
|
783 |
|
|
|
784 |
fraynaud |
20 |
|
785 |
|
|
// trigger before delete |
786 |
|
|
function triggersupprimer($id,&$db,$val,$DEBUG) { |
787 |
|
|
// archive en instruction (si suppression) [archive if delete instruction] |
788 |
|
|
$valF['delai']=$val['archive_delai']; |
789 |
|
|
$valF['accord_tacite']=$val['archive_accord_tacite']; |
790 |
|
|
$valF['etat']=$val['archive_etat']; |
791 |
fraynaud |
80 |
if($val['archive_avis']=='') |
792 |
vpihour |
489 |
$valF['avis_decision']= null; |
793 |
fraynaud |
80 |
else |
794 |
vpihour |
489 |
$valF['avis_decision']=$val['archive_avis']; |
795 |
fraynaud |
20 |
// if= compatibilite pgsql |
796 |
|
|
if($val['archive_date_complet']!='') |
797 |
|
|
$valF['date_complet']=$val['archive_date_complet']; |
798 |
|
|
if($val['archive_date_rejet']!='') |
799 |
|
|
$valF['date_rejet']= $val['archive_date_rejet']; |
800 |
|
|
if($val['archive_date_limite']!='') |
801 |
|
|
$valF['date_limite']= $val['archive_date_limite']; |
802 |
|
|
if($val['archive_date_notification_delai']!='') |
803 |
|
|
$valF['date_notification_delai']= $val['archive_date_notification_delai']; |
804 |
|
|
if($val['archive_date_decision']!='') |
805 |
|
|
$valF['date_decision']= $val['archive_date_decision']; |
806 |
|
|
if($val['archive_date_validite']!='') |
807 |
|
|
$valF['date_validite']= $val['archive_date_validite']; |
808 |
|
|
if($val['archive_date_achevement']!='') |
809 |
|
|
$valF['date_achevement']= $val['archive_date_achevement']; |
810 |
|
|
if($val['archive_date_chantier']!='') |
811 |
|
|
$valF['date_chantier']= $val['archive_date_chantier']; |
812 |
|
|
if($val['archive_date_conformite']!='') |
813 |
|
|
$valF['date_conformite']= $val['archive_date_conformite']; |
814 |
fraynaud |
80 |
|
815 |
fraynaud |
20 |
$cle= " dossier = '".$val['dossier']."'"; |
816 |
fraynaud |
242 |
$res= $db->autoExecute(DB_PREFIXE.'dossier',$valF,DB_AUTOQUERY_UPDATE,$cle); |
817 |
fraynaud |
20 |
if (database::isError($res)) |
818 |
|
|
die($res->getMessage()); |
819 |
|
|
else{ |
820 |
|
|
if ($DEBUG == 1) |
821 |
|
|
echo "La requête de mise à jour est effectuée.<br>"; |
822 |
|
|
} |
823 |
|
|
} |
824 |
|
|
// ============================================= |
825 |
|
|
// calcul de date avec ajout de mois (delais) |
826 |
|
|
// [add months (delay) and calculation final date] |
827 |
|
|
// LIMITE DE LA FONCTION si delai >24 MOIS |
828 |
|
|
// [limit : delay < 24 month] |
829 |
|
|
// ============================================= |
830 |
|
|
function moisdate($date,$delaimois) { |
831 |
|
|
$temp = explode("-" , $date); |
832 |
|
|
$jour = (int) $temp[2]; |
833 |
|
|
$mois = (int) $temp[1]; |
834 |
|
|
$annee = (int) $temp[0]; |
835 |
|
|
// calcul si delai superieur à 12 (limite 24) [delay > 24 month] |
836 |
|
|
if($delaimois>=12){ |
837 |
|
|
$delaimois=$delaimois-12; |
838 |
|
|
$annee=$annee+1; |
839 |
|
|
} |
840 |
|
|
if($delaimois>=12){ |
841 |
|
|
$delaimois=$delaimois-12; |
842 |
|
|
$annee=$annee+1; |
843 |
|
|
} |
844 |
|
|
// mois |
845 |
|
|
$mois=$mois+$delaimois; |
846 |
|
|
// calcul mois annee [calculation number of years if > 12 month] |
847 |
|
|
// nb de mois > à 12 |
848 |
|
|
if ($mois>12){ |
849 |
|
|
$mois=$mois-12; |
850 |
|
|
$annee=$annee+1; |
851 |
|
|
} |
852 |
|
|
// Calcul du nombre de jours dans le mois sélectionné [calculation number of days] |
853 |
|
|
switch($mois) { |
854 |
|
|
case "2": |
855 |
|
|
if ($annee % 4 == 0 && $annee % 100 != 0 || $annee % 400 == 0) |
856 |
|
|
$jourmax = 29; |
857 |
|
|
else |
858 |
|
|
$jourmax = 28; |
859 |
|
|
break; |
860 |
|
|
case "4": |
861 |
|
|
case "6": |
862 |
|
|
case "9": |
863 |
|
|
case "11": |
864 |
|
|
$jourmax = 30; |
865 |
|
|
break; |
866 |
|
|
default: |
867 |
|
|
$jourmax = 31; |
868 |
|
|
} |
869 |
|
|
if ($jour > $jourmax) |
870 |
|
|
$jour = $jourmax; |
871 |
|
|
//$dateretour=$annee."-".$mois."-".$jour; |
872 |
|
|
return $annee."-".$mois."-".$jour ; |
873 |
|
|
} |
874 |
|
|
|
875 |
vpihour |
1137 |
// Vérifie la restriction sur l'événement |
876 |
|
|
function verifier($val = array(), &$db, $DEBUG){ |
877 |
|
|
|
878 |
|
|
//Récupère la restriction |
879 |
|
|
$sql= "SELECT |
880 |
|
|
restriction |
881 |
|
|
FROM |
882 |
|
|
".DB_PREFIXE."evenement |
883 |
|
|
WHERE |
884 |
|
|
evenement =".$this->valF['evenement']; |
885 |
|
|
|
886 |
|
|
$res = $db->query($sql); |
887 |
|
|
$this->f->addToLog("verifier(): db->query(\"".$sql."\");", VERBOSE_MODE); |
888 |
|
|
$this->f->isDatabaseError(); |
889 |
|
|
|
890 |
|
|
$row=& $res->fetchRow(DB_FETCHMODE_ASSOC); |
891 |
|
|
|
892 |
|
|
//Test qu'une restriction est présente |
893 |
|
|
if ( isset($row['restriction']) && $row['restriction'] != "" ){ |
894 |
|
|
|
895 |
|
|
//Test si la restriction est valide |
896 |
|
|
if ( !$this->restrictionIsValid($row['restriction']) ){ |
897 |
|
|
|
898 |
|
|
$this->correct=false; |
899 |
|
|
$this->addToMessage(_("Restriction non valide")); |
900 |
|
|
} |
901 |
|
|
else { |
902 |
|
|
|
903 |
|
|
$this->correct = true; |
904 |
|
|
} |
905 |
|
|
} |
906 |
|
|
} |
907 |
|
|
|
908 |
fraynaud |
3 |
}// fin classe |
909 |
atreal |
208 |
?> |