</field>
</widget>
+ <widget type="checkbox" name="checkbutton1" label="label29">
+ <field type="boolean" name="da_ratificare">
+ </field>
+ </widget>
+
</gtkform>
<column type="gchararray"/>
<!-- column-name id_atti -->
<column type="guint"/>
+ <!-- column-name azione_id -->
+ <column type="guint"/>
</columns>
</object>
<object class="GtkListStore" id="lstore_tipi_atto">
<property name="position">0</property>
</packing>
</child>
+ <child>
+ <object class="GtkButton" id="button23">
+ <property name="label" translatable="yes">_Ratifica</property>
+ <property name="visible">True</property>
+ <property name="can_focus">True</property>
+ <property name="receives_default">True</property>
+ <property name="use_underline">True</property>
+ </object>
+ <packing>
+ <property name="expand">False</property>
+ <property name="fill">False</property>
+ <property name="position">1</property>
+ </packing>
+ </child>
<child>
<object class="GtkButton" id="button14">
<property name="label" translatable="yes">_Esporta</property>
<packing>
<property name="expand">False</property>
<property name="fill">False</property>
- <property name="position">1</property>
+ <property name="position">2</property>
</packing>
</child>
<child>
<packing>
<property name="expand">False</property>
<property name="fill">False</property>
- <property name="position">2</property>
+ <property name="position">3</property>
</packing>
</child>
<child>
<packing>
<property name="expand">False</property>
<property name="fill">False</property>
- <property name="position">3</property>
+ <property name="position">4</property>
</packing>
</child>
<child>
<packing>
<property name="expand">False</property>
<property name="fill">False</property>
- <property name="position">4</property>
+ <property name="position">5</property>
</packing>
</child>
</object>
<object class="GtkTable" id="table1">
<property name="visible">True</property>
<property name="can_focus">False</property>
- <property name="n_rows">7</property>
+ <property name="n_rows">8</property>
<property name="n_columns">2</property>
<property name="column_spacing">5</property>
<property name="row_spacing">5</property>
<property name="y_options">GTK_FILL</property>
</packing>
</child>
+ <child>
+ <object class="GtkLabel" id="label29">
+ <property name="visible">True</property>
+ <property name="can_focus">False</property>
+ <property name="xalign">0</property>
+ <property name="label" translatable="yes">Da ratificare</property>
+ </object>
+ <packing>
+ <property name="top_attach">7</property>
+ <property name="bottom_attach">8</property>
+ <property name="x_options">GTK_FILL</property>
+ <property name="y_options">GTK_FILL</property>
+ </packing>
+ </child>
+ <child>
+ <object class="GtkCheckButton" id="checkbutton1">
+ <property name="visible">True</property>
+ <property name="can_focus">True</property>
+ <property name="receives_default">False</property>
+ <property name="draw_indicator">True</property>
+ </object>
+ <packing>
+ <property name="left_attach">1</property>
+ <property name="right_attach">2</property>
+ <property name="top_attach">7</property>
+ <property name="bottom_attach">8</property>
+ <property name="y_options">GTK_FILL</property>
+ </packing>
+ </child>
</object>
<packing>
<property name="expand">True</property>
#include <liborganigramma/ufficio.h>
+#include <libgtkform/fielddatetime.h>
+
#include "atti.h"
#include "atto.h"
#include "trovaatti.h"
{
GtkTreeIter iter;
gint id;
+ gchar *pubblicazione_inizio_data;
+ GDateTime *gdt_oggi;
+ GDateTime *gdt_pubblicazione_inizio_data;
gchar *sql;
GdaDataModel *dm;
/* 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,
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);
guint pr_cod_prat;
} Commons;
+enum
+{
+ AZIONE_PUBBLICATO = 1,
+ AZIONE_RESPINTO,
+ AZIONE_DEPUBBLICATO,
+ AZIONE_RATIFICATO
+};
+
#endif /* __COMMONS_H__ */
#include <liborganigramma/ufficio.h>
+#include <libgtkform/fielddatetime.h>
+
#include "registro.h"
#include "atto.h"
#include "trovaregistro.h"
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,
COL_DATA_FINE_PUBBLICAZIONE,
COL_AZIONE,
COL_AZIONE_DATA,
- COL_ID_ATTI
+ COL_ID_ATTI,
+ COL_AZIONE_ID
};
gchar *azioni[] = {"Pubblicato", "Respinto", "Depubblicato", "Ratificato"};
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);
"'",
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,"
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);
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,