Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
weboob
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
135
Issues
135
List
Boards
Labels
Milestones
Merge Requests
41
Merge Requests
41
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
weboob
weboob
Commits
64bd687d
Commit
64bd687d
authored
Jan 06, 2019
by
Bruno Chabrier
Committed by
Romain Bignon
Jan 06, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MSMoney does not like when CHECKNUM is after MEMO
parent
1a8ced18
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
boomoney.py
weboob/applications/boomoney/boomoney.py
+5
-1
No files found.
weboob/applications/boomoney/boomoney.py
View file @
64bd687d
...
...
@@ -249,7 +249,11 @@ class HistoryThread(Thread):
else
:
field
[
f
]
=
value
if
f
not
in
fields
.
strip
()
.
split
(
" "
):
fields
=
fields
+
f
+
" "
# MSMoney does not like when CHECKNUM is after MEMO
if
f
==
"CHECKNUM"
:
fields
=
fields
.
replace
(
"MEMO"
,
"CHECKNUM MEMO"
)
else
:
fields
=
fields
+
f
+
" "
if
not
IGNORE
:
# dump transaction
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment