mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-04 12:29:47 +00:00
Fix issues where data-variable was not initialized properly.
This commit is contained in:
@@ -174,8 +174,8 @@ class BillTransformer extends TransformerAbstract
|
||||
'name' => $bill->name,
|
||||
'currency_id' => $bill->transaction_currency_id,
|
||||
'currency_code' => $bill->transactionCurrency->code,
|
||||
'amount_min' => round($bill->amount_min, 2),
|
||||
'amount_max' => round($bill->amount_max, 2),
|
||||
'amount_min' => round((float)$bill->amount_min, 2),
|
||||
'amount_max' => round((float)$bill->amount_max, 2),
|
||||
'date' => $bill->date->format('Y-m-d'),
|
||||
'repeat_freq' => $bill->repeat_freq,
|
||||
'skip' => (int)$bill->skip,
|
||||
|
||||
Reference in New Issue
Block a user