|
|
@ -109,6 +109,10 @@ export class TransactionsPageComponent implements OnInit { |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
public onCloneTransaction(aTransaction: OrderModel) { |
|
|
|
this.openCreateTransactionDialog(aTransaction); |
|
|
|
} |
|
|
|
|
|
|
|
public onDeleteTransaction(aId: string) { |
|
|
|
this.dataService.deleteOrder(aId).subscribe({ |
|
|
|
next: () => { |
|
|
@ -123,10 +127,6 @@ export class TransactionsPageComponent implements OnInit { |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
public onDuplicateTransaction(aTransaction: OrderModel) { |
|
|
|
this.openCreateTransactionDialog(aTransaction); |
|
|
|
} |
|
|
|
|
|
|
|
public openUpdateTransactionDialog({ |
|
|
|
accountId, |
|
|
|
currency, |
|
|
@ -184,14 +184,14 @@ export class TransactionsPageComponent implements OnInit { |
|
|
|
data: { |
|
|
|
accounts: this.user?.accounts, |
|
|
|
transaction: { |
|
|
|
accountId: this.user?.accounts.find((account) => { |
|
|
|
accountId: aTransaction?.accountId ?? this.user?.accounts.find((account) => { |
|
|
|
return account.isDefault; |
|
|
|
})?.id, |
|
|
|
currency: aTransaction?.currency || null, |
|
|
|
currency: aTransaction?.currency ?? null, |
|
|
|
date: new Date(), |
|
|
|
fee: 0, |
|
|
|
quantity: null, |
|
|
|
symbol: aTransaction?.symbol || null, |
|
|
|
symbol: aTransaction?.symbol ?? null, |
|
|
|
type: 'BUY', |
|
|
|
unitPrice: null |
|
|
|
} |
|
|
|