<?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 <> '' 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>
AutozIResource *ires1;
- guint id_uffici;
-
GHashTable *ht_ufficio;
GValue *gv_ufficio;
gchar *ufficio;
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);
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)
{
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)