Skip to content
New issue

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

Feature Request - Add Transaction Parsing for "DTAVAIL" Field in <STMTTRN> #176

Open
paulusbd opened this issue Apr 20, 2024 · 0 comments
Open

Comments

@paulusbd
Copy link

Hello Jerry,

I really like this tool and am using it in a ofx2csv script.

I have been running into a case where I'm wanting both the DTPOSTED and DTAVAIL fields when I'm justifying the date of the transaction verses when the bank posted the transaction. It is a special case.

It looks like I could add and modify the fields in transaction for the dates to be:

class Transaction(object):
    def __init__(self):
        self.payee = ''
        self.type = ''
        self.date = ''
        self.avail_date = '' #new
        self.user_date = None
        self.amount = None
        self.id = ''
        self.memo = ''
        self.sic = None
        self.mcc = ''
        self.checknum = ''

And make the corresponding changes in the rest of the code and parser.
I'm fairly new to coding, but find I'm now driven by necessity and desire to not do this by hand.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant