aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-08-24 02:59:24 -0400
committerJesse Luehrs <doy@tozt.net>2019-08-24 02:59:24 -0400
commit867ccb676ec2f575643f11f60a4b52d13ef248ed (patch)
treee7e867084c9d27258096e06b967c310dec16a9e4 /src
parent6008f59b54be406324694abccc205b9e2d5422d3 (diff)
downloadynab-export-867ccb676ec2f575643f11f60a4b52d13ef248ed.tar.gz
ynab-export-867ccb676ec2f575643f11f60a4b52d13ef248ed.zip
add month data
Diffstat (limited to 'src')
-rw-r--r--src/main.rs36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index 45e2a72..85623cb 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -219,4 +219,40 @@ fn main() {
file.write_all(b"\n").unwrap();
}
file.sync_all().unwrap();
+
+ let mut file = std::fs::File::create("months.tsv").unwrap();
+ let mut file2 = std::fs::File::create("categories_by_month.tsv").unwrap();
+ for month in budget.months.unwrap() {
+ if month.deleted {
+ continue;
+ }
+ file.write_all([month.month.as_ref()].join("\t").as_bytes())
+ .unwrap();
+ file.write_all(b"\n").unwrap();
+
+ for category in month.categories {
+ if category.deleted {
+ continue;
+ }
+ file2
+ .write_all(
+ [
+ month.month.as_ref(),
+ category.id.as_ref(),
+ category.category_group_id.as_ref(),
+ category.name.as_ref(),
+ if category.hidden { "1" } else { "0" },
+ &format!("{}", category.budgeted),
+ &format!("{}", category.activity),
+ &format!("{}", category.balance),
+ ]
+ .join("\t")
+ .as_bytes(),
+ )
+ .unwrap();
+ file2.write_all(b"\n").unwrap();
+ }
+ }
+ file.sync_all().unwrap();
+ file2.sync_all().unwrap();
}