/[openfoncier]/trunk/sql/pgsql/evenement.form.inc.php
ViewVC logotype

Diff of /trunk/sql/pgsql/evenement.form.inc.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

trunk/sql/pgsql/evenement.form.inc revision 7 by fraynaud, Sun Feb 13 22:17:05 2011 UTC trunk/sql/pgsql/evenement.form.inc.php revision 1145 by nhaye, Fri Jan 4 11:04:11 2013 UTC
# Line 4  Line 4 
4  include('../gen/sql/pgsql/evenement.form.inc.php');  include('../gen/sql/pgsql/evenement.form.inc.php');
5  $sql_om_lettretype="select id,(id||' '||libelle) as libelle from ".  $sql_om_lettretype="select id,(id||' '||libelle) as libelle from ".
6                      DB_PREFIXE."om_lettretype";                      DB_PREFIXE."om_lettretype";
7                        
8    $sep = (isset($_GET['action']) &&
9            ($_GET['action'] == 1 || $_GET['action'] == 0 )) ? ';' : ',' ;
10    
11    $champs=array(
12        "evenement.evenement",
13        "libelle",
14        "action",
15        "etat",
16        "delai",
17        "accord_tacite",
18        "delai_notification",
19        "lettretype",
20        "consultation",
21        "avis_decision",
22        "restriction",
23        "type",
24        "evenement_retour_ar",
25        "evenement_suivant_tacite",
26        "array_to_string(array_agg(dossier_instruction_type ORDER BY dossier_instruction_type), '$sep') as dossier_instruction_type");
27    
28    $tableSelect = DB_PREFIXE."evenement
29                    LEFT JOIN
30                        ".DB_PREFIXE."lien_dossier_instruction_type_evenement
31                        ON
32                            lien_dossier_instruction_type_evenement.evenement=evenement.evenement";
33    
34    $selection = " GROUP BY evenement.evenement,libelle";
35    
36    $sql_dossier_instruction_type="SELECT
37                        dossier_instruction_type.dossier_instruction_type,
38                        CONCAT( dossier_instruction_type.code ,' - ',dossier_instruction_type.libelle
39                                , ' - ', dossier_autorisation_type_detaille.libelle)
40                    FROM
41                        ".DB_PREFIXE."dossier_instruction_type
42                    LEFT JOIN
43                        ".DB_PREFIXE."dossier_autorisation_type_detaille
44                        ON
45                            dossier_instruction_type.dossier_autorisation_type_detaille=
46                            dossier_autorisation_type_detaille.dossier_autorisation_type_detaille
47                    ORDER BY
48                        dossier_autorisation_type_detaille.libelle";
49    $sql_dossier_instruction_type_by_id = "SELECT
50                                dossier_instruction_type.dossier_instruction_type,
51                                CONCAT( dossier_instruction_type.code ,' - ',dossier_instruction_type.libelle)
52                            FROM
53                                ".DB_PREFIXE."dossier_instruction_type
54                            LEFT JOIN
55                                ".DB_PREFIXE."dossier_autorisation_type_detaille
56                                ON
57                                    dossier_instruction_type.dossier_autorisation_type_detaille=
58                                    dossier_autorisation_type_detaille.dossier_autorisation_type_detaille
59                            WHERE
60                                dossier_instruction_type IN (<idx>)
61                            ORDER BY
62                                dossier_autorisation_type_detaille.libelle";
63  ?>  ?>

Legend:
Removed from v.7  
changed lines
  Added in v.1145

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26