From: Andrea Zagli Date: Sat, 23 Feb 2013 11:27:00 +0000 (+0100) Subject: Ricerca atti albo pretorio. X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=1b70cf2e726723bd8a6a26f5af0e3185f515e3e2;p=albonline%2Fbe Ricerca atti albo pretorio. --- diff --git a/data/messi/form/trovaatti.form b/data/messi/form/trovaatti.form index c2401c5..5a87312 100644 --- a/data/messi/form/trovaatti.form +++ b/data/messi/form/trovaatti.form @@ -1,14 +1,24 @@ + + + + + - SELECT CASE WHEN ragione_sociale <> '' THEN ragione_sociale - ELSE cognome || ' ' || nome END FROM beneficiari WHERE id = ##key0::gint + SELECT descrizione FROM tipi_atto WHERE id = ##key0::gint - + + + + + + + @@ -21,26 +31,32 @@ - - + + date %d/%m/%Y - - + + date %d/%m/%Y - - + + + date + %d/%m/%Y + - - + + + date + %d/%m/%Y + diff --git a/src/atti.c b/src/atti.c index e7517ab..3442374 100644 --- a/src/atti.c +++ b/src/atti.c @@ -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)