Skip to content

Commit 6c495c8

Browse files
committed
Fix space stripping
1 parent 4de7e6a commit 6c495c8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tap_quickbooks/quickbooks/reportstreams/BaseReport.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def _get_column_metadata(self, resp, schema=None):
4242
# append col to columns
4343
col_title = column.get("ColTitle")
4444
if col_title in schema.values():
45-
columns.append(col_title)
45+
columns.append(col_title.replace(" ", ""))
4646
else:
4747
columns.append(schema.get(col_type))
4848
else:

tap_quickbooks/quickbooks/reportstreams/english_schemas/GeneralLedgerReportFields.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"rate": "Rate",
1717
"account_name": "Account",
1818
"split_acc": "Split",
19-
"inv_date": "Invoice Date",
19+
"inv_date": "InvoiceDate",
2020
"is_ar_paid": "A/RPaid",
2121
"is_ap_paid": "A/PPaid",
2222
"is_cleared": "Clr",

0 commit comments

Comments
 (0)