/[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 1145 - (hide annotations)
Fri Jan 4 11:04:11 2013 UTC (12 years, 1 month ago) by nhaye
File size: 2724 byte(s)
Suppression de la colonne nature de la table évenement

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 vpihour 1143 CONCAT( dossier_instruction_type.code ,' - ',dossier_instruction_type.libelle
39     , ' - ', dossier_autorisation_type_detaille.libelle)
40 vpihour 1133 FROM
41     ".DB_PREFIXE."dossier_instruction_type
42 vpihour 1143 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 vpihour 1133 ORDER BY
48 vpihour 1143 dossier_autorisation_type_detaille.libelle";
49 vpihour 1133 $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 vpihour 1143 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 vpihour 1133 WHERE
60     dossier_instruction_type IN (<idx>)
61     ORDER BY
62 vpihour 1143 dossier_autorisation_type_detaille.libelle";
63 fraynaud 3 ?>

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26