-
Notifications
You must be signed in to change notification settings - Fork 4
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
use calendar for transaction review? #2
Comments
I have an initial prototype. Run this query in dbeaver, export as csv, import into google calendar. I don't see yes/no buttons on the resulting events, though. So maybe I need to use google apps script. select date(uncat.post_date) `Start Date`, uncat.description `Subject`
, concat(uncat.amount, ': ', trim(uncat.memo), char(13), char(10),
trim(acct.memo), char(13), char(10), uncat.tx_guid) `Description` -- + uncat.memo + acct.memo memo2 + uncat.tx_guid)
, acct.path `Location`
from (select * from split_detail where path = 'Imbalance-USD') uncat
join split_detail acct on acct.tx_guid = uncat.tx_guid
where acct.path != 'Imbalance-USD'
order by uncat.post_date; |
progress...
@w11k/diff-patch-sync - npm: https://www.npmjs.com/package/@w11k/diff-patch-sync |
more progress...
see also migrating finquick to github dckc/madmode-blog#101 |
it's pretty much working. todo
|
https://github.com/dckc/finquick/tree/brcal 120f493 darn... some config stuff doesn't belong... |
put Imbalance txs on a calendar; let M accept invitation to signal "my budget" or reply with info about why not. Have a bot send the appointments and hence get the replies. Harvest the replies in bulk and sync with gnucash.
The text was updated successfully, but these errors were encountered: