[Kmymoney-devel] [kmymoney4] [Bug 313237] No payee matching with aqbanking import (HBCI)
Christian David
christian-david at web.de
Sat Dec 7 21:05:42 UTC 2013
https://bugs.kde.org/show_bug.cgi?id=313237
--- Comment #10 from Christian David <christian-david at web.de> ---
Git commit c836c3dec4509fb229cf2f71e31afe23512dac4e by Christian Dávid.
Committed on 07/12/2013 at 17:02.
Pushed by christiand into branch 'add-onlinebanking'.
Started adding onlinebanking including sending credit transfers
Started to add a system for creating jobs which can be executed by a
plugin.
Tasks for german and sepa credit transfers were ceated including ui.
KBanking (aqbanking) can use them to create credit transfers.
This is work in progress.
Related: bug 238105
M +3 -0 .gitignore
M +3 -1 CMakeLists.txt
M +6 -5 kmymoney.doxygen.in
M +5 -3 kmymoney/CMakeLists.txt
M +6 -0 kmymoney/dialogs/CMakeLists.txt
A +198 -0 kmymoney/dialogs/konlinetransferform.cpp [License: GPL
(v2+)]
A +120 -0 kmymoney/dialogs/konlinetransferform.h [License: GPL (v2+)]
A +254 -0 kmymoney/dialogs/konlinetransferformdecl.ui
M +131 -2 kmymoney/kmymoney.cpp
M +40 -0 kmymoney/kmymoney.h
M +5 -0 kmymoney/models/CMakeLists.txt
M +1 -1 kmymoney/models/accountsmodel.cpp
M +15 -1 kmymoney/models/models.cpp
M +2 -0 kmymoney/models/models.h
A +139 -0 kmymoney/models/onlinejobmodel.cpp [License: UNKNOWN] *
A +49 -0 kmymoney/models/onlinejobmodel.h [License: UNKNOWN] *
M +64 -7 kmymoney/mymoney/CMakeLists.txt
A +21 -0 kmymoney/mymoney/accountidentifier.cpp [License: GPL (v2+)]
A +65 -0 kmymoney/mymoney/accountidentifier.h [License: GPL (v2+)]
A +1 -0 kmymoney/mymoney/bankaccountidentifier.cpp [License: Trivial
file]
A +53 -0 kmymoney/mymoney/bankaccountidentifier.h [License: UNKNOWN]
*
A +114 -0 kmymoney/mymoney/germanaccountidentifier.cpp [License:
UNKNOWN] *
A +61 -0 kmymoney/mymoney/germanaccountidentifier.h [License:
UNKNOWN] *
A +161 -0 kmymoney/mymoney/germanonlinetransfer.cpp [License: GPL
(v2+)]
A +154 -0 kmymoney/mymoney/germanonlinetransfer.h [License: GPL (v2+)]
M +69 -0 kmymoney/mymoney/mymoneyfile.cpp
M +47 -1 kmymoney/mymoney/mymoneyfile.h
M +156 -0 kmymoney/mymoney/mymoneyfiletest.cpp
M +7 -0 kmymoney/mymoney/mymoneyfiletest.h
M +8 -0 kmymoney/mymoney/mymoneyobjectcontainer.cpp
M +4 -0 kmymoney/mymoney/mymoneyobjectcontainer.h
A +174 -0 kmymoney/mymoney/onlinejob.cpp [License: GPL (v2+)]
A +289 -0 kmymoney/mymoney/onlinejob.h [License: GPL (v2+)]
A +213 -0 kmymoney/mymoney/onlinejobadministration.cpp [License:
UNKNOWN] *
A +134 -0 kmymoney/mymoney/onlinejobadministration.h [License:
UNKNOWN] *
A +50 -0 kmymoney/mymoney/onlinejobadministrationtest.cpp [License:
UNKNOWN] *
A +24 -0 kmymoney/mymoney/onlinejobadministrationtest.h [License:
UNKNOWN] *
A +5 -0 kmymoney/mymoney/onlinejobfolder.cpp [License: UNKNOWN] *
A +42 -0 kmymoney/mymoney/onlinejobfolder.h [License: UNKNOWN] *
A +113 -0 kmymoney/mymoney/onlinejobknowntask.h [License: UNKNOWN] *
A +49 -0 kmymoney/mymoney/onlinejobknowntasktest.cpp [License:
UNKNOWN] *
A +20 -0 kmymoney/mymoney/onlinejobknowntasktest.h [License: UNKNOWN]
*
A +9 -0 kmymoney/mymoney/onlinejobmessage.cpp [License: UNKNOWN] *
A +73 -0 kmymoney/mymoney/onlinejobmessage.h [License: UNKNOWN] *
A +57 -0 kmymoney/mymoney/onlinejobtest.cpp [License: UNKNOWN] *
A +21 -0 kmymoney/mymoney/onlinejobtest.h [License: UNKNOWN] *
A +28 -0 kmymoney/mymoney/onlinetask.cpp [License: UNKNOWN] *
A +240 -0 kmymoney/mymoney/onlinetask.h [License: UNKNOWN] *
A +32 -0 kmymoney/mymoney/onlinetransfer.cpp [License: GPL (v2+)]
A +71 -0 kmymoney/mymoney/onlinetransfer.h [License: GPL (v2+)]
A +116 -0 kmymoney/mymoney/sepaonlinetransfer.cpp [License: UNKNOWN]
*
A +96 -0 kmymoney/mymoney/sepaonlinetransfer.h [License: UNKNOWN] *
M +2 -1 kmymoney/mymoney/storage/CMakeLists.txt
M +3 -0 kmymoney/mymoney/storage/imymoneyserialize.h
M +34 -0 kmymoney/mymoney/storage/imymoneystorage.h
M +10 -0 kmymoney/mymoney/storage/mymoneydatabasemgr.h
M +60 -0 kmymoney/mymoney/storage/mymoneyseqaccessmgr.cpp
M +38 -0 kmymoney/mymoney/storage/mymoneyseqaccessmgr.h
M +21 -0 kmymoney/mymoney/storage/mymoneyseqaccessmgrtest.cpp
M +1 -0 kmymoney/mymoney/storage/mymoneyseqaccessmgrtest.h
A +2 -0 kmymoney/mymoney/swiftaccountidentifier.cpp [License:
UNKNOWN] *
A +39 -0 kmymoney/mymoney/swiftaccountidentifier.h [License: UNKNOWN]
*
M +16 -5 kmymoney/plugins/CMakeLists.txt
M +9 -0 kmymoney/plugins/kbanking/CMakeLists.txt
A +52 -0 kmymoney/plugins/kbanking/aqbankingkmmoperators.cpp
[License: UNKNOWN] *
A +44 -0 kmymoney/plugins/kbanking/aqbankingkmmoperators.h [License:
UNKNOWN] *
A +28 -0 kmymoney/plugins/kbanking/aqbankingqtoperators.h [License:
UNKNOWN] *
M +6 -1 kmymoney/plugins/kbanking/dialogs/CMakeLists.txt
A +1 -0 kmymoney/plugins/kbanking/gwenhywfarqtoperatiors.cpp
[License: Trivial file]
A +21 -0 kmymoney/plugins/kbanking/gwenhywfarqtoperators.cpp
[License: UNKNOWN] *
A +29 -0 kmymoney/plugins/kbanking/gwenhywfarqtoperators.h [License:
UNKNOWN] *
M +325 -36 kmymoney/plugins/kbanking/mymoneybanking.cpp
M +33 -6 kmymoney/plugins/kbanking/mymoneybanking.h
M +5 -0 kmymoney/plugins/kbanking/views/CMakeLists.txt
M +4 -2 kmymoney/plugins/kbanking/views/kbjobview.cpp
M +4 -1 kmymoney/plugins/kbanking/views/kbjobview.h
M +1 -0 kmymoney/plugins/kmymoneyplugin.h
A +11 -0 kmymoney/plugins/onlinepluginextended.cpp [License: UNKNOWN]
*
A +69 -0 kmymoney/plugins/onlinepluginextended.h [License: UNKNOWN]
*
M +2 -0 kmymoney/views/CMakeLists.txt
M +9 -0 kmymoney/views/kmymoneyview.cpp
M +5 -1 kmymoney/views/kmymoneyview.h
A +79 -0 kmymoney/views/konlinejoboutbox.cpp [License: UNKNOWN] *
A +35 -0 kmymoney/views/konlinejoboutbox.h [License: UNKNOWN] *
A +93 -0 kmymoney/views/konlinejoboutbox.ui
M +11 -0 kmymoney/widgets/CMakeLists.txt
A +4 -0 kmymoney/widgets/bankidentifieredit.h [License: UNKNOWN] *
M +4 -0 kmymoney/widgets/kmymoney.widgets
A +92 -0 kmymoney/widgets/onlinejobedit/germancredittransferedit.cpp
[License: UNKNOWN] *
A +43 -0 kmymoney/widgets/onlinejobedit/germancredittransferedit.h
[License: UNKNOWN] *
A +176 -0 kmymoney/widgets/onlinejobedit/germancredittransferedit.ui
A +4 -0 kmymoney/widgets/onlinejobedit/germancredittransferedit_p.h
[License: UNKNOWN] *
A +135 -0 kmymoney/widgets/onlinejobedit/sepacredittransferedit.cpp
[License: UNKNOWN] *
A +35 -0 kmymoney/widgets/onlinejobedit/sepacredittransferedit.h
[License: UNKNOWN] *
A +173 -0 kmymoney/widgets/onlinejobedit/sepacredittransferedit.ui
A +32 -0 kmymoney/widgets/onlinejobedit/sepacredittransferedit_p.h
[License: UNKNOWN] *
The files marked with a * at the end have a non valid license. Please read:
http://techbase.kde.org/Policies/Licensing_Policy and use the headers which are
listed at that page.
http://commits.kde.org/kmymoney/c836c3dec4509fb229cf2f71e31afe23512dac4e
--
You are receiving this mail because:
You are the assignee for the bug.
More information about the KMyMoney-devel
mailing list