mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
917 lines
32 KiB
C
917 lines
32 KiB
C
/********************************************************************\
|
|
* import-main-matcher.c - Transaction matcher main window *
|
|
* *
|
|
* Copyright (C) 2002 Benoit Grégoire <bock@step.polymtl.ca> *
|
|
* Copyright (C) 2002 Christian Stimming *
|
|
* Copyright (c) 2006 David Hampton <hampton@employees.org> *
|
|
* Copyright (C) 2012 Robert Fewell *
|
|
* *
|
|
* This program is free software; you can redistribute it and/or *
|
|
* modify it under the terms of the GNU General Public License as *
|
|
* published by the Free Software Foundation; either version 2 of *
|
|
* the License, or (at your option) any later version. *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU General Public License*
|
|
* along with this program; if not, contact: *
|
|
* *
|
|
* Free Software Foundation Voice: +1-617-542-5942 *
|
|
* 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
|
|
* Boston, MA 02110-1301, USA gnu@gnu.org *
|
|
\********************************************************************/
|
|
/** @addtogroup Import_Export
|
|
@{ */
|
|
/** @internal
|
|
@file import-main-matcher.c
|
|
@brief Transaction matcher main window
|
|
@author Copyright (C) 2002 Benoit Grégoire
|
|
@author Christian Stimming
|
|
@author Copyright (c) 2006 David Hampton <hampton@employees.org>
|
|
*/
|
|
#include "config.h"
|
|
|
|
#include <gtk/gtk.h>
|
|
#include <glib/gi18n.h>
|
|
|
|
#include "import-main-matcher.h"
|
|
|
|
#include "dialog-utils.h"
|
|
#include "gnc-ui.h"
|
|
#include "gnc-ui-util.h"
|
|
#include "gnc-engine.h"
|
|
#include "import-settings.h"
|
|
#include "import-match-picker.h"
|
|
#include "import-backend.h"
|
|
#include "import-account-matcher.h"
|
|
#include "import-pending-matches.h"
|
|
#include "app-utils/gnc-component-manager.h"
|
|
#include "guid.h"
|
|
|
|
#define GNC_PREFS_GROUP "dialogs.import.generic.transaction-list"
|
|
|
|
struct _main_matcher_info
|
|
{
|
|
GtkWidget *dialog;
|
|
GtkWidget *assistant;
|
|
GtkTreeView *view;
|
|
GNCImportSettings *user_settings;
|
|
int selected_row;
|
|
GNCTransactionProcessedCB transaction_processed_cb;
|
|
gpointer user_data;
|
|
GNCImportPendingMatches *pending_matches;
|
|
};
|
|
|
|
enum downloaded_cols
|
|
{
|
|
DOWNLOADED_COL_DATE = 0,
|
|
DOWNLOADED_COL_ACCOUNT,
|
|
DOWNLOADED_COL_AMOUNT,
|
|
DOWNLOADED_COL_DESCRIPTION,
|
|
DOWNLOADED_COL_MEMO,
|
|
DOWNLOADED_COL_ACTION_ADD,
|
|
DOWNLOADED_COL_ACTION_CLEAR,
|
|
DOWNLOADED_COL_ACTION_UPDATE,
|
|
DOWNLOADED_COL_ACTION_INFO,
|
|
DOWNLOADED_COL_ACTION_PIXBUF,
|
|
DOWNLOADED_COL_DATA,
|
|
DOWNLOADED_COL_COLOR,
|
|
NUM_DOWNLOADED_COLS
|
|
};
|
|
|
|
#define COLOR_RED "brown1"
|
|
#define COLOR_YELLOW "gold"
|
|
#define COLOR_GREEN "DarkSeaGreen1"
|
|
|
|
static QofLogModule log_module = GNC_MOD_IMPORT;
|
|
|
|
void on_matcher_ok_clicked (GtkButton *button, GNCImportMainMatcher *info);
|
|
void on_matcher_cancel_clicked (GtkButton *button, gpointer user_data);
|
|
void on_matcher_help_clicked (GtkButton *button, gpointer user_data);
|
|
void on_matcher_help_close_clicked (GtkButton *button, gpointer user_data);
|
|
|
|
/* Local prototypes */
|
|
static void
|
|
refresh_model_row(GNCImportMainMatcher *gui, GtkTreeModel *model,
|
|
GtkTreeIter *iter, GNCImportTransInfo *info);
|
|
|
|
void gnc_gen_trans_list_delete (GNCImportMainMatcher *info)
|
|
{
|
|
GtkTreeModel *model;
|
|
GtkTreeIter iter;
|
|
GNCImportTransInfo *trans_info;
|
|
|
|
if (info == NULL)
|
|
return;
|
|
|
|
model = gtk_tree_view_get_model(info->view);
|
|
if (gtk_tree_model_get_iter_first(model, &iter))
|
|
{
|
|
do
|
|
{
|
|
gtk_tree_model_get(model, &iter,
|
|
DOWNLOADED_COL_DATA, &trans_info,
|
|
-1);
|
|
|
|
if (info->transaction_processed_cb)
|
|
{
|
|
info->transaction_processed_cb(trans_info,
|
|
FALSE,
|
|
info->user_data);
|
|
}
|
|
|
|
gnc_import_TransInfo_delete(trans_info);
|
|
}
|
|
while (gtk_tree_model_iter_next (model, &iter));
|
|
}
|
|
|
|
|
|
if (!(info->dialog == NULL))
|
|
{
|
|
gnc_save_window_size(GNC_PREFS_GROUP, GTK_WINDOW(info->dialog));
|
|
gnc_import_Settings_delete (info->user_settings);
|
|
gtk_widget_destroy (GTK_WIDGET (info->dialog));
|
|
}
|
|
else
|
|
gnc_import_Settings_delete (info->user_settings);
|
|
g_free (info);
|
|
}
|
|
|
|
void
|
|
on_matcher_ok_clicked (GtkButton *button,
|
|
GNCImportMainMatcher *info)
|
|
{
|
|
GtkTreeModel *model;
|
|
GtkTreeIter iter;
|
|
GNCImportTransInfo *trans_info;
|
|
|
|
g_assert (info);
|
|
|
|
/* DEBUG ("Begin") */
|
|
|
|
model = gtk_tree_view_get_model(info->view);
|
|
if (!gtk_tree_model_get_iter_first(model, &iter))
|
|
return;
|
|
|
|
/* Don't run any queries and/or split sorts while processing the matcher
|
|
results. */
|
|
gnc_suspend_gui_refresh();
|
|
|
|
do
|
|
{
|
|
gtk_tree_model_get(model, &iter,
|
|
DOWNLOADED_COL_DATA, &trans_info,
|
|
-1);
|
|
|
|
if (gnc_import_process_trans_item(NULL, trans_info))
|
|
{
|
|
if (info->transaction_processed_cb)
|
|
{
|
|
info->transaction_processed_cb(trans_info,
|
|
TRUE,
|
|
info->user_data);
|
|
}
|
|
}
|
|
}
|
|
while (gtk_tree_model_iter_next (model, &iter));
|
|
|
|
/* Allow GUI refresh again. */
|
|
gnc_resume_gui_refresh();
|
|
|
|
gnc_gen_trans_list_delete (info);
|
|
/* DEBUG ("End") */
|
|
}
|
|
|
|
void
|
|
on_matcher_cancel_clicked (GtkButton *button, gpointer user_data)
|
|
{
|
|
GNCImportMainMatcher *info = user_data;
|
|
gnc_gen_trans_list_delete (info);
|
|
}
|
|
|
|
void
|
|
on_matcher_help_close_clicked (GtkButton *button, gpointer user_data)
|
|
{
|
|
GtkWidget *help_dialog = user_data;
|
|
|
|
gtk_widget_destroy(help_dialog);
|
|
}
|
|
|
|
void
|
|
on_matcher_help_clicked (GtkButton *button, gpointer user_data)
|
|
{
|
|
GNCImportMainMatcher *info = user_data;
|
|
GtkBuilder *builder;
|
|
GtkWidget *help_dialog, *box;
|
|
|
|
builder = gtk_builder_new();
|
|
gnc_builder_add_from_file (builder, "dialog-import.glade", "textbuffer2");
|
|
gnc_builder_add_from_file (builder, "dialog-import.glade", "textbuffer3");
|
|
gnc_builder_add_from_file (builder, "dialog-import.glade", "textbuffer4");
|
|
gnc_builder_add_from_file (builder, "dialog-import.glade", "textbuffer5");
|
|
gnc_builder_add_from_file (builder, "dialog-import.glade", "matcher_help_dialog");
|
|
|
|
box = GTK_WIDGET(gtk_builder_get_object (builder, "red"));
|
|
gnc_widget_set_style_context (GTK_WIDGET(box), "color_back_red");
|
|
|
|
box = GTK_WIDGET(gtk_builder_get_object (builder, "yellow"));
|
|
gnc_widget_set_style_context (GTK_WIDGET(box), "color_back_yellow");
|
|
|
|
box = GTK_WIDGET(gtk_builder_get_object (builder, "green"));
|
|
gnc_widget_set_style_context (GTK_WIDGET(box), "color_back_green");
|
|
|
|
help_dialog = GTK_WIDGET(gtk_builder_get_object (builder, "matcher_help_dialog"));
|
|
gtk_window_set_transient_for(GTK_WINDOW(help_dialog),
|
|
GTK_WINDOW(info->dialog));
|
|
|
|
/* Connect the signals */
|
|
gtk_builder_connect_signals_full (builder, gnc_builder_connect_full_func, help_dialog);
|
|
|
|
g_object_unref(G_OBJECT(builder));
|
|
|
|
gtk_widget_show(help_dialog);
|
|
}
|
|
|
|
static void
|
|
run_account_picker_dialog (GNCImportMainMatcher *info,
|
|
GtkTreeModel *model,
|
|
GtkTreeIter *iter,
|
|
GNCImportTransInfo *trans_info)
|
|
{
|
|
Account *old_acc, *new_acc;
|
|
gboolean ok_pressed;
|
|
g_assert (trans_info);
|
|
old_acc = gnc_import_TransInfo_get_destacc (trans_info);
|
|
new_acc = gnc_import_select_account(info->dialog,
|
|
NULL,
|
|
TRUE,
|
|
_("Destination account for the auto-balance split."),
|
|
xaccTransGetCurrency(gnc_import_TransInfo_get_trans(trans_info)),
|
|
ACCT_TYPE_NONE,
|
|
old_acc,
|
|
&ok_pressed);
|
|
if (ok_pressed)
|
|
gnc_import_TransInfo_set_destacc (trans_info, new_acc, TRUE);
|
|
}
|
|
|
|
static void
|
|
run_match_dialog (GNCImportMainMatcher *info,
|
|
GNCImportTransInfo *trans_info)
|
|
{
|
|
gnc_import_match_picker_run_and_close (trans_info, info->pending_matches);
|
|
}
|
|
|
|
static void
|
|
gnc_gen_trans_add_toggled_cb (GtkCellRendererToggle *cell_renderer,
|
|
gchar *path,
|
|
GNCImportMainMatcher *gui)
|
|
{
|
|
GtkTreeModel *model;
|
|
GtkTreeIter iter;
|
|
GNCImportTransInfo *trans_info;
|
|
|
|
model = gtk_tree_view_get_model(gui->view);
|
|
if (!gtk_tree_model_get_iter_from_string(model, &iter, path))
|
|
return;
|
|
gtk_tree_model_get(model, &iter, DOWNLOADED_COL_DATA, &trans_info, -1);
|
|
|
|
if ( gnc_import_TransInfo_get_action(trans_info) == GNCImport_ADD
|
|
&& gnc_import_Settings_get_action_skip_enabled (gui->user_settings) == TRUE)
|
|
{
|
|
gnc_import_TransInfo_set_action(trans_info, GNCImport_SKIP);
|
|
}
|
|
else
|
|
{
|
|
gnc_import_TransInfo_set_action(trans_info, GNCImport_ADD);
|
|
}
|
|
refresh_model_row(gui, model, &iter, trans_info);
|
|
}
|
|
|
|
static void
|
|
gnc_gen_trans_clear_toggled_cb (GtkCellRendererToggle *cell_renderer,
|
|
gchar *path,
|
|
GNCImportMainMatcher *gui)
|
|
{
|
|
GtkTreeModel *model;
|
|
GtkTreeIter iter;
|
|
GNCImportTransInfo *trans_info;
|
|
|
|
model = gtk_tree_view_get_model(gui->view);
|
|
if (!gtk_tree_model_get_iter_from_string(model, &iter, path))
|
|
return;
|
|
gtk_tree_model_get(model, &iter, DOWNLOADED_COL_DATA, &trans_info, -1);
|
|
|
|
if ( gnc_import_TransInfo_get_action(trans_info) == GNCImport_CLEAR
|
|
&& gnc_import_Settings_get_action_skip_enabled (gui->user_settings) == TRUE)
|
|
{
|
|
gnc_import_TransInfo_set_action(trans_info, GNCImport_SKIP);
|
|
}
|
|
else
|
|
{
|
|
gnc_import_TransInfo_set_action(trans_info, GNCImport_CLEAR);
|
|
}
|
|
refresh_model_row(gui, model, &iter, trans_info);
|
|
}
|
|
|
|
static void
|
|
gnc_gen_trans_update_toggled_cb (GtkCellRendererToggle *cell_renderer,
|
|
gchar *path,
|
|
GNCImportMainMatcher *gui)
|
|
{
|
|
GtkTreeModel *model;
|
|
GtkTreeIter iter;
|
|
GNCImportTransInfo *trans_info;
|
|
|
|
model = gtk_tree_view_get_model(gui->view);
|
|
if (!gtk_tree_model_get_iter_from_string(model, &iter, path))
|
|
return;
|
|
gtk_tree_model_get(model, &iter, DOWNLOADED_COL_DATA, &trans_info, -1);
|
|
|
|
if ( gnc_import_TransInfo_get_action(trans_info) == GNCImport_UPDATE
|
|
&& gnc_import_Settings_get_action_skip_enabled (gui->user_settings) == TRUE)
|
|
{
|
|
gnc_import_TransInfo_set_action(trans_info, GNCImport_SKIP);
|
|
}
|
|
else
|
|
{
|
|
gnc_import_TransInfo_set_action(trans_info, GNCImport_UPDATE);
|
|
}
|
|
refresh_model_row(gui, model, &iter, trans_info);
|
|
}
|
|
|
|
static void
|
|
gnc_gen_trans_row_activated_cb (GtkTreeView *view,
|
|
GtkTreePath *path,
|
|
GtkTreeViewColumn *column,
|
|
GNCImportMainMatcher *gui)
|
|
{
|
|
GtkTreeModel *model;
|
|
GtkTreeIter iter;
|
|
GNCImportTransInfo *trans_info;
|
|
|
|
model = gtk_tree_view_get_model(gui->view);
|
|
if (!gtk_tree_model_get_iter(model, &iter, path))
|
|
return;
|
|
gtk_tree_model_get(model, &iter, DOWNLOADED_COL_DATA, &trans_info, -1);
|
|
|
|
switch (gnc_import_TransInfo_get_action (trans_info))
|
|
{
|
|
case GNCImport_ADD:
|
|
if (gnc_import_TransInfo_is_balanced(trans_info) == FALSE)
|
|
{
|
|
run_account_picker_dialog (gui, model, &iter, trans_info);
|
|
}
|
|
break;
|
|
case GNCImport_CLEAR:
|
|
case GNCImport_UPDATE:
|
|
run_match_dialog (gui, trans_info);
|
|
break;
|
|
case GNCImport_SKIP:
|
|
/*The information displayed is only informative, until you select an action*/
|
|
break;
|
|
default:
|
|
PERR("I don't know what to do! (Yet...)");
|
|
break;
|
|
}
|
|
refresh_model_row(gui, model, &iter, trans_info);
|
|
}
|
|
|
|
static void
|
|
gnc_gen_trans_row_changed_cb (GtkTreeSelection *selection,
|
|
GNCImportMainMatcher *gui)
|
|
{
|
|
GtkTreeModel *model;
|
|
GtkTreeIter iter;
|
|
|
|
if (!gtk_tree_selection_get_selected(selection, &model, &iter))
|
|
return;
|
|
gtk_tree_selection_unselect_iter(selection, &iter);
|
|
}
|
|
|
|
static GtkTreeViewColumn *
|
|
add_text_column(GtkTreeView *view, const gchar *title, int col_num)
|
|
{
|
|
GtkCellRenderer *renderer;
|
|
GtkTreeViewColumn *column;
|
|
|
|
renderer = gtk_cell_renderer_text_new();
|
|
g_object_set(G_OBJECT(renderer),
|
|
"foreground", "black",
|
|
"foreground-set", TRUE,
|
|
NULL);
|
|
column = gtk_tree_view_column_new_with_attributes
|
|
(title, renderer,
|
|
"text", col_num,
|
|
"background", DOWNLOADED_COL_COLOR,
|
|
NULL);
|
|
gtk_tree_view_column_set_sort_column_id(column, col_num);
|
|
g_object_set(G_OBJECT(column),
|
|
"reorderable", TRUE,
|
|
"resizable", TRUE,
|
|
NULL);
|
|
gtk_tree_view_append_column(view, column);
|
|
return column;
|
|
}
|
|
|
|
static GtkTreeViewColumn *
|
|
add_toggle_column(GtkTreeView *view, const gchar *title, int col_num,
|
|
GCallback cb_fn, gpointer cb_arg)
|
|
{
|
|
GtkCellRenderer *renderer;
|
|
GtkTreeViewColumn *column;
|
|
|
|
renderer = gtk_cell_renderer_toggle_new();
|
|
column = gtk_tree_view_column_new_with_attributes
|
|
(title, renderer,
|
|
"active", col_num,
|
|
"cell-background", DOWNLOADED_COL_COLOR,
|
|
NULL);
|
|
gtk_tree_view_column_set_sort_column_id(column, col_num);
|
|
g_object_set(G_OBJECT(column),
|
|
"reorderable", TRUE,
|
|
NULL);
|
|
g_signal_connect(renderer, "toggled", cb_fn, cb_arg);
|
|
gtk_tree_view_append_column(view, column);
|
|
return column;
|
|
}
|
|
|
|
static void
|
|
gnc_gen_trans_init_view (GNCImportMainMatcher *info,
|
|
gboolean show_account,
|
|
gboolean show_update)
|
|
{
|
|
GtkTreeView *view;
|
|
GtkListStore *store;
|
|
GtkCellRenderer *renderer;
|
|
GtkTreeViewColumn *column;
|
|
GtkTreeSelection *selection;
|
|
|
|
view = info->view;
|
|
store = gtk_list_store_new(NUM_DOWNLOADED_COLS,
|
|
G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING,
|
|
G_TYPE_STRING, G_TYPE_STRING, G_TYPE_BOOLEAN,
|
|
G_TYPE_BOOLEAN, G_TYPE_BOOLEAN, G_TYPE_STRING,
|
|
GDK_TYPE_PIXBUF, G_TYPE_POINTER, G_TYPE_STRING);
|
|
gtk_tree_view_set_model(view, GTK_TREE_MODEL(store));
|
|
g_object_unref(store);
|
|
|
|
/* Add the columns */
|
|
add_text_column(view, _("Date"), DOWNLOADED_COL_DATE);
|
|
column = add_text_column(view, _("Account"), DOWNLOADED_COL_ACCOUNT);
|
|
gtk_tree_view_column_set_visible(column, show_account);
|
|
add_text_column(view, _("Amount"), DOWNLOADED_COL_AMOUNT);
|
|
add_text_column(view, _("Description"), DOWNLOADED_COL_DESCRIPTION);
|
|
add_text_column(view, _("Memo"), DOWNLOADED_COL_MEMO);
|
|
add_toggle_column(view, _("A"), DOWNLOADED_COL_ACTION_ADD,
|
|
G_CALLBACK(gnc_gen_trans_add_toggled_cb), info);
|
|
column = add_toggle_column(view, _("U+R"), DOWNLOADED_COL_ACTION_UPDATE,
|
|
G_CALLBACK(gnc_gen_trans_update_toggled_cb), info);
|
|
gtk_tree_view_column_set_visible(column, show_update);
|
|
add_toggle_column(view, _("R"), DOWNLOADED_COL_ACTION_CLEAR,
|
|
G_CALLBACK(gnc_gen_trans_clear_toggled_cb), info);
|
|
|
|
/* The last column has multiple renderers */
|
|
renderer = gtk_cell_renderer_pixbuf_new();
|
|
g_object_set(renderer, "xalign", 0.0, NULL);
|
|
column = gtk_tree_view_column_new_with_attributes(_("Info"), renderer,
|
|
"pixbuf", DOWNLOADED_COL_ACTION_PIXBUF,
|
|
"cell-background", DOWNLOADED_COL_COLOR,
|
|
NULL);
|
|
renderer = gtk_cell_renderer_text_new();
|
|
g_object_set(G_OBJECT(renderer),
|
|
"foreground", "black",
|
|
"foreground-set", TRUE,
|
|
NULL);
|
|
gtk_tree_view_column_pack_start(column, renderer, TRUE);
|
|
gtk_tree_view_column_set_attributes(column, renderer,
|
|
"text", DOWNLOADED_COL_ACTION_INFO,
|
|
"background", DOWNLOADED_COL_COLOR,
|
|
NULL);
|
|
gtk_tree_view_column_set_sort_column_id(column, DOWNLOADED_COL_ACTION_INFO);
|
|
g_object_set(G_OBJECT(column),
|
|
"reorderable", TRUE,
|
|
"resizable", TRUE,
|
|
NULL);
|
|
gtk_tree_view_append_column(info->view, column);
|
|
|
|
|
|
selection = gtk_tree_view_get_selection(info->view);
|
|
g_signal_connect(info->view, "row-activated",
|
|
G_CALLBACK(gnc_gen_trans_row_activated_cb), info);
|
|
g_signal_connect(selection, "changed",
|
|
G_CALLBACK(gnc_gen_trans_row_changed_cb), info);
|
|
}
|
|
|
|
GNCImportMainMatcher *gnc_gen_trans_list_new (GtkWidget *parent,
|
|
const gchar* heading,
|
|
gboolean all_from_same_account,
|
|
gint match_date_hardlimit)
|
|
{
|
|
GNCImportMainMatcher *info;
|
|
GtkBuilder *builder;
|
|
GtkWidget *heading_label;
|
|
GtkWidget *box, *pbox;
|
|
gboolean show_update;
|
|
|
|
info = g_new0 (GNCImportMainMatcher, 1);
|
|
info->pending_matches = gnc_import_PendingMatches_new();
|
|
|
|
/* Initialize user Settings. */
|
|
info->user_settings = gnc_import_Settings_new ();
|
|
gnc_import_Settings_set_match_date_hardlimit (info->user_settings, match_date_hardlimit);
|
|
|
|
/* Initialize the GtkDialog. */
|
|
builder = gtk_builder_new();
|
|
gnc_builder_add_from_file (builder, "dialog-import.glade", "transaction_matcher_dialog");
|
|
gnc_builder_add_from_file (builder, "dialog-import.glade", "transaction_matcher_content");
|
|
info->dialog = GTK_WIDGET(gtk_builder_get_object (builder, "transaction_matcher_dialog"));
|
|
g_assert (info->dialog != NULL);
|
|
|
|
/* Pack the content into the dialog vbox */
|
|
pbox = GTK_WIDGET(gtk_builder_get_object (builder, "transaction_matcher_vbox"));
|
|
box = GTK_WIDGET(gtk_builder_get_object (builder, "transaction_matcher_content"));
|
|
gtk_box_pack_start( GTK_BOX(pbox), box, TRUE, TRUE, 0);
|
|
|
|
/* Get the view */
|
|
info->view = GTK_TREE_VIEW(gtk_builder_get_object (builder, "downloaded_view"));
|
|
g_assert (info->view != NULL);
|
|
|
|
show_update = gnc_import_Settings_get_action_update_enabled(info->user_settings);
|
|
gnc_gen_trans_init_view(info, all_from_same_account, show_update);
|
|
heading_label = GTK_WIDGET(gtk_builder_get_object (builder, "heading_label"));
|
|
g_assert (heading_label != NULL);
|
|
|
|
/* if (parent)
|
|
gtk_window_set_transient_for (GTK_WINDOW (info->dialog),
|
|
GTK_WINDOW (parent));*/
|
|
|
|
if (heading)
|
|
gtk_label_set_text (GTK_LABEL (heading_label), heading);
|
|
|
|
gnc_restore_window_size(GNC_PREFS_GROUP, GTK_WINDOW(info->dialog));
|
|
gtk_widget_show_all (GTK_WIDGET (info->dialog));
|
|
|
|
info->transaction_processed_cb = NULL;
|
|
|
|
/* Connect the signals */
|
|
gtk_builder_connect_signals_full (builder, gnc_builder_connect_full_func, info);
|
|
|
|
g_object_unref(G_OBJECT(builder));
|
|
|
|
return info;
|
|
}
|
|
|
|
/*****************************************************************
|
|
* Assistant routines Start *
|
|
*****************************************************************/
|
|
|
|
GNCImportMainMatcher * gnc_gen_trans_assist_new (GtkWidget *parent,
|
|
const gchar* heading,
|
|
gboolean all_from_same_account,
|
|
gint match_date_hardlimit)
|
|
{
|
|
GNCImportMainMatcher *info;
|
|
GtkBuilder *builder;
|
|
GtkWidget *heading_label;
|
|
GtkWidget *box;
|
|
gboolean show_update;
|
|
|
|
info = g_new0 (GNCImportMainMatcher, 1);
|
|
info->pending_matches = gnc_import_PendingMatches_new();
|
|
|
|
/* Initialize user Settings. */
|
|
info->user_settings = gnc_import_Settings_new ();
|
|
gnc_import_Settings_set_match_date_hardlimit (info->user_settings, match_date_hardlimit);
|
|
|
|
/* load the interface */
|
|
builder = gtk_builder_new();
|
|
gnc_builder_add_from_file (builder, "dialog-import.glade", "transaction_matcher_content");
|
|
if (builder == NULL)
|
|
{
|
|
PERR("Error opening the glade builder interface");
|
|
}
|
|
/* Pack content into Assistant page widget */
|
|
box = GTK_WIDGET(gtk_builder_get_object (builder, "transaction_matcher_content"));
|
|
gtk_box_pack_start( GTK_BOX(parent), box, TRUE, TRUE, 6);
|
|
|
|
/* Get the view */
|
|
info->view = GTK_TREE_VIEW(gtk_builder_get_object (builder, "downloaded_view"));
|
|
g_assert (info->view != NULL);
|
|
|
|
show_update = gnc_import_Settings_get_action_update_enabled(info->user_settings);
|
|
gnc_gen_trans_init_view(info, all_from_same_account, show_update);
|
|
heading_label = GTK_WIDGET(gtk_builder_get_object (builder, "heading_label"));
|
|
g_assert (heading_label != NULL);
|
|
|
|
if (heading)
|
|
gtk_label_set_text (GTK_LABEL (heading_label), heading);
|
|
|
|
info->transaction_processed_cb = NULL;
|
|
|
|
/* Connect the signals */
|
|
gtk_builder_connect_signals_full (builder, gnc_builder_connect_full_func, info);
|
|
|
|
g_object_unref(G_OBJECT(builder));
|
|
|
|
return info;
|
|
}
|
|
|
|
void gnc_gen_trans_assist_start (GNCImportMainMatcher *info)
|
|
{
|
|
on_matcher_ok_clicked (NULL, info);
|
|
}
|
|
|
|
/*****************************************************************
|
|
* Assistant routines End *
|
|
*****************************************************************/
|
|
|
|
void gnc_gen_trans_list_add_tp_cb(GNCImportMainMatcher *info,
|
|
GNCTransactionProcessedCB trans_processed_cb,
|
|
gpointer user_data)
|
|
{
|
|
info->user_data = user_data;
|
|
info->transaction_processed_cb = trans_processed_cb;
|
|
}
|
|
|
|
gboolean gnc_gen_trans_list_run (GNCImportMainMatcher *info)
|
|
{
|
|
gboolean result;
|
|
|
|
/* DEBUG("Begin"); */
|
|
result = gtk_dialog_run (GTK_DIALOG (info->dialog));
|
|
/* DEBUG("Result was %d", result); */
|
|
|
|
/* No destroying here since the dialog was already destroyed through
|
|
the ok_clicked handlers. */
|
|
|
|
return result;
|
|
}
|
|
|
|
static void
|
|
refresh_model_row (GNCImportMainMatcher *gui,
|
|
GtkTreeModel *model,
|
|
GtkTreeIter *iter,
|
|
GNCImportTransInfo *info)
|
|
{
|
|
GtkListStore *store;
|
|
GtkTreeSelection *selection;
|
|
gchar *tmp, *imbalance, *text, *color;
|
|
const gchar *ro_text;
|
|
Split *split;
|
|
g_assert (gui);
|
|
g_assert (model);
|
|
g_assert (info);
|
|
/*DEBUG("Begin");*/
|
|
|
|
store = GTK_LIST_STORE(model);
|
|
gtk_list_store_set(store, iter, DOWNLOADED_COL_DATA, info, -1);
|
|
|
|
/*Account:*/
|
|
split = gnc_import_TransInfo_get_fsplit (info);
|
|
g_assert(split); // Must not be NULL
|
|
ro_text = xaccAccountGetName(xaccSplitGetAccount(split));
|
|
gtk_list_store_set(store, iter, DOWNLOADED_COL_ACCOUNT, ro_text, -1);
|
|
|
|
/*Date*/
|
|
text = qof_print_date ( xaccTransGetDate( gnc_import_TransInfo_get_trans(info) ) );
|
|
gtk_list_store_set(store, iter, DOWNLOADED_COL_DATE, text, -1);
|
|
g_free(text);
|
|
|
|
/*Amount*/
|
|
ro_text = xaccPrintAmount
|
|
(xaccSplitGetAmount (split),
|
|
gnc_split_amount_print_info(split, TRUE)
|
|
);
|
|
gtk_list_store_set(store, iter, DOWNLOADED_COL_AMOUNT, ro_text, -1);
|
|
|
|
/*Description*/
|
|
ro_text = xaccTransGetDescription(gnc_import_TransInfo_get_trans(info) );
|
|
gtk_list_store_set(store, iter, DOWNLOADED_COL_DESCRIPTION, ro_text, -1);
|
|
|
|
/*Memo*/
|
|
ro_text = xaccSplitGetMemo(split);
|
|
gtk_list_store_set(store, iter, DOWNLOADED_COL_MEMO, ro_text, -1);
|
|
|
|
/*Actions*/
|
|
|
|
/* Action information */
|
|
ro_text = text = color = NULL;
|
|
switch (gnc_import_TransInfo_get_action(info))
|
|
{
|
|
case GNCImport_ADD:
|
|
if (gnc_import_TransInfo_is_balanced(info) == TRUE)
|
|
{
|
|
ro_text = _("New, already balanced");
|
|
color = COLOR_GREEN;
|
|
}
|
|
else
|
|
{
|
|
/* Assume that importers won't create transactions in two or more
|
|
currencies so we can use xaccTransGetImbalanceValue */
|
|
imbalance =
|
|
g_strdup
|
|
(xaccPrintAmount
|
|
(gnc_numeric_neg(xaccTransGetImbalanceValue
|
|
(gnc_import_TransInfo_get_trans(info) )),
|
|
gnc_commodity_print_info
|
|
(xaccTransGetCurrency(gnc_import_TransInfo_get_trans (info)),
|
|
TRUE) ));
|
|
if (gnc_import_TransInfo_get_destacc (info) != NULL)
|
|
{
|
|
color = COLOR_GREEN;
|
|
tmp = gnc_account_get_full_name
|
|
(gnc_import_TransInfo_get_destacc (info));
|
|
if (gnc_import_TransInfo_get_destacc_selected_manually(info)
|
|
== TRUE)
|
|
{
|
|
text =
|
|
/* Translators: %1$s is the amount to be
|
|
transferred. %2$s is the destination account. */
|
|
g_strdup_printf(_("New, transfer %s to (manual) \"%s\""),
|
|
imbalance, tmp);
|
|
}
|
|
else
|
|
{
|
|
text =
|
|
/* Translators: %1$s is the amount to be
|
|
transferred. %2$s is the destination account. */
|
|
g_strdup_printf(_("New, transfer %s to (auto) \"%s\""),
|
|
imbalance, tmp);
|
|
}
|
|
g_free (tmp);
|
|
|
|
}
|
|
else
|
|
{
|
|
color = COLOR_YELLOW;
|
|
text =
|
|
/* Translators: %s is the amount to be transferred. */
|
|
g_strdup_printf(_("New, UNBALANCED (need acct to transfer %s)!"),
|
|
imbalance);
|
|
}
|
|
g_free (imbalance);
|
|
}
|
|
break;
|
|
case GNCImport_CLEAR:
|
|
if (gnc_import_TransInfo_get_selected_match(info))
|
|
{
|
|
color = COLOR_GREEN;
|
|
if (gnc_import_TransInfo_get_match_selected_manually(info) == TRUE)
|
|
{
|
|
ro_text = _("Reconcile (manual) match");
|
|
}
|
|
else
|
|
{
|
|
ro_text = _("Reconcile (auto) match");
|
|
}
|
|
}
|
|
else
|
|
{
|
|
color = COLOR_RED;
|
|
ro_text = _("Match missing!");
|
|
}
|
|
break;
|
|
case GNCImport_UPDATE:
|
|
if (gnc_import_TransInfo_get_selected_match(info))
|
|
{
|
|
color = COLOR_GREEN;
|
|
if (gnc_import_TransInfo_get_match_selected_manually(info) == TRUE)
|
|
{
|
|
ro_text = _("Update and reconcile (manual) match");
|
|
}
|
|
else
|
|
{
|
|
ro_text = _("Update and reconcile (auto) match");
|
|
}
|
|
}
|
|
else
|
|
{
|
|
color = COLOR_RED;
|
|
ro_text = _("Match missing!");
|
|
}
|
|
break;
|
|
case GNCImport_SKIP:
|
|
color = COLOR_RED;
|
|
ro_text = _("Do not import (no action selected)");
|
|
break;
|
|
default:
|
|
color = "white";
|
|
ro_text = "WRITEME, this is an unknown action";
|
|
break;
|
|
}
|
|
|
|
gtk_list_store_set(store, iter,
|
|
DOWNLOADED_COL_COLOR, color,
|
|
DOWNLOADED_COL_ACTION_INFO, ro_text ? ro_text : text,
|
|
-1);
|
|
if (text)
|
|
g_free(text);
|
|
|
|
/* Set the pixmaps */
|
|
gtk_list_store_set(store, iter,
|
|
DOWNLOADED_COL_ACTION_ADD,
|
|
gnc_import_TransInfo_get_action(info) == GNCImport_ADD,
|
|
-1);
|
|
if (gnc_import_TransInfo_get_action(info) == GNCImport_SKIP)
|
|
{
|
|
/*Show the best match's confidence pixmap in the info column*/
|
|
gtk_list_store_set(store, iter,
|
|
DOWNLOADED_COL_ACTION_PIXBUF,
|
|
gen_probability_pixbuf( gnc_import_MatchInfo_get_probability
|
|
( gnc_import_TransInfo_get_selected_match (info)),
|
|
gui->user_settings,
|
|
GTK_WIDGET(gui->view)),
|
|
-1);
|
|
}
|
|
|
|
gtk_list_store_set(store, iter,
|
|
DOWNLOADED_COL_ACTION_CLEAR,
|
|
gnc_import_TransInfo_get_action(info) == GNCImport_CLEAR,
|
|
-1);
|
|
if (gnc_import_TransInfo_get_action(info) == GNCImport_CLEAR)
|
|
{
|
|
/*Show the best match's confidence pixmap in the info column*/
|
|
gtk_list_store_set(store, iter,
|
|
DOWNLOADED_COL_ACTION_PIXBUF,
|
|
gen_probability_pixbuf( gnc_import_MatchInfo_get_probability
|
|
( gnc_import_TransInfo_get_selected_match (info)),
|
|
gui->user_settings,
|
|
GTK_WIDGET(gui->view)),
|
|
-1);
|
|
}
|
|
|
|
gtk_list_store_set(store, iter,
|
|
DOWNLOADED_COL_ACTION_UPDATE,
|
|
gnc_import_TransInfo_get_action(info) == GNCImport_UPDATE,
|
|
-1);
|
|
if (gnc_import_TransInfo_get_action(info) == GNCImport_UPDATE)
|
|
{
|
|
/*Show the best match's confidence pixmap in the info column*/
|
|
gtk_list_store_set(store, iter,
|
|
DOWNLOADED_COL_ACTION_PIXBUF,
|
|
gen_probability_pixbuf( gnc_import_MatchInfo_get_probability
|
|
( gnc_import_TransInfo_get_selected_match (info)),
|
|
gui->user_settings,
|
|
GTK_WIDGET(gui->view)),
|
|
-1);
|
|
}
|
|
|
|
selection = gtk_tree_view_get_selection(gui->view);
|
|
gtk_tree_selection_unselect_all(selection);
|
|
}
|
|
|
|
void gnc_gen_trans_list_add_trans(GNCImportMainMatcher *gui, Transaction *trans)
|
|
{
|
|
gnc_gen_trans_list_add_trans_with_ref_id(gui, trans, 0);
|
|
return;
|
|
}/* end gnc_import_add_trans() */
|
|
|
|
void gnc_gen_trans_list_add_trans_with_ref_id(GNCImportMainMatcher *gui, Transaction *trans, guint32 ref_id)
|
|
{
|
|
GNCImportTransInfo * transaction_info = NULL;
|
|
GtkTreeModel *model;
|
|
GtkTreeIter iter;
|
|
GNCImportMatchInfo *selected_match;
|
|
gboolean match_selected_manually;
|
|
g_assert (gui);
|
|
g_assert (trans);
|
|
|
|
|
|
if (gnc_import_exists_online_id (trans))
|
|
return;
|
|
else
|
|
{
|
|
transaction_info = gnc_import_TransInfo_new(trans, NULL);
|
|
gnc_import_TransInfo_set_ref_id(transaction_info, ref_id);
|
|
|
|
gnc_import_TransInfo_init_matches(transaction_info,
|
|
gui->user_settings);
|
|
|
|
selected_match =
|
|
gnc_import_TransInfo_get_selected_match(transaction_info);
|
|
match_selected_manually =
|
|
gnc_import_TransInfo_get_match_selected_manually(transaction_info);
|
|
|
|
if (selected_match)
|
|
gnc_import_PendingMatches_add_match(gui->pending_matches,
|
|
selected_match,
|
|
match_selected_manually);
|
|
|
|
model = gtk_tree_view_get_model(gui->view);
|
|
gtk_list_store_append(GTK_LIST_STORE(model), &iter);
|
|
refresh_model_row (gui, model, &iter, transaction_info);
|
|
}
|
|
return;
|
|
}/* end gnc_import_add_trans_with_ref_id() */
|
|
|
|
GtkWidget *gnc_gen_trans_list_widget (GNCImportMainMatcher *info)
|
|
{
|
|
g_assert(info);
|
|
return info->dialog;
|
|
}
|
|
|
|
/** @} */
|