mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-19 01:04:25 +08:00
import transactions from custom xlsx/xls file
This commit is contained in:
+1
-1
@@ -78,7 +78,7 @@ export const SPECIFIED_API_NOT_FOUND_ERRORS: Record<string, SpecifiedApiError> =
|
||||
'/api/v1/users/2fa/recovery/regenerate.json': {
|
||||
message: 'Two-factor authentication is disabled'
|
||||
},
|
||||
'/api/v1/transactions/parse_dsv_file.json': {
|
||||
'/api/v1/transactions/parse_custom_file.json': {
|
||||
message: 'Transaction importing is disabled'
|
||||
},
|
||||
'/api/v1/transactions/parse_import.json': {
|
||||
|
||||
+22
-1
@@ -180,7 +180,28 @@ export const SUPPORTED_IMPORT_FILE_CATEGORY_AND_TYPES: ImportFileCategoryAndType
|
||||
supportMultiLanguages: true,
|
||||
anchor: 'how-to-import-delimiter-separated-values-dsv-file-or-data'
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
type: 'excel',
|
||||
name: 'Excel Workbook File',
|
||||
extensions: '.xlsx,.xls',
|
||||
subTypes: [
|
||||
{
|
||||
type: 'custom_xlsx',
|
||||
name: 'Excel Workbook File (.xlsx)',
|
||||
extensions: '.xlsx',
|
||||
},
|
||||
{
|
||||
type: 'custom_xls',
|
||||
name: 'Excel 97-2003 Workbook File (.xls)',
|
||||
extensions: '.xls',
|
||||
}
|
||||
],
|
||||
document: {
|
||||
supportMultiLanguages: true,
|
||||
anchor: 'how-to-import-delimiter-separated-values-dsv-file-or-data'
|
||||
}
|
||||
},
|
||||
]
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user