From 45b9e64ec1275f789769292450b5cead5fc57b14 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Mon, 9 Oct 2023 10:03:41 -0500 Subject: [PATCH] chase: Update CSV mapping Chase added a new "Card" field to the beginning of each record in their CSV exports. --- xactfetch.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/xactfetch.py b/xactfetch.py index a4d3b7f..ea5cb42 100644 --- a/xactfetch.py +++ b/xactfetch.py @@ -470,6 +470,7 @@ class Chase: 'skip_form': False, 'add_import_tag': True, 'roles': [ + '_ignore', 'date_transaction', 'date_process', 'description', @@ -478,7 +479,16 @@ class Chase: 'amount', 'note', ], - 'do_mapping': [False, False, False, True, False, False, False], + 'do_mapping': [ + False, + False, + False, + False, + False, + False, + False, + False, + ], 'mapping': [], 'duplicate_detection_method': 'classic', 'ignore_duplicate_lines': True,