mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-20 11:48:27 -06:00
Small chart fixes
This commit is contained in:
parent
bfc5c5d154
commit
5f9f621fa6
@ -27,6 +27,7 @@ namespace FireflyIII\Api\V2\Controllers\Chart;
|
|||||||
use Carbon\Carbon;
|
use Carbon\Carbon;
|
||||||
use FireflyIII\Api\V2\Controllers\Controller;
|
use FireflyIII\Api\V2\Controllers\Controller;
|
||||||
use FireflyIII\Api\V2\Request\Generic\DateRequest;
|
use FireflyIII\Api\V2\Request\Generic\DateRequest;
|
||||||
|
use FireflyIII\Exceptions\FireflyException;
|
||||||
use FireflyIII\Models\Account;
|
use FireflyIII\Models\Account;
|
||||||
use FireflyIII\Models\AccountType;
|
use FireflyIII\Models\AccountType;
|
||||||
use FireflyIII\Models\TransactionCurrency;
|
use FireflyIII\Models\TransactionCurrency;
|
||||||
@ -67,11 +68,15 @@ class AccountController extends Controller
|
|||||||
*
|
*
|
||||||
* The native currency is the preferred currency on the page /currencies.
|
* The native currency is the preferred currency on the page /currencies.
|
||||||
*
|
*
|
||||||
|
* If a transaction has foreign currency = native currency, the foreign amount will be used, no conversion
|
||||||
|
* will take place.
|
||||||
|
*
|
||||||
* @param DateRequest $request
|
* @param DateRequest $request
|
||||||
*
|
*
|
||||||
* @return JsonResponse
|
* @return JsonResponse
|
||||||
* @throws ContainerExceptionInterface
|
* @throws ContainerExceptionInterface
|
||||||
* @throws NotFoundExceptionInterface
|
* @throws NotFoundExceptionInterface
|
||||||
|
* @throws FireflyException
|
||||||
*/
|
*/
|
||||||
public function dashboard(DateRequest $request): JsonResponse
|
public function dashboard(DateRequest $request): JsonResponse
|
||||||
{
|
{
|
||||||
|
@ -24,6 +24,7 @@ namespace FireflyIII\Api\V2\Controllers\Chart;
|
|||||||
use Carbon\Carbon;
|
use Carbon\Carbon;
|
||||||
use FireflyIII\Api\V2\Controllers\Controller;
|
use FireflyIII\Api\V2\Controllers\Controller;
|
||||||
use FireflyIII\Api\V2\Request\Chart\BalanceChartRequest;
|
use FireflyIII\Api\V2\Request\Chart\BalanceChartRequest;
|
||||||
|
use FireflyIII\Exceptions\FireflyException;
|
||||||
use FireflyIII\Helpers\Collector\GroupCollectorInterface;
|
use FireflyIII\Helpers\Collector\GroupCollectorInterface;
|
||||||
use FireflyIII\Models\TransactionCurrency;
|
use FireflyIII\Models\TransactionCurrency;
|
||||||
use FireflyIII\Models\TransactionType;
|
use FireflyIII\Models\TransactionType;
|
||||||
@ -63,11 +64,13 @@ class BalanceController extends Controller
|
|||||||
* Currency is up to the account/transactions in question, but conversion to the default
|
* Currency is up to the account/transactions in question, but conversion to the default
|
||||||
* currency is possible.
|
* currency is possible.
|
||||||
*
|
*
|
||||||
*
|
* If the transaction being processed is already in native currency OR if the
|
||||||
|
* foreign amount is in the native currency, the amount will not be converted.
|
||||||
*
|
*
|
||||||
* @param BalanceChartRequest $request
|
* @param BalanceChartRequest $request
|
||||||
*
|
*
|
||||||
* @return JsonResponse
|
* @return JsonResponse
|
||||||
|
* @throws FireflyException
|
||||||
*/
|
*/
|
||||||
public function balance(BalanceChartRequest $request): JsonResponse
|
public function balance(BalanceChartRequest $request): JsonResponse
|
||||||
{
|
{
|
||||||
@ -175,6 +178,12 @@ class BalanceController extends Controller
|
|||||||
$rate = $converter->getCurrencyRate($currency, $default, $journal['date']);
|
$rate = $converter->getCurrencyRate($currency, $default, $journal['date']);
|
||||||
$amountConverted = bcmul($amount, $rate);
|
$amountConverted = bcmul($amount, $rate);
|
||||||
|
|
||||||
|
// perhaps transaction already has the foreign amount in the native currency.
|
||||||
|
if ((int)$journal['foreign_currency_id'] === (int)$default->id) {
|
||||||
|
$amountConverted = $journal['foreign_amount'] ?? '0';
|
||||||
|
$amountConverted = 'earned' === $key ? app('steam')->positive($amountConverted) : app('steam')->negative($amountConverted);
|
||||||
|
}
|
||||||
|
|
||||||
// add normal entry
|
// add normal entry
|
||||||
$data[$currencyId][$period][$key] = bcadd($data[$currencyId][$period][$key], $amount);
|
$data[$currencyId][$period][$key] = bcadd($data[$currencyId][$period][$key], $amount);
|
||||||
|
|
||||||
@ -188,7 +197,7 @@ class BalanceController extends Controller
|
|||||||
foreach ($data as $currency) {
|
foreach ($data as $currency) {
|
||||||
// income and expense array prepped:
|
// income and expense array prepped:
|
||||||
$income = [
|
$income = [
|
||||||
'label' => sprintf('earned-%s', $currency['currency_code']),
|
'label' => 'earned',
|
||||||
'currency_id' => $currency['currency_id'],
|
'currency_id' => $currency['currency_id'],
|
||||||
'currency_symbol' => $currency['currency_symbol'],
|
'currency_symbol' => $currency['currency_symbol'],
|
||||||
'currency_code' => $currency['currency_code'],
|
'currency_code' => $currency['currency_code'],
|
||||||
@ -204,7 +213,7 @@ class BalanceController extends Controller
|
|||||||
'native_entries' => [],
|
'native_entries' => [],
|
||||||
];
|
];
|
||||||
$expense = [
|
$expense = [
|
||||||
'label' => sprintf('spent-%s', $currency['currency_code']),
|
'label' => 'spent',
|
||||||
'currency_id' => $currency['currency_id'],
|
'currency_id' => $currency['currency_id'],
|
||||||
'currency_symbol' => $currency['currency_symbol'],
|
'currency_symbol' => $currency['currency_symbol'],
|
||||||
'currency_code' => $currency['currency_code'],
|
'currency_code' => $currency['currency_code'],
|
||||||
@ -230,8 +239,8 @@ class BalanceController extends Controller
|
|||||||
$expense['entries'][$label] = app('steam')->bcround(($currency[$key]['spent'] ?? '0'), $currency['currency_decimal_places']);
|
$expense['entries'][$label] = app('steam')->bcround(($currency[$key]['spent'] ?? '0'), $currency['currency_decimal_places']);
|
||||||
|
|
||||||
// converted entries
|
// converted entries
|
||||||
$income['converted_entries'][$label] = app('steam')->bcround(($currency[$key]['converted_earned'] ?? '0'), $currency['native_decimal_places']);
|
$income['native_entries'][$label] = app('steam')->bcround(($currency[$key]['native_earned'] ?? '0'), $currency['native_decimal_places']);
|
||||||
$expense['converted_entries'][$label] = app('steam')->bcround(($currency[$key]['converted_spent'] ?? '0'), $currency['native_decimal_places']);
|
$expense['native_entries'][$label] = app('steam')->bcround(($currency[$key]['native_spent'] ?? '0'), $currency['native_decimal_places']);
|
||||||
|
|
||||||
// next loop
|
// next loop
|
||||||
$currentStart = app('navigation')->addPeriod($currentStart, $preferredRange, 0);
|
$currentStart = app('navigation')->addPeriod($currentStart, $preferredRange, 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user