|
|
@ -3,8 +3,8 @@ import { Injectable } from '@angular/core';
|
|
|
|
import { CreateAccountDto } from '@ghostfolio/api/app/account/create-account.dto';
|
|
|
|
import { CreateAccountDto } from '@ghostfolio/api/app/account/create-account.dto';
|
|
|
|
import { CreateOrderDto } from '@ghostfolio/api/app/order/create-order.dto';
|
|
|
|
import { CreateOrderDto } from '@ghostfolio/api/app/order/create-order.dto';
|
|
|
|
import { Activity } from '@ghostfolio/api/app/order/interfaces/activities.interface';
|
|
|
|
import { Activity } from '@ghostfolio/api/app/order/interfaces/activities.interface';
|
|
|
|
|
|
|
|
import { parseDate as parseDateHelper } from '@ghostfolio/common/helper';
|
|
|
|
import { Account, DataSource, Type } from '@prisma/client';
|
|
|
|
import { Account, DataSource, Type } from '@prisma/client';
|
|
|
|
import { isMatch, parse, parseISO } from 'date-fns';
|
|
|
|
|
|
|
|
import { isFinite } from 'lodash';
|
|
|
|
import { isFinite } from 'lodash';
|
|
|
|
import { parse as csvToJson } from 'papaparse';
|
|
|
|
import { parse as csvToJson } from 'papaparse';
|
|
|
|
import { EMPTY } from 'rxjs';
|
|
|
|
import { EMPTY } from 'rxjs';
|
|
|
@ -219,32 +219,13 @@ export class ImportActivitiesService {
|
|
|
|
item: any;
|
|
|
|
item: any;
|
|
|
|
}) {
|
|
|
|
}) {
|
|
|
|
item = this.lowercaseKeys(item);
|
|
|
|
item = this.lowercaseKeys(item);
|
|
|
|
let date: string;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (const key of ImportActivitiesService.DATE_KEYS) {
|
|
|
|
for (const key of ImportActivitiesService.DATE_KEYS) {
|
|
|
|
if (item[key]) {
|
|
|
|
if (item[key]) {
|
|
|
|
if (isMatch(item[key], 'dd-MM-yyyy') && item[key].length === 10) {
|
|
|
|
|
|
|
|
// Check length to only match yyyy (and not yy)
|
|
|
|
|
|
|
|
date = parse(item[key], 'dd-MM-yyyy', new Date()).toISOString();
|
|
|
|
|
|
|
|
} else if (
|
|
|
|
|
|
|
|
isMatch(item[key], 'dd/MM/yyyy') &&
|
|
|
|
|
|
|
|
item[key].length === 10
|
|
|
|
|
|
|
|
) {
|
|
|
|
|
|
|
|
// Check length to only match yyyy (and not yy)
|
|
|
|
|
|
|
|
date = parse(item[key], 'dd/MM/yyyy', new Date()).toISOString();
|
|
|
|
|
|
|
|
} else if (isMatch(item[key], 'yyyyMMdd') && item[key].length === 8) {
|
|
|
|
|
|
|
|
// Check length to only match yyyy (and not yy)
|
|
|
|
|
|
|
|
date = parse(item[key], 'yyyyMMdd', new Date()).toISOString();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
date = parseISO(item[key]).toISOString();
|
|
|
|
return parseDateHelper(item[key].toString()).toISOString();
|
|
|
|
} catch {}
|
|
|
|
} catch {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (date) {
|
|
|
|
|
|
|
|
return date;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
throw {
|
|
|
|
throw {
|
|
|
|