Feature/rename orders to activities in import and export (#786)
* Rename orders to activities * Update changelogpull/787/head
parent
e986310302
commit
1214127ec0
@ -1,5 +1,5 @@
|
||||
export interface ImportTransactionDialogParams {
|
||||
activities: any[];
|
||||
deviceType: string;
|
||||
messages: string[];
|
||||
orders: any[];
|
||||
}
|
||||
|
@ -0,0 +1,39 @@
|
||||
{
|
||||
"meta": {
|
||||
"date": "2022-04-01T00:00:00.000Z",
|
||||
"version": "dev"
|
||||
},
|
||||
"activities": [
|
||||
{
|
||||
"accountId": null,
|
||||
"date": "2021-12-31T23:00:00.000Z",
|
||||
"fee": 0,
|
||||
"quantity": 1,
|
||||
"type": "ITEM",
|
||||
"unitPrice": 500000,
|
||||
"currency": "USD",
|
||||
"dataSource": "MANUAL",
|
||||
"symbol": "Penthouse Apartment"
|
||||
},
|
||||
{
|
||||
"date": "2021-11-16T23:00:00.000Z",
|
||||
"fee": 0,
|
||||
"quantity": 5,
|
||||
"type": "DIVIDEND",
|
||||
"unitPrice": 0.62,
|
||||
"currency": "USD",
|
||||
"dataSource": "YAHOO",
|
||||
"symbol": "MSFT"
|
||||
},
|
||||
{
|
||||
"date": "2021-09-15T22:00:00.000Z",
|
||||
"fee": 19,
|
||||
"quantity": 5,
|
||||
"type": "BUY",
|
||||
"unitPrice": 298.58,
|
||||
"currency": "USD",
|
||||
"dataSource": "YAHOO",
|
||||
"symbol": "MSFT"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in new issue