mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-18 16:54:25 +08:00
fix the bug that amount format could not be automatically detected when importing dsv file
This commit is contained in:
@@ -228,7 +228,7 @@ export class ImportTransactionDataMapping {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public parseFileAutoDetectedAmountFormat(fileData: string[][] | undefined): string | undefined {
|
public parseFileAutoDetectedAmountFormat(fileData: string[][] | undefined): string | undefined {
|
||||||
if (!fileData || !fileData.length || !this.isColumnMappingSet(ImportTransactionColumnType.TransactionTimezone)) {
|
if (!fileData || !fileData.length || !this.isColumnMappingSet(ImportTransactionColumnType.Amount)) {
|
||||||
return undefined;
|
return undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user