We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee28256 commit f7836e7Copy full SHA for f7836e7
tap_quickbooks/quickbooks/reportstreams/GeneralLedgerReport.py
@@ -222,11 +222,11 @@ def sync(self, catalog_entry):
222
# Define identity columns that will be included in every batch
223
# These are used to match rows across batches
224
identity_cols = ["tx_date", "txn_type"]
225
- # Add doc_num and account_num if they exist in cols
+ # Add doc_num and account_name if they exist in cols
226
if "doc_num" in cols:
227
identity_cols.append("doc_num")
228
- if "account_num" in cols:
229
- identity_cols.append("account_num")
+ if "account_name" in cols:
+ identity_cols.append("account_name")
230
# Add amount field for better uniqueness
231
if "subt_nat_amount" in cols:
232
identity_cols.append("subt_nat_amount")
0 commit comments