Skip to content

Commit

Permalink
Fix for Exports: add Purchase Invoice (#158)
Browse files Browse the repository at this point in the history
* Fix for Exports: add Purchase Invoice

* PURCHASE_INVOICES

* PURCHASE_INVOICE
  • Loading branch information
anishfyle committed Jul 31, 2024
1 parent 0d9598e commit 96f3df8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/workspaces/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ def run_import_export(workspace_id: int, export_mode = None):
is_expenses_exported = False

export_map = {
'JOURNAL_ENTRY': ExportJournalEntry()
'JOURNAL_ENTRY': ExportJournalEntry(),
'PURCHASE_INVOICE': ExportPurchaseInvoice()
}

# For Reimbursable Expenses
Expand Down

0 comments on commit 96f3df8

Please sign in to comment.