We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
One of my institutions uses BUYOTHER and SELLOTHER types for most of the transactions in its OFX files. See example.zip for a small example.
beancount_import doesn't recognize those and just ignores them. It should treat them like other stock transaction types.
If I have time, I'll see about putting together a pull request, but I was able to get it to work by editing ofx.py in roughly the following ways:
ofx.py
, 'BUYOTHER', 'SELLOTHER'
STOCK_BUY_SELL_TYPES
ParsedOfxStatement
, 'SELLOTHER'
SELL_TYPES
|buyother|sellother
ParsedOfxStatement.__init__()
The text was updated successfully, but these errors were encountered:
Would be great to get a PR from you on this. We can refine from there.
Sorry, something went wrong.
No branches or pull requests
One of my institutions uses BUYOTHER and SELLOTHER types for most of the transactions in its OFX files. See example.zip for a small example.
beancount_import doesn't recognize those and just ignores them. It should treat them like other stock transaction types.
If I have time, I'll see about putting together a pull request, but I was able to get it to work by editing
ofx.py
in roughly the following ways:, 'BUYOTHER', 'SELLOTHER'
toSTOCK_BUY_SELL_TYPES
just before the definition ofParsedOfxStatement
, 'SELLOTHER'
toSELL_TYPES
on the next line|buyother|sellother
to the transaction type regex near the beginning ofParsedOfxStatement.__init__()
The text was updated successfully, but these errors were encountered: