add subtypes to imported file types

This commit is contained in:
MaysWind
2024-10-20 10:05:44 +08:00
parent 45faa269a4
commit a23a194660
5 changed files with 66 additions and 20 deletions
+17 -13
View File
@@ -29,19 +29,23 @@ const supportedImportFileTypes = [
}
},
{
type: 'qif_ymd',
name: 'Quicken Interchange Format (QIF) File (Year-month-day format)',
extensions: '.qif'
},
{
type: 'qif_mdy',
name: 'Quicken Interchange Format (QIF) File (Month-day-year format)',
extensions: '.qif'
},
{
type: 'qif_dmy',
name: 'Quicken Interchange Format (QIF) File (Day-month-year format)',
extensions: '.qif'
type: 'qif',
name: 'Quicken Interchange Format (QIF) File',
extensions: '.qif',
subTypes: [
{
type: 'qif_ymd',
name: 'Year-month-day format',
},
{
type: 'qif_mdy',
name: 'Month-day-year format',
},
{
type: 'qif_dmy',
name: 'Day-month-year format',
}
]
},
{
type: 'feidee_mymoney_csv',