1 |
<?php |
2 |
//$Id$ |
3 |
//gen openMairie le 10/02/2011 20:32 |
4 |
include('../gen/sql/pgsql/consultation.inc.php'); |
5 |
|
6 |
$table .= "INNER JOIN ".DB_PREFIXE."om_utilisateur |
7 |
ON om_utilisateur.om_utilisateur=dossier.instructeur "; |
8 |
|
9 |
if(isset($idx)) { |
10 |
$selection=" WHERE consultation.dossier ='".$idx."'"; |
11 |
} |
12 |
else { |
13 |
$selection=" WHERE om_utilisateur.login='".$_SESSION['login']."'"; |
14 |
$tab_actions['corner']['ajouter']=NULL; |
15 |
} |
16 |
|
17 |
if ($retourformulaire== 'service'){ |
18 |
// Actions en coin : ajouter |
19 |
$tab_actions['corner']['ajouter'] = NULL; |
20 |
// Actions a gauche : consulter |
21 |
$tab_actions['left']['consulter'] = NULL; |
22 |
$selection=" where consultation.service ='".$idx."'"; |
23 |
} |
24 |
|
25 |
$champs = array(); |
26 |
|
27 |
$champs['service_abrege'] = array( |
28 |
'table' => 'service', |
29 |
'colonne' => 'abrege', |
30 |
'type' => 'text', |
31 |
'libelle' => _('Service (abrege)')); |
32 |
|
33 |
$champs['service'] = array( |
34 |
'table' => 'service', |
35 |
'colonne' => 'libelle', |
36 |
'type' => 'text', |
37 |
'libelle' => _('Service')); |
38 |
|
39 |
$champs['date_envoi'] = |
40 |
array('colonne' => 'date_envoi', |
41 |
'table' => 'consultation', |
42 |
'libelle' => _('Date d\'envoi'), |
43 |
'type' => 'date', |
44 |
'where' => 'intervaldate'); |
45 |
$champs['date_retour'] = |
46 |
array('colonne' => 'date_retour', |
47 |
'table' => 'consultation', |
48 |
'libelle' => _('Date de retour'), |
49 |
'type' => 'date', |
50 |
'where' => 'intervaldate'); |
51 |
|
52 |
$champs['date_limite'] = |
53 |
array('colonne' => 'date_limite', |
54 |
'table' => 'consultation', |
55 |
'libelle' => _('Date limite'), |
56 |
'type' => 'date', |
57 |
'where' => 'intervaldate'); |
58 |
|
59 |
|
60 |
$options[] = array('type' => 'search', |
61 |
'display' => true, |
62 |
'advanced' => $champs, |
63 |
'default_form' => 'advanced', |
64 |
'absolute_object' => 'consultation'); |
65 |
|
66 |
/** |
67 |
* Options |
68 |
*/ |
69 |
|
70 |
$options_tab[] = array( |
71 |
"type" => "condition", |
72 |
"field" => "om_collectivite.niveau", |
73 |
"case" => array( |
74 |
"0" => array( |
75 |
"style" => "tab_desactive", |
76 |
), |
77 |
), |
78 |
); |
79 |
?> |