This commit is contained in:
James Cole
2017-08-12 06:44:00 +02:00
parent 716af4ed93
commit 2e6d1f3642

View File

@@ -45,11 +45,11 @@ final class Entry
public $transaction_type; public $transaction_type;
public $source_account_id; public $asset_account_id;
public $source_account_name; public $asset_account_name;
public $destination_account_id; public $opposing_account_id;
public $destination_account_name; public $opposing_account_name;
public $budget_id; public $budget_id;
public $budget_name; public $budget_name;
@@ -78,10 +78,10 @@ final class Entry
$entry->date = $object->date; $entry->date = $object->date;
$entry->transaction_type = $object->transaction_type; $entry->transaction_type = $object->transaction_type;
$entry->currency_code = $object->transaction_currency_code; $entry->currency_code = $object->transaction_currency_code;
$entry->source_account_id = $object->account_id; $entry->asset_account_id = $object->account_id;
$entry->source_account_name = Steam::decrypt(intval($object->account_name_encrypted), $object->account_name); $entry->asset_account_name = Steam::decrypt(intval($object->account_name_encrypted), $object->account_name);
$entry->destination_account_id = $object->opposing_account_id; $entry->opposing_account_id = $object->opposing_account_id;
$entry->destination_account_name = Steam::decrypt(intval($object->opposing_account_encrypted), $object->opposing_account_name); $entry->opposing_account_name = Steam::decrypt(intval($object->opposing_account_encrypted), $object->opposing_account_name);
$entry->category_id = $object->category_id ?? ''; $entry->category_id = $object->category_id ?? '';
$entry->category_name = $object->category_name ?? ''; $entry->category_name = $object->category_name ?? '';
$entry->budget_id = $object->budget_id ?? ''; $entry->budget_id = $object->budget_id ?? '';