Files
firefly-iii/app/Import/Mapper/OpposingAccounts.php

61 lines
1.5 KiB
PHP
Raw Normal View History

2016-07-02 20:40:23 +02:00
<?php
/**
* OpposingAccounts.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* 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 20:40:23 +02:00
*/
declare(strict_types=1);
2016-07-02 20:40:23 +02:00
namespace FireflyIII\Import\Mapper;
use FireflyIII\Models\Account;
use FireflyIII\Models\AccountType;
2016-10-10 07:49:39 +02:00
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
2016-07-02 20:40:23 +02:00
/**
* Class OpposingAccounts
*
* @package FireflyIII\Import\Mapper
*/
class OpposingAccounts implements MapperInterface
{
/**
* @return array
*/
public function getMap(): array
{
2016-10-10 07:49:39 +02:00
/** @var AccountRepositoryInterface $accountRepository */
$accountRepository = app(AccountRepositoryInterface::class);
$set = $accountRepository->getAccountsByType(
2016-07-02 20:40:23 +02:00
[
AccountType::DEFAULT, AccountType::ASSET,
AccountType::EXPENSE, AccountType::BENEFICIARY,
2016-08-26 08:21:31 +02:00
AccountType::REVENUE,
]
);
2016-10-10 07:49:39 +02:00
$list = [];
2016-07-02 20:40:23 +02: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);
2017-06-24 06:57:24 +02:00
$list = [0 => trans('csv.map_do_not_map')] + $list;
2016-07-02 20:40:23 +02:00
return $list;
}
2016-08-12 15:10:03 +02:00
}