mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-07 06:31:22 +00:00
Can sort and group bills.
This commit is contained in:
@@ -89,12 +89,13 @@ class BillTransformer extends AbstractTransformer
|
||||
'currency_symbol' => $currency->symbol,
|
||||
'currency_decimal_places' => $currency->decimal_places,
|
||||
'name' => $bill->name,
|
||||
'amount_min' => round((float)$bill->amount_min, $currency->decimal_places),
|
||||
'amount_max' => round((float)$bill->amount_max, $currency->decimal_places),
|
||||
'amount_min' => round((float) $bill->amount_min, $currency->decimal_places),
|
||||
'amount_max' => round((float) $bill->amount_max, $currency->decimal_places),
|
||||
'date' => $bill->date->format('Y-m-d'),
|
||||
'repeat_freq' => $bill->repeat_freq,
|
||||
'skip' => (int)$bill->skip,
|
||||
'skip' => (int) $bill->skip,
|
||||
'active' => $bill->active,
|
||||
'order' => (int) $bill->order,
|
||||
'notes' => $notes,
|
||||
'next_expected_match' => $paidData['next_expected_match'],
|
||||
'pay_dates' => $payDates,
|
||||
|
||||
Reference in New Issue
Block a user