Added accounts to allow for assinging income account to items, and selecting default income account. Also added item type selection

This commit is contained in:
2026-03-16 22:59:54 -04:00
parent 7088550184
commit f81fe0ef87
13 changed files with 283 additions and 70 deletions

View File

@@ -16,13 +16,13 @@ module RedmineQboLineItems
# Called by WebhookProcessJob
def qbo_additional_entities(context={})
log "Added QBO Item to allowed webook entities"
return "Item"
return ["Item", "Account"]
end
# Called by the QboSyncDispatcher
def qbo_full_sync (context={})
log "Adding Item to QBO sync dispatcher"
return Item
return [Item, Account]
end
private