Support importing tasks as CSV

This commit is contained in:
Hillel Coren 2024-01-16 15:30:09 +02:00
parent 1abfc65ceb
commit cd118fa110
1 changed files with 1 additions and 1 deletions

View File

@ -145,11 +145,11 @@ class ImportType extends EnumClass {
case ImportType.csv:
return {
EntityType.client.apiValue: 'clients',
EntityType.product.apiValue: 'products',
EntityType.invoice.apiValue: 'invoices',
EntityType.recurringInvoice.apiValue: 'recurring_invoices',
EntityType.payment.apiValue: 'payments',
EntityType.task.apiValue: 'tasks',
EntityType.product.apiValue: 'products',
EntityType.vendor.apiValue: 'vendors',
EntityType.expense.apiValue: 'expenses',
EntityType.transaction.apiValue: 'transactions',