mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
2003-02-22 Christian Stimming <stimming@tuhh.de>
* src/import-export/hbci/dialog-hbcitrans.c: Quick fix to avoid online transfers being sent to the bank twice. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@8012 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
74d2558986
commit
5644fe4325
@ -1,3 +1,8 @@
|
|||||||
|
2003-02-22 Christian Stimming <stimming@tuhh.de>
|
||||||
|
|
||||||
|
* src/import-export/hbci/dialog-hbcitrans.c: Quick fix to avoid
|
||||||
|
online transfers being sent to the bank twice.
|
||||||
|
|
||||||
2003-02-19 Derek Atkins <derek@ihtfp.com>
|
2003-02-19 Derek Atkins <derek@ihtfp.com>
|
||||||
|
|
||||||
* configure.in: move AS_SCRUB_INCLUDE _before_ tests so it wont
|
* configure.in: move AS_SCRUB_INCLUDE _before_ tests so it wont
|
||||||
|
@ -274,7 +274,7 @@ gnc_hbci_trans (GtkWidget *parent,
|
|||||||
/* HBCI_API_executeOutbox failed. */
|
/* HBCI_API_executeOutbox failed. */
|
||||||
gtk_widget_destroy (GTK_WIDGET (dialog));
|
gtk_widget_destroy (GTK_WIDGET (dialog));
|
||||||
HBCI_Transaction_delete (trans);
|
HBCI_Transaction_delete (trans);
|
||||||
HBCI_API_clearQueueByStatus (api, HBCI_JOB_STATUS_DONE);
|
HBCI_API_clearQueueByStatus (api, HBCI_JOB_STATUS_NONE);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -284,7 +284,7 @@ gnc_hbci_trans (GtkWidget *parent,
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
HBCI_API_clearQueueByStatus (api, HBCI_JOB_STATUS_DONE);
|
HBCI_API_clearQueueByStatus (api, HBCI_JOB_STATUS_NONE);
|
||||||
gtk_widget_destroy (GTK_WIDGET (dialog));
|
gtk_widget_destroy (GTK_WIDGET (dialog));
|
||||||
return trans;
|
return trans;
|
||||||
}
|
}
|
||||||
|
@ -1050,7 +1050,7 @@ on_accountinfo_next (GnomeDruidPage *gnomedruidpage,
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
HBCI_API_clearQueueByStatus (info->api, HBCI_JOB_STATUS_DONE);
|
HBCI_API_clearQueueByStatus (info->api, HBCI_JOB_STATUS_NONE);
|
||||||
}
|
}
|
||||||
//update_accountlist(info->api);
|
//update_accountlist(info->api);
|
||||||
|
|
||||||
@ -1171,7 +1171,7 @@ on_iniletter_info_next (GnomeDruidPage *gnomedruidpage,
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
HBCI_API_clearQueueByStatus (info->api, HBCI_JOB_STATUS_DONE);
|
HBCI_API_clearQueueByStatus (info->api, HBCI_JOB_STATUS_NONE);
|
||||||
info->gotkeysforCustomer = info->newcustomer;
|
info->gotkeysforCustomer = info->newcustomer;
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -1303,7 +1303,7 @@ on_iniletter_userinfo_next (GnomeDruidPage *gnomedruidpage,
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
HBCI_API_clearQueueByStatus (info->api, HBCI_JOB_STATUS_DONE);
|
HBCI_API_clearQueueByStatus (info->api, HBCI_JOB_STATUS_NONE);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
printf("on_iniletter_userinfo_next: Oops, already got keys for another customer. Not yet implemented.\n");
|
printf("on_iniletter_userinfo_next: Oops, already got keys for another customer. Not yet implemented.\n");
|
||||||
|
@ -214,7 +214,7 @@ gnc_hbci_getbalance (GtkWidget *parent, Account *gnc_acc)
|
|||||||
booked_tt);
|
booked_tt);
|
||||||
}
|
}
|
||||||
|
|
||||||
HBCI_API_clearQueueByStatus (api, HBCI_JOB_STATUS_DONE);
|
HBCI_API_clearQueueByStatus (api, HBCI_JOB_STATUS_NONE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -234,7 +234,7 @@ gnc_hbci_gettrans (GtkWidget *parent, Account *gnc_acc)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Clean up behind ourself. */
|
/* Clean up behind ourself. */
|
||||||
HBCI_API_clearQueueByStatus (api, HBCI_JOB_STATUS_DONE);
|
HBCI_API_clearQueueByStatus (api, HBCI_JOB_STATUS_NONE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user