2016-07-02 13:40:23 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* AssetAccounts.php
|
|
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
|
|
*
|
2016-10-04 23:52:15 -05:00
|
|
|
* This software may be modified and distributed under the terms of the
|
|
|
|
* Creative Commons Attribution-ShareAlike 4.0 International License.
|
|
|
|
*
|
|
|
|
* See the LICENSE file for details.
|
2016-07-02 13:40:23 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
declare(strict_types = 1);
|
|
|
|
|
|
|
|
namespace FireflyIII\Import\Mapper;
|
|
|
|
|
|
|
|
use FireflyIII\Models\Account;
|
|
|
|
use FireflyIII\Models\AccountType;
|
2016-10-10 00:49:39 -05:00
|
|
|
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
|
2016-07-02 13:40:23 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class AssetAccounts
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Import\Mapper
|
|
|
|
*/
|
|
|
|
class AssetAccounts implements MapperInterface
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getMap(): array
|
|
|
|
{
|
2016-10-10 00:49:39 -05:00
|
|
|
/** @var AccountRepositoryInterface $accountRepository */
|
|
|
|
$accountRepository = app(AccountRepositoryInterface::class);
|
|
|
|
$set = $accountRepository->getAccountsByType([AccountType::DEFAULT, AccountType::ASSET]);
|
|
|
|
$list = [];
|
2016-07-02 13:40:23 -05:00
|
|
|
|
|
|
|
/** @var Account $account */
|
|
|
|
foreach ($set as $account) {
|
|
|
|
$name = $account->name;
|
|
|
|
$iban = $account->iban ?? '';
|
|
|
|
if (strlen($iban) > 0) {
|
|
|
|
$name .= ' (' . $account->iban . ')';
|
|
|
|
}
|
|
|
|
$list[$account->id] = $name;
|
|
|
|
}
|
|
|
|
|
|
|
|
asort($list);
|
|
|
|
|
|
|
|
$list = [0 => trans('csv.do_not_map')] + $list;
|
|
|
|
|
|
|
|
return $list;
|
|
|
|
|
|
|
|
}
|
2016-08-12 08:10:03 -05:00
|
|
|
}
|