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