]> saetta.ns0.it Git - albonline/be/commitdiff
Ricerca atti albo pretorio.
authorAndrea Zagli <azagli@libero.it>
Sat, 23 Feb 2013 11:27:00 +0000 (12:27 +0100)
committerAndrea Zagli <azagli@libero.it>
Sat, 23 Feb 2013 11:27:00 +0000 (12:27 +0100)
data/messi/form/trovaatti.form
src/atti.c

index c2401c5a1bcbbc7f57f0d76a64759c508d7d8684..5a87312d8195dc800446599879349b3417cff68e 100644 (file)
@@ -1,14 +1,24 @@
 <?xml version="1.0"?>
 <gtkform>
 
+       <widget type="entry" name="entry6" label="label11">
+               <field type="text" name="numero">
+               </field>
+       </widget>
+
        <widget type="decoder" name="gtkformdecoder4" label="label21">
                <decoder>
                        <sql>
-                               SELECT CASE WHEN ragione_sociale &lt;&gt; '' THEN ragione_sociale
-                               ELSE cognome || ' ' || nome END FROM beneficiari WHERE id = ##key0::gint
+                               SELECT descrizione FROM tipi_atto WHERE id = ##key0::gint
                        </sql>
                </decoder>
-               <field type="integer" name="id_beneficiari" />
+               <field type="integer" name="id_tipi_atto">
+               </field>
+       </widget>
+
+       <widget type="entry" name="entry9" label="label14">
+               <field type="text" name="oggetto">
+               </field>
        </widget>
 
        <widget type="decoder" name="gtkformdecoder15" label="label52">
                </field>
        </widget>
 
-       <widget type="entry" name="entry20" label="label53">
-               <field type="datetime" name="albo_da_data">
+       <widget type="entry" name="entry7" label="label12">
+               <field type="datetime" name="ricezione_da_data">
                        <datetime-type>date</datetime-type>
                        <display-format>%d/%m/%Y</display-format>
                </field>
        </widget>
 
-       <widget type="entry" name="entry21" label="label54">
-               <field type="datetime" name="albo_a_data">
+       <widget type="entry" name="entry8" label="label13">
+               <field type="datetime" name="ricezione_a_data">
                        <datetime-type>date</datetime-type>
                        <display-format>%d/%m/%Y</display-format>
                </field>
        </widget>
 
-       <widget type="entry" name="entry18" label="label34">
-               <field type="integer" name="determina_numero" />
+       <widget type="entry" name="entry20" label="label53">
+               <field type="datetime" name="pubblicazione_da_data">
+                       <datetime-type>date</datetime-type>
+                       <display-format>%d/%m/%Y</display-format>
+               </field>
        </widget>
 
-       <widget type="entry" name="entry19" label="label35">
-               <field type="integer" name="determina_anno" />
+       <widget type="entry" name="entry21" label="label54">
+               <field type="datetime" name="pubblicazione_a_data">
+                       <datetime-type>date</datetime-type>
+                       <display-format>%d/%m/%Y</display-format>
+               </field>
        </widget>
 
 </gtkform>
index e7517ab4436b5e48d17736b50fd5cabfce477544..3442374c1c2d4ac8efabec328fd30abce2316b49 100644 (file)
@@ -251,8 +251,6 @@ atti_carica (Atti *atti)
 
        AutozIResource *ires1;
 
-       guint id_uffici;
-
        GHashTable *ht_ufficio;
        GValue *gv_ufficio;
        gchar *ufficio;
@@ -263,36 +261,65 @@ atti_carica (Atti *atti)
 
        sql_where = g_strdup ("");
 
-       id_uffici = 0;
-
        if (priv->parametri_ricerca != NULL)
                {
-                       gival = g_value_get_int ((GValue *)g_hash_table_lookup (priv->parametri_ricerca, "id_beneficiari"));
+                       gval = (GValue *)g_hash_table_lookup (priv->parametri_ricerca, "numero");
+                       if (gval != NULL && g_strcmp0 (g_value_get_string (gval), "") != 0)
+                               {
+                                       sql_where = g_strconcat (sql_where, " AND a.numero = ",
+                                                                g_strdup_printf ("%s", gcval),
+                                                                NULL);
+                               }
+                       gival = g_value_get_int ((GValue *)g_hash_table_lookup (priv->parametri_ricerca, "id_tipi_atto"));
                        if (gival != 0)
                                {
-                                       sql_where = g_strconcat (sql_where, " AND a.id_beneficiari = ",
+                                       sql_where = g_strconcat (sql_where, " AND a.id_tipi_atto = ",
                                                                 g_strdup_printf ("%d", gival),
                                                                 NULL);
                                }
-                       id_uffici = g_value_get_int ((GValue *)g_hash_table_lookup (priv->parametri_ricerca, "id_uffici"));
-                       if (id_uffici != 0)
+                       gval = (GValue *)g_hash_table_lookup (priv->parametri_ricerca, "oggetto");
+                       if (gval != NULL && g_strcmp0 (g_value_get_string (gval), "") != 0)
+                               {
+                                       sql_where = g_strconcat (sql_where, " AND a.oggetto ILIKE '%%",
+                                                                g_strdup_printf ("%s", gcval),
+                                                                "%%'",
+                                                                NULL);
+                               }
+                       gival = g_value_get_int ((GValue *)g_hash_table_lookup (priv->parametri_ricerca, "id_uffici"));
+                       if (gival != 0)
                                {
                                        sql_where = g_strconcat (sql_where, " AND a.id_uffici = ",
-                                                                g_strdup_printf ("%d", id_uffici),
+                                                                g_strdup_printf ("%d", gival),
                                                                 NULL);
                                }
-                       gval = (GValue *)g_hash_table_lookup (priv->parametri_ricerca, "albo_da_data");
+                       gval = (GValue *)g_hash_table_lookup (priv->parametri_ricerca, "ricezione_da_data");
                        if (gval != NULL && (gdtval = (GDateTime *)g_value_get_pointer (gval)) != NULL)
                                {
-                                       sql_where = g_strconcat (sql_where, " AND a.albo_data_inizio >= '",
+                                       sql_where = g_strconcat (sql_where, " AND a.ricezione_data >= '",
                                                                 g_date_time_format (gdtval, "%F"),
                                                                 "'",
                                                                 NULL);
                                }
-                       gval = (GValue *)g_hash_table_lookup (priv->parametri_ricerca, "albo_a_data");
+                       gval = (GValue *)g_hash_table_lookup (priv->parametri_ricerca, "ricezione_a_data");
                        if (gval != NULL && (gdtval = (GDateTime *)g_value_get_pointer (gval)) != NULL)
                                {
-                                       sql_where = g_strconcat (sql_where, " AND a.albo_data_inizio <= '",
+                                       sql_where = g_strconcat (sql_where, " AND a.ricezione_data <= '",
+                                                                g_date_time_format (gdtval, "%F"),
+                                                                "'",
+                                                                NULL);
+                               }
+                       gval = (GValue *)g_hash_table_lookup (priv->parametri_ricerca, "pubblicazione_da_data");
+                       if (gval != NULL && (gdtval = (GDateTime *)g_value_get_pointer (gval)) != NULL)
+                               {
+                                       sql_where = g_strconcat (sql_where, " AND a.pubblicazione_inizio_data >= '",
+                                                                g_date_time_format (gdtval, "%F"),
+                                                                "'",
+                                                                NULL);
+                               }
+                       gval = (GValue *)g_hash_table_lookup (priv->parametri_ricerca, "pubblicazione_a_data");
+                       if (gval != NULL && (gdtval = (GDateTime *)g_value_get_pointer (gval)) != NULL)
+                               {
+                                       sql_where = g_strconcat (sql_where, " AND a.pubblicazione_fine_data <= '",
                                                                 g_date_time_format (gdtval, "%F"),
                                                                 "'",
                                                                 NULL);
@@ -319,16 +346,6 @@ atti_carica (Atti *atti)
                        rows = gda_data_model_get_n_rows (dm);
                        for (row = 0; row < rows; row++)
                                {
-                                       if (id_uffici == 0)
-                                               {
-                                                       /* controllo le autorizzazioni */
-                                                       ires1 = autoz_get_resource_from_id (priv->commons->autoz, g_strdup_printf ("opengov_u_%d_r_0", gdaex_data_model_get_field_value_integer_at (dm, row, "id_uffici")));
-                                                       if (ires1 != NULL && !autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
-                                                               {
-                                                                       continue;
-                                                               }
-                                               }
-
                                        ht_ufficio = organigramma_ufficio_get_by_id (priv->commons->organigramma_commons, gdaex_data_model_get_field_value_integer_at (dm, row, "id_uffici"));
                                        if (ht_ufficio == NULL)
                                                {
@@ -596,7 +613,7 @@ atti_on_btn_esporta_clicked (GtkButton *button,
 
        AttiPrivate *priv = ATTI_GET_PRIVATE ((Atti *)user_data);
 
-       gchar **columns_title = g_strsplit ("ID|Numero|Tipo|Oggetto|Data ricezione|Data inizio pubblicazione|Data fine pubblicazione",
+       gchar **columns_title = g_strsplit ("ID|Numero|Tipo|Oggetto|Ufficio|Data ricezione|Data inizio pubblicazione|Data fine pubblicazione",
                                            "|", -1);
 
        if (priv->selezione)