mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Attempted fix for #6475
This commit is contained in:
@@ -44,14 +44,14 @@ class BillUpdateRequest extends FormRequest
|
||||
return [
|
||||
'name' => $this->convertString('name'),
|
||||
'amount_min' => $this->convertString('amount_min'),
|
||||
'currency_id' => $this->integer('transaction_currency_id'),
|
||||
'currency_id' => $this->convertInteger('transaction_currency_id'),
|
||||
'currency_code' => '',
|
||||
'amount_max' => $this->convertString('amount_max'),
|
||||
'date' => $this->getCarbonDate('date'),
|
||||
'end_date' => $this->getCarbonDate('bill_end_date'),
|
||||
'extension_date' => $this->getCarbonDate('extension_date'),
|
||||
'repeat_freq' => $this->convertString('repeat_freq'),
|
||||
'skip' => $this->integer('skip'),
|
||||
'skip' => $this->convertInteger('skip'),
|
||||
'notes' => $this->stringWithNewlines('notes'),
|
||||
'active' => $this->boolean('active'),
|
||||
'object_group_title' => $this->convertString('object_group'),
|
||||
|
Reference in New Issue
Block a user