1 |
fraynaud |
11 |
<?php |
2 |
|
|
//$Id: PD.inc,v 1.3 2010-07-30 08:19:50 fraynaud Exp $ |
3 |
atreal |
312 |
include('dossier.inc.php'); |
4 |
fraynaud |
196 |
if(isset($idx)) |
5 |
|
|
if($idx != "]"){ |
6 |
|
|
$ent = "dossier -> ".$idx; |
7 |
|
|
if(isset($idz) ){ |
8 |
|
|
if (trim($idz!='')) |
9 |
|
|
$ent = $ent." <font id='idz1'> ". |
10 |
|
|
strtoupper($idz)." </font>"; |
11 |
|
|
} |
12 |
|
|
}else |
13 |
|
|
$ent= "dossier -> PD"; |
14 |
|
|
else |
15 |
|
|
$ent= "dossier -> PD"; |
16 |
fraynaud |
11 |
$ico = "../img/ico_dossier.png"; |
17 |
|
|
$edition=""; |
18 |
|
|
$table=DB_PREFIXE."dossier left join ". |
19 |
fraynaud |
38 |
DB_PREFIXE."om_utilisateur on dossier.instructeur = om_utilisateur.om_utilisateur left join ". |
20 |
fraynaud |
11 |
DB_PREFIXE."avis on avis.avis=dossier.avis"; |
21 |
|
|
$champAffiche=array("dossier", |
22 |
fraynaud |
200 |
"demandeur_nom as nom", |
23 |
fraynaud |
38 |
"om_utilisateur.nom as instructeur", |
24 |
fraynaud |
78 |
"to_char(date_demande,'DD/MM/YYYY') as demande", |
25 |
|
|
"to_char(date_depot,'DD/MM/YYYY') as depot", |
26 |
|
|
"to_char(date_complet,'DD/MM/YYYY') as complet", |
27 |
|
|
"to_char(date_notification_delai,'DD/MM/YYYY') as delai", |
28 |
|
|
"to_char(date_limite,'DD/MM/YYYY') as limite", |
29 |
fraynaud |
11 |
"etat","avis.libelle as avis" |
30 |
|
|
); |
31 |
|
|
$champRecherche=array("dossier","demandeur_nom"); |
32 |
|
|
$tri= "order by dossier.dossier"; |
33 |
|
|
$selection=" where nature = 'PD'"; |
34 |
|
|
$sousformulaire=array("instruction", |
35 |
|
|
"consultation", |
36 |
|
|
"terrain", |
37 |
fraynaud |
266 |
"blocnote", |
38 |
|
|
"statistique"); |
39 |
fraynaud |
11 |
|
40 |
|
|
?> |