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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1410 - (hide annotations)
Thu Mar 14 18:44:01 2013 UTC (11 years, 10 months ago) by fmichon
File size: 2738 byte(s)
Homogénéisation des affichages des écrans de paramétrage

1 fraynaud 3 <?php
2     //$Id$
3     //gen openMairie le 10/02/2011 20:33
4     include('../gen/sql/pgsql/evenement.form.inc.php');
5 fraynaud 7 $sql_om_lettretype="select id,(id||' '||libelle) as libelle from ".
6     DB_PREFIXE."om_lettretype";
7 vpihour 1133
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 fmichon 1410 CONCAT(dossier_autorisation_type_detaille.code,' - ',dossier_instruction_type.code,' - ',dossier_instruction_type.libelle) as lib
39 vpihour 1133 FROM
40     ".DB_PREFIXE."dossier_instruction_type
41 vpihour 1143 LEFT JOIN
42     ".DB_PREFIXE."dossier_autorisation_type_detaille
43     ON
44     dossier_instruction_type.dossier_autorisation_type_detaille=
45     dossier_autorisation_type_detaille.dossier_autorisation_type_detaille
46 vpihour 1133 ORDER BY
47 fmichon 1410 dossier_autorisation_type_detaille.code";
48 vpihour 1133 $sql_dossier_instruction_type_by_id = "SELECT
49     dossier_instruction_type.dossier_instruction_type,
50 fmichon 1410 CONCAT(dossier_autorisation_type_detaille.code,' - ',dossier_instruction_type.code,' - ',dossier_instruction_type.libelle) as lib
51 vpihour 1133 FROM
52     ".DB_PREFIXE."dossier_instruction_type
53 vpihour 1143 LEFT JOIN
54     ".DB_PREFIXE."dossier_autorisation_type_detaille
55     ON
56     dossier_instruction_type.dossier_autorisation_type_detaille=
57     dossier_autorisation_type_detaille.dossier_autorisation_type_detaille
58 vpihour 1133 WHERE
59     dossier_instruction_type IN (<idx>)
60     ORDER BY
61 fmichon 1410 dossier_autorisation_type_detaille.code";
62 fraynaud 3 ?>

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26