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

Annotation of /trunk/sql/pgsql/demande.inc.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1005 - (hide annotations)
Thu Dec 6 15:48:07 2012 UTC (12 years, 2 months ago) by fmichon
File size: 1842 byte(s)
Merge de la branche 3.2.x pour la reprise du développement dans le trunk

1 vpihour 632 <?php
2     //$Id$
3     //gen openMairie le 08/11/2012 14:00
4    
5     include('../gen/sql/pgsql/demande.inc.php');
6 fmichon 1005
7     // Recherche avancee
8     $champs = array();
9    
10     $champs['dossier_instruction'] = array(
11     'table' => 'dossier',
12     'colonne' => 'dossier',
13     'type' => 'text',
14     'libelle' => _('dossier_instruction'));
15    
16    
17     $champs['particulier_nom'] =
18     array('colonne' => 'particulier_nom',
19     'table' => 'demandeur',
20     'libelle' => _('petitionnaire'),
21     'type' => 'text'
22     );
23    
24     $champs['adresse'] = array(
25     'table' => 'demandeur',
26     'colonne' => 'TRIM(CONCAT(demandeur.terrain_adresse_voie_numero,\' \',
27     demandeur.complement,\' \',
28     demandeur.terrain_adresse_lieu_dit,\' \',
29     demandeur.terrain_adresse_code_postal,\' \',
30     demandeur.terrain_adresse_localite,\' \',
31     demandeur.terrain_adresse_bp,\' \',
32     demandeur.terrain_adresse_cedex
33     ))',
34     'type' => 'text',
35     'libelle' => _('terrain'));
36    
37     $champs['arrondissement'] =
38     array('colonne' => 'arrondissement',
39     'table' => 'demande',
40     'libelle' => _('arrondissement'),
41     'type' => 'select'
42     );
43    
44     $champs['dossier_autorisation_type_detaille'] = array(
45     'table' => 'demande',
46     'colonne' => 'dossier_autorisation_type_detaille',
47     'type' => 'select',
48     'libelle' => _('nature du dossier'));
49    
50     $champs['date_demande'] =
51     array('colonne' => 'date_demande',
52     'table' => 'demande',
53     'libelle' => _('date_demande'),
54     'type' => 'date',
55     'where' => 'intervaldate');
56    
57     $options[] = array('type' => 'search',
58     'display' => true,
59     'advanced' => $champs,
60     'absolute_object' => 'dossier_autorisation',
61     'export' => array("csv"));
62    
63     $sousformulaire = NULL;
64 vpihour 632 ?>

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26