mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			76 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| declare(strict_types=1);
 | |
| /*
 | |
|  * AvailableBudgetRepository.php
 | |
|  * Copyright (c) 2023 james@firefly-iii.org
 | |
|  *
 | |
|  * This file is part of Firefly III (https://github.com/firefly-iii).
 | |
|  *
 | |
|  * This program is free software: you can redistribute it and/or modify
 | |
|  * it under the terms of the GNU Affero General Public License as
 | |
|  * published by the Free Software Foundation, either version 3 of the
 | |
|  * License, or (at your option) any later version.
 | |
|  *
 | |
|  * This program is distributed in the hope that it will be useful,
 | |
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
|  * GNU Affero General Public License for more details.
 | |
|  *
 | |
|  * You should have received a copy of the GNU Affero General Public License
 | |
|  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 | |
|  */
 | |
| 
 | |
| namespace FireflyIII\Repositories\Administration\Budget;
 | |
| 
 | |
| use Carbon\Carbon;
 | |
| use FireflyIII\Models\AvailableBudget;
 | |
| use FireflyIII\Support\Http\Api\ExchangeRateConverter;
 | |
| use FireflyIII\Support\Repositories\Administration\AdministrationTrait;
 | |
| 
 | |
| /**
 | |
|  * Class AvailableBudgetRepository
 | |
|  */
 | |
| class AvailableBudgetRepository implements AvailableBudgetRepositoryInterface
 | |
| {
 | |
|     use AdministrationTrait;
 | |
| 
 | |
|     /**
 | |
|      * @param Carbon $start
 | |
|      * @param Carbon $end
 | |
|      *
 | |
|      * @return array
 | |
|      */
 | |
|     public function getAvailableBudgetWithCurrency(Carbon $start, Carbon $end): array
 | |
|     {
 | |
|         $return           = [];
 | |
|         $converter        = new ExchangeRateConverter();
 | |
|         $default          = app('amount')->getDefaultCurrency();
 | |
|         $availableBudgets = $this->userGroup->availableBudgets()
 | |
|                                             ->where('start_date', $start->format('Y-m-d'))
 | |
|                                             ->where('end_date', $end->format('Y-m-d'))->get();
 | |
|         /** @var AvailableBudget $availableBudget */
 | |
|         foreach ($availableBudgets as $availableBudget) {
 | |
|             $currencyId                           = (int)$availableBudget->transaction_currency_id;
 | |
|             $return[$currencyId]                  = $return[$currencyId] ?? [
 | |
|                 'currency_id'             => $currencyId,
 | |
|                 'currency_code'           => $availableBudget->transactionCurrency->code,
 | |
|                 'currency_symbol'         => $availableBudget->transactionCurrency->symbol,
 | |
|                 'currency_name'           => $availableBudget->transactionCurrency->name,
 | |
|                 'currency_decimal_places' => (int)$availableBudget->transactionCurrency->decimal_places,
 | |
|                 'native_id'               => $default->id,
 | |
|                 'native_code'             => $default->code,
 | |
|                 'native_symbol'           => $default->symbol,
 | |
|                 'native_name'             => $default->name,
 | |
|                 'native_decimal_places'   => (int)$default->decimal_places,
 | |
|                 'amount'                  => '0',
 | |
|                 'native_amount'           => '0',
 | |
|             ];
 | |
|             $nativeAmount                         = $converter->convert($availableBudget->transactionCurrency, $default, $availableBudget->start_date, $availableBudget->amount);
 | |
|             $return[$currencyId]['amount']        = bcadd($return[$currencyId]['amount'], $availableBudget->amount);
 | |
|             $return[$currencyId]['native_amount'] = bcadd($return[$currencyId]['native_amount'], $nativeAmount);
 | |
|         }
 | |
|         return $return;
 | |
|     }
 | |
| }
 |