Update meta files for new release.

This commit is contained in:
James Cole
2020-04-14 20:56:30 +02:00
parent 54933fda2e
commit 015242a666
25 changed files with 183 additions and 221 deletions

View File

@@ -379,13 +379,6 @@ trait JournalServiceTrait
$metaFactory->create(['account_id' => $account->id, 'name' => 'account_number', 'data' => $data['bic']]);
}
// // store currency preference:
// if (isset($data['currency_id']) && null !== $data['currency_id']) {
// Log::debug(sprintf('Stored currency_id for account %d with value %d', $account->id, $data['currency_id']));
// /** @var AccountMetaFactory $metaFactory */
// $metaFactory = app(AccountMetaFactory::class);
// $metaFactory->create(['account_id' => $account->id, 'name' => 'currency_id', 'data' => $data['currency_id']]);
// }
}
return $account;