Änderungen

Zur Navigation springen Zur Suche springen
6.759 Bytes hinzugefügt ,  11:08, 9. Sep. 2013
== Plattformübergreifende Software ==

=== Hibiscus ===

[[Hibiscus]] ist im Wesentlichen eine Homebankingsoftware. Als [[Java]]-Anwendung handelt es sich um [[Plattformübergreifende Software]].

* [http://www.willuhn.de/products/hibiscus/ Offzielles und Aktuelles zu Hibiscus]

=== SynTAX ===

Vom selben Hersteller wie [[Hibiscus]] ist die "Finanzbuchhaltung für Selbständige und 'Nichtbilanzierer' nach SKR03/04" [http://www.willuhn.de/products/syntax/ SynTAX].

=== GnuCash ===

[[GnuCash]] läuft zumindest unter [[Linux]] und [[Windows]].
* [http://www.gnucash.org/de/ Aktuelles zu GnuCash]
* [http://wiki.gnucash.org/wiki/De/GnuCash GnuCash Wiki]
* Mit GnuCash lässt sich auch eine [http://wiki.gnucash.org/wiki/De/EÜR Einnahme-Überschuss-Rechnung realisieren].
* [https://bugzilla.gnome.org/show_bug.cgi?id=473506 Meta-Bug für deutsche Benutzer von GnuCash]


=== GnuAccounting ===

[http://www.gnuaccounting.de/index.php?id=3 GnuAccounting] unterstützt sowohl die Belegverwaltung als auch doppelte Buchführung. Außerdem besitzt es eine [[HBCI]]/[[FinTS]]-Schnittstelle.

=== Weitere ===

* [http://www.sql-ledger.com/ SQL-Ledger], ein ERP-Programm
* [http://lx-office.org/index.php?id=home Lx-Office] ist eine Variante, die 2003 sich von [[SQL-Ledger]] abtrennte und auf deutsche Besonderheiten Rücksicht nimmt.
** [http://debian.asconix.com/lx-office-debian-lenny-howto Anleitung zur Installation von Lx-Office 2.6] auf [[Debian]] Lenny
* [http://www.compiere.com/products/index.php Compiere], ein ERP-Programm, dessen Kern [[OpenSource]] ist.

== Open-Source-Programme für Linux ==

=== Eqonomize ===
* [http://eqonomize.sourceforge.net/index.html Eqonomize] verfügt auch über QIF-Im- und -Export. Eqonomize ist Bestandteil der [[Ubuntu]]-Distribution.

=== Skrooge ===
* [http://userbase.kde.org/Skrooge Skrooge] verfügt auch über QIF-Im- und -Export. Skrooge ist Bestandteil der [[Ubuntu]]-Distribution. Es basiert auf KDE.

=== KMyMoney ===
* [http://userbase.kde.org/KMyMoney KMyMoney] verfügt auch über QIF-Im- und -Export. KMyMoney ist Bestandteil der [[Ubuntu]]-Distribution.

=== AqBanking-CLI ===

Auf der Konsole lässt sich mittels [http://www.aquamaniac.de/sites/aqbanking/cli.php AqBanking-CLI] auf ein HBCI-Konto zugreifen.
* [http://openlab.radion.org/lab/Konsolenbasiertes_Online_Banking_mit_Linux AqBanking-HOWTo]
* [http://www.aquamaniac.de/sites/download/packages.php AqBanking-Handbuch] oder [http://www.aquamaniac.de/sites/download/download.php?package=09&release=09&file=01&dummy=aqbanking4-handbook-20091231.pdf direkt hier]
* http://blog.philippklaus.de/blog/2010/02/25/aqbanking-cli/
* http://www.loebhard.com/linux/homebanking
* [http://suesz.de/wiki_public_homepage/HBCI_auf_der_Kommandozeile_unter_Linux AqBanking als Cron-Job]
* [http://www.khjk.org/log/2009/oct/ledger.html Skripts für AqBanking mit Ledger]

==== Beispiel für Postbank ====

* Einrichtung Konto

aqhbci-tool4 adduser -t pintan --context=1 -b $BANKLEITZAHL -u $GIROKONTONUMMER -N "$VORNAME $NACHNAME" -s https://hbci.postbank.de/banking/hbci.do
aqhbci-tool4 adduserflags -b $BANKLEITZAHL -u $GIROKONTONUMMER -f forceSsl3
aqhbci-tool4 getsysid -u $GIROKONTONUMMER

* Wahl iTAN-Mode
aqhbci-tool4 listitanmodes -u $GIROKONTONUMMER
aqhbci-tool4 setitanmodes -u $GIROKONTONUMMER -m 900

* Abruf Konten
aqhbci-tool4 getaccounts -u $GIROKONTONUMMER
aqhbci-tool4 listaccounts
aqbanking-cli listaccs

* Abruf Kontostand
aqbanking-cli request -b $BANKLEITZAHL --balance

* Abruf Gut-/Lastschriften
aqbanking-cli request -b $BANKLEITZAHL --transactions

==== Beispiel für Netbank ====

Auch die [http://www.netbank.de/nb/girokonto_hbci.jsp Netbank lässt HBCI-Zugriff] zu:

* Einrichtung Konto

aqhbci-tool4 adduser -t pintan --context=1 -b BANKLEITZAHL -u GIROKONTONUMMER -N "VORNAME NACHNAME" -s https://www.bankingonline.de/hbci/pintan/PinTanServlet
aqhbci-tool4 getsysid -u GIROKONTONUMMER

* Wahl iTAN-Mode
aqhbci-tool4 listitanmodes -u GIROKONTONUMMER
aqhbci-tool4 setitanmodes -u GIROKONTONUMMER -m 997

* Abruf Konten
aqhbci-tool4 getaccounts -u GIROKONTONUMMER
aqhbci-tool4 listaccounts
aqbanking-cli listaccs

* Abruf Kontostand
aqbanking-cli request -b BANKLEITZAHL --balance

* Abruf Gut-/Lastschriften
aqbanking-cli request -b BANKLEITZAHL --transactions

==== PIN speichern ====

Um die PIN nicht jedesmal eingeben zu müssen, erstellt man NACH Einrichten der Konten eine pindatei.txt

aqhbci-tool4.sh mkpinlist > pindatei.txt

In diese selbsterklärende Datei muss man dann die PIN(s) mittels eines Editors eingeben.

Der Aufruf von <code>aqbanking-cli</code> muss dann einen Hinweis auf den PIN-Speicher erhalten:
aqbanking-cli '''-P pindatei.txt''' request -b BANKLEITZAHL --balance

==== Transaktionen als CSV ====

Mit

aqbanking-cli listtrans

kann man den Output von <code>aqbanking-cli request --transactions</code> in [[CSV]]-Form umwandeln.

Bei selbsgestrickten Output-Profilen auf das einleitende
profile {
[http://www.onlinebanking-forum.de/phpBB2/printview.php?t=11118&start=0 achten].

==== Schnittstelle PHP zu HBCI ====

Siehe [http://wiki.shopware.de/Allgemein-PHP-und-HBCI-Teil-1_detail_631.html Software-Projekt]

=== Ledger ===

[http://ledger-cli.org/features.html Ledger] ist eine Kommandozeilen-[[Doppelte Buchführung]].

=== Weitere ===

* [http://www.bemme.de/download.html Tudo], Warenwirtschaft und Finanzbuchhaltung

== Android Apps ==

* Die [https://play.google.com/store/apps/details?id=de.fiducia.smartphone.android.banking.nibc&feature=search_result#?t=W251bGwsMSwyLDEsImRlLmZpZHVjaWEuc21hcnRwaG9uZS5hbmRyb2lkLmJhbmtpbmcubmliYyJd NIBC-App] lässt auch die Verwaltung von Konten anderer Banken zu. Voraussetzung ist aber ein Konto bei der NIBC.

== Buchführung mit Tabellenkalkulation ==

* [http://www.easylinux.de/Artikel/ausgabe/2006/01/044-kassenbuch/index.html Kassenbuch mit OpenOffice führen]

== Programmierschnittstellen ==

=== FinTS ===

FinTS ist der Nachfolger von HBCI<ref>http://linuxwiki.de/HBCI</ref>

* Allgemeine Informationen zu HBCI gibt's im [http://linuxwiki.de/HBCI LinuxWiki].
* [http://hbci4java.kapott.org/ HBCI4Java] ist eine [[OpenSource]]-API, die auch von [[Hibiscus]] genutzt wird. Der von Hibiscus verwendete Branch findet sich auf [https://github.com/willuhn/hbci4java GitHub].
* Siehe auch oben [[AqBanking-CLI]]

=== Postbank ===

* Die HBCI-Adresse der Postbank findet sich [http://www.postbank.de/privatkunden/pk_banking_postbank_de.html hier (inkl. Zertifikat)].
* Weitere Parameter finden sich im [http://linuxwiki.de/OpenHBCI/GetesteteBanken Wiki von OpenHBCI].

[[Category:Plattformübergreifende Software]]
[[Category:Finanzen]]
[[Category:Java]]
[[Category:DesktopSoftware]]

-------

<references/>

Navigationsmenü