Skip to content

Commit

Permalink
Code 3290 ebenfalls tolerieren (keine Dauerauftraege beim Abruf)
Browse files Browse the repository at this point in the history
  • Loading branch information
willuhn committed Feb 19, 2019
1 parent 99006c5 commit f2326e3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions build/ChangeLog
@@ -1,5 +1,6 @@
HEAD 2.9 (nightly)

* BUG: 0757 Code 3290 ebenfalls tolerieren (keine Dauerauftraege beim Abruf)
* BUG: 0756 Wertebereich f�r PmtInfId noch etwas eingeschr�nkt (RestrictedIdentificationSEPA1)
* BUG: 0755 Neues Feld mit der Mandatsreferenz wurde in der globalen Suche noch nicht ber�cksichtigt
* NEW: 0754 Neues CSV-Exportformat f�r "Einnahmen/Ausgaben"
Expand Down
3 changes: 2 additions & 1 deletion src/de/willuhn/jameica/hbci/server/hbci/AbstractHBCIJob.java
Expand Up @@ -244,11 +244,12 @@ public final void handleResult() throws ApplicationException, RemoteException
// Sonderfall: Wenn keine Umsaetze vorliegen, senden manche Banken nicht "0020 - Es sind keine Umsätze vorhanden." sondern
// "3010 - Für Konto <nr> liegen keine Daten vor.". Siehe https://homebanking-hilfe.de/forum/topic.php?t=22461&page=fst_unread
// Oder "3010 - Umsatzabfrage: Keine Einträge vorhanden."
// 3290 senden manche Banken beim Abruf der Dauerauftraege, wenn keine vorhanden waren
HBCIRetVal[] warnings = status.getWarnings();
if (warnings != null && warnings.length == 1 && warnings[0].code != null && warnings[0].text != null)
{
Logger.info("institute did not sent 0xxx success code - only " + warnings[0].toString());
if (warnings[0].code.equals("3010"))
if (warnings[0].code.equals("3010") || warnings[0].code.equals("3290"))
{
executed = true;
haveJobStatus = true;
Expand Down

0 comments on commit f2326e3

Please sign in to comment.