support importing transaction data from alipay export file

This commit is contained in:
MaysWind
2024-09-22 19:27:20 +08:00
parent 732fa3b9de
commit 52b37c2a13
19 changed files with 826 additions and 79 deletions
+5
View File
@@ -20,6 +20,11 @@ const supportedImportFileTypes = [
type: 'feidee_mymoney_xls',
name: 'Feidee MyMoney (Web) Data Export File',
extensions: '.xls'
},
{
type: 'alipay_csv',
name: 'Alipay Data Export File',
extensions: '.csv'
}
];
+1 -4
View File
@@ -1112,10 +1112,6 @@
"fewer fields in data row than in header row": "There are fewer fields in the data row than in the header row",
"transaction time is invalid": "Transaction time is invalid",
"transaction time zone is invalid": "Transaction time zone is invalid",
"category name cannot be blank": "Category name cannot be blank",
"secondary category name cannot be blank": "secondary category name cannot be blank",
"account name cannot be blank": "Account name cannot be blank",
"destination account name cannot be blank": "Destination account name cannot be blank",
"transaction amount is invalid": "Transaction amount is invalid",
"geographic location is invalid": "Geographic location is invalid",
"fields in multiple table headers are different": "Fields in multiple table headers are different",
@@ -1505,6 +1501,7 @@
"ezbookkeeping Data Export File (TSV)": "ezbookkeeping Data Export File (TSV)",
"Feidee MyMoney (Web) Data Export File": "Feidee MyMoney (Web) Data Export File",
"Feidee MyMoney (App) Data Export File": "Feidee MyMoney (App) Data Export File",
"Alipay Data Export File": "Alipay Data Export File",
"Data File": "Data File",
"No data to import": "No data to import",
"Unable to parse import file": "Unable to parse import file",
+1 -4
View File
@@ -1112,10 +1112,6 @@
"fewer fields in data row than in header row": "数据行中的字段少于比标题行中的字段",
"transaction time is invalid": "交易时间无效",
"transaction time zone is invalid": "交易时区无效",
"category name cannot be blank": "分类名称不能为空",
"secondary category name cannot be blank": "二级分类名称不能为空",
"account name cannot be blank": "账户名不能为空",
"destination account name cannot be blank": "目标账户名不能为空",
"transaction amount is invalid": "交易金额无效",
"geographic location is invalid": "地理位置无效",
"fields in multiple table headers are different": "多个表头中的字段不同",
@@ -1505,6 +1501,7 @@
"ezbookkeeping Data Export File (TSV)": "ezbookkeeping 数据导出文件 (TSV)",
"Feidee MyMoney (Web) Data Export File": "金蝶随手记 (Web版) 数据导出文件",
"Feidee MyMoney (App) Data Export File": "金蝶随手记 (App) 数据导出文件",
"Alipay Data Export File": "支付宝数据导出文件",
"Data File": "数据文件",
"No data to import": "没有可以导入的数据",
"Unable to parse import file": "无法解析导入的文件",