mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
When preparing imported DTAUS jobs, check their availability as well.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19814 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
c5821ef5fa
commit
a12cc790b1
@ -598,7 +598,11 @@ txn_transaction_cb(const AB_TRANSACTION *element, gpointer user_data)
|
|||||||
job = gnc_ab_get_trans_job(data->ab_acc, ab_trans, SINGLE_DEBITNOTE);
|
job = gnc_ab_get_trans_job(data->ab_acc, ab_trans, SINGLE_DEBITNOTE);
|
||||||
|
|
||||||
/* Check whether we really got a job */
|
/* Check whether we really got a job */
|
||||||
if (!job)
|
if (!job || AB_Job_CheckAvailability(job
|
||||||
|
#ifndef AQBANKING_VERSION_5_PLUS
|
||||||
|
, 0
|
||||||
|
#endif
|
||||||
|
))
|
||||||
{
|
{
|
||||||
/* Oops, no job, probably not supported by bank */
|
/* Oops, no job, probably not supported by bank */
|
||||||
if (gnc_verify_dialog(
|
if (gnc_verify_dialog(
|
||||||
@ -613,7 +617,7 @@ txn_transaction_cb(const AB_TRANSACTION *element, gpointer user_data)
|
|||||||
"\n"
|
"\n"
|
||||||
"Do you want to enter the job again?")))
|
"Do you want to enter the job again?")))
|
||||||
{
|
{
|
||||||
gnc_error_dialog(NULL, "Sorry, not implemented yet.");
|
gnc_error_dialog(NULL, "Sorry, not implemented yet. Please check the console or trace file logs to see which job was rejected.");
|
||||||
}
|
}
|
||||||
/* else */
|
/* else */
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user