From 89914595d9054844838c97d2c7e19d9a0e622705 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Sat, 23 Feb 2013 17:29:00 +0100 Subject: [PATCH] Ratifica dell'atto all'albo. --- data/messi/form/trovaregistro.form | 5 ++ data/messi/gui/messi.gui | 55 +++++++++++++++-- src/atti.c | 33 ++++------ src/commons.h | 8 +++ src/registro.c | 99 +++++++++++++++++++++++++++++- 5 files changed, 173 insertions(+), 27 deletions(-) diff --git a/data/messi/form/trovaregistro.form b/data/messi/form/trovaregistro.form index d29e4db..34f6d44 100644 --- a/data/messi/form/trovaregistro.form +++ b/data/messi/form/trovaregistro.form @@ -73,4 +73,9 @@ + + + + + diff --git a/data/messi/gui/messi.gui b/data/messi/gui/messi.gui index cde443a..19e1555 100644 --- a/data/messi/gui/messi.gui +++ b/data/messi/gui/messi.gui @@ -98,6 +98,8 @@ + + @@ -1524,6 +1526,20 @@ 0 + + + _Ratifica + True + True + True + True + + + False + False + 1 + + _Esporta @@ -1535,7 +1551,7 @@ False False - 1 + 2 @@ -1549,7 +1565,7 @@ False False - 2 + 3 @@ -1563,7 +1579,7 @@ False False - 3 + 4 @@ -1577,7 +1593,7 @@ False False - 4 + 5 @@ -2273,7 +2289,7 @@ True False - 7 + 8 2 5 5 @@ -2628,6 +2644,35 @@ GTK_FILL + + + True + False + 0 + Da ratificare + + + 7 + 8 + GTK_FILL + GTK_FILL + + + + + True + True + False + True + + + 1 + 2 + 7 + 8 + GTK_FILL + + True diff --git a/src/atti.c b/src/atti.c index 3e18267..67f8133 100644 --- a/src/atti.c +++ b/src/atti.c @@ -24,6 +24,8 @@ #include +#include + #include "atti.h" #include "atto.h" #include "trovaatti.h" @@ -609,6 +611,9 @@ atti_on_btn_pubblica_clicked (GtkButton *button, { GtkTreeIter iter; gint id; + gchar *pubblicazione_inizio_data; + GDateTime *gdt_oggi; + GDateTime *gdt_pubblicazione_inizio_data; gchar *sql; GdaDataModel *dm; @@ -622,27 +627,13 @@ atti_on_btn_pubblica_clicked (GtkButton *button, /* controllo che le date siano corrette */ gtk_tree_model_get (GTK_TREE_MODEL (priv->lstore_atti), &iter, COL_ID, &id, + COL_DATA_INIZIO_PUBBLICAZIONE, &pubblicazione_inizio_data, -1); - sql = g_strdup_printf ("SELECT id FROM atti" - " WHERE id = %d" - " AND pubblicazione_inizio_data >= CURRENT_DATE", - id); - dm = gdaex_query (priv->commons->gdaex, sql); - g_free (sql); - if (dm != NULL) - { - if (gda_data_model_get_n_rows (dm) < 1) - { - solipa_message_dialog (GTK_WIDGET (gtk_builder_get_object (priv->commons->gtkbuilder, "w_main")), - GTK_MESSAGE_WARNING, - GTK_BUTTONS_OK, - "La data inizio pubblicazione non è valida."); - return; - } - g_object_unref (dm); - } - else + gdt_oggi = g_date_time_new_now_local (); + gdt_pubblicazione_inizio_data = gtk_form_field_datetime_get_gdatetime_from_str (pubblicazione_inizio_data, "%d/%m/%Y"); + + if (g_date_time_compare (gdt_pubblicazione_inizio_data, gdt_oggi) < 0) { solipa_message_dialog (GTK_WIDGET (gtk_builder_get_object (priv->commons->gtkbuilder, "w_main")), GTK_MESSAGE_WARNING, @@ -672,8 +663,8 @@ atti_on_btn_pubblica_clicked (GtkButton *button, sql = g_strdup_printf ("INSERT INTO registro" " (id, id_atti, azione, azione_data)" - " VALUES (%d, %d, 1, CURRENT_TIMESTAMP)", - newid, id); + " VALUES (%d, %d, %d, CURRENT_TIMESTAMP)", + newid, id, AZIONE_PUBBLICATO); gdaex_execute (priv->commons->gdaex, sql); g_free (sql); diff --git a/src/commons.h b/src/commons.h index b5b6114..914fbb8 100644 --- a/src/commons.h +++ b/src/commons.h @@ -63,5 +63,13 @@ typedef struct guint pr_cod_prat; } Commons; +enum +{ + AZIONE_PUBBLICATO = 1, + AZIONE_RESPINTO, + AZIONE_DEPUBBLICATO, + AZIONE_RATIFICATO +}; + #endif /* __COMMONS_H__ */ diff --git a/src/registro.c b/src/registro.c index 430e2ce..249befb 100644 --- a/src/registro.c +++ b/src/registro.c @@ -24,6 +24,8 @@ #include +#include + #include "registro.h" #include "atto.h" #include "trovaregistro.h" @@ -53,6 +55,8 @@ static gboolean registro_on_key_release_event (GtkWidget *widget, static void registro_on_btn_apri_clicked (GtkButton *button, gpointer user_data); +static void registro_on_btn_ratifica_clicked (GtkButton *button, + gpointer user_data); static void registro_on_trv_registro_row_activated (GtkTreeView *tree_view, GtkTreePath *tree_path, GtkTreeViewColumn *column, @@ -82,7 +86,8 @@ enum COL_DATA_FINE_PUBBLICAZIONE, COL_AZIONE, COL_AZIONE_DATA, - COL_ID_ATTI + COL_ID_ATTI, + COL_AZIONE_ID }; gchar *azioni[] = {"Pubblicato", "Respinto", "Depubblicato", "Ratificato"}; @@ -179,6 +184,8 @@ Registro g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button13"), "clicked", G_CALLBACK (registro_on_btn_apri_clicked), (gpointer)a); + g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button23"), + "clicked", G_CALLBACK (registro_on_btn_ratifica_clicked), (gpointer)a); g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "treeview2"), "row-activated", G_CALLBACK (registro_on_trv_registro_row_activated), (gpointer)a); @@ -334,6 +341,17 @@ registro_carica (Registro *registro) "'", NULL); } + gval = (GValue *)g_hash_table_lookup (priv->parametri_ricerca, "da_ratificare"); + if (gval != NULL && g_value_get_boolean (gval)) + { + sql_where = g_strconcat (sql_where, + g_strdup_printf (" AND r.azione = %d" + " AND a.pubblicazione_fine_data < CURRENT_DATE" + " AND NOT EXISTS (SELECT id FROM registro AS r1 WHERE a.id = r1.id_atti AND r.azione = %d)", + AZIONE_PUBBLICATO, + AZIONE_RATIFICATO), + NULL); + } } sql = g_strdup_printf ("SELECT r.id, r.id_atti, a.numero," @@ -389,6 +407,7 @@ registro_carica (Registro *registro) COL_DATA_FINE_PUBBLICAZIONE, solipa_gdatetime_format (gdaex_data_model_get_field_value_gdatetime_at (dm, row, "pubblicazione_fine_data"), "%d/%m/%Y"), COL_AZIONE, azioni[gdaex_data_model_get_field_value_integer_at (dm, row, "azione") - 1], COL_AZIONE_DATA, solipa_gdatetime_format (gdaex_data_model_get_field_value_gdatetime_at (dm, row, "azione_data"), "%d/%m/%Y %H.%M.%S"), + COL_AZIONE_ID, gdaex_data_model_get_field_value_integer_at (dm, row, "azione"), -1); g_free (ufficio); @@ -530,6 +549,84 @@ registro_on_btn_apri_clicked (GtkButton *button, registro_apri ((Registro *)user_data); } +static void +registro_on_btn_ratifica_clicked (GtkButton *button, + gpointer user_data) +{ + GtkTreeIter iter; + guint id; + guint azione; + gchar *pubblicazione_fine_data; + GDateTime *gdt_oggi; + GDateTime *gdt_pubblicazione_fine_data; + + gchar *sql; + GdaDataModel *dm; + guint newid; + + Registro *registro = (Registro *)user_data; + RegistroPrivate *priv = REGISTRO_GET_PRIVATE (registro); + + if (gtk_tree_selection_get_selected (priv->selection, NULL, &iter)) + { + /* controllo che le date siano corrette */ + gtk_tree_model_get (GTK_TREE_MODEL (priv->lstore_registro), &iter, + COL_ID_ATTI, &id, + COL_AZIONE_ID, &azione, + COL_DATA_FINE_PUBBLICAZIONE, &pubblicazione_fine_data, + -1); + + gdt_oggi = g_date_time_new_now_local (); + gdt_pubblicazione_fine_data = gtk_form_field_datetime_get_gdatetime_from_str (pubblicazione_fine_data, "%d/%m/%Y"); + + if (azione != AZIONE_PUBBLICATO + || g_date_time_compare (gdt_pubblicazione_fine_data, gdt_oggi) > -1) + { + solipa_message_dialog (GTK_WIDGET (gtk_builder_get_object (priv->commons->gtkbuilder, "w_main")), + GTK_MESSAGE_WARNING, + GTK_BUTTONS_OK, + "L'atto selezionato non è da ratificare."); + return; + } + + if (solipa_message_dialog (GTK_WIDGET (gtk_builder_get_object (priv->commons->gtkbuilder, "w_main")), + GTK_MESSAGE_QUESTION, + GTK_BUTTONS_YES_NO, + "Sicuro di voler ratificare l'atto selezionato?") == GTK_RESPONSE_YES) + { + newid = 0; + sql = g_strdup_printf ("SELECT COALESCE(MAX(id), 0) FROM registro"); + dm = gdaex_query (priv->commons->gdaex, sql); + g_free (sql); + if (dm != NULL) + { + if (gda_data_model_get_n_rows (dm) > 0) + { + newid = gdaex_data_model_get_value_integer_at (dm, 0, 0); + } + g_object_unref (dm); + } + newid++; + + sql = g_strdup_printf ("INSERT INTO registro" + " (id, id_atti, azione, azione_data)" + " VALUES (%d, %d, %d, CURRENT_TIMESTAMP)", + newid, id, AZIONE_RATIFICATO); + gdaex_execute (priv->commons->gdaex, sql); + g_free (sql); + + registro_carica (registro); + } + } + else + { + solipa_message_dialog (priv->selezione ? priv->widget : GTK_WIDGET (gtk_builder_get_object (priv->commons->gtkbuilder, "w_main")), + GTK_MESSAGE_WARNING, + GTK_BUTTONS_OK, + "Occorre prima selezionare un atto."); + } +} + static void registro_on_trv_registro_row_activated (GtkTreeView *tree_view, GtkTreePath *tree_path, -- 2.49.0