mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-19 08:00:19 +00:00
Test a fix for #1620
This commit is contained in:
@@ -48,15 +48,16 @@ class BillFormRequest extends Request
|
|||||||
public function getBillData(): array
|
public function getBillData(): array
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'name' => $this->string('name'),
|
'name' => $this->string('name'),
|
||||||
'amount_min' => $this->string('amount_min'),
|
'amount_min' => $this->string('amount_min'),
|
||||||
'currency_id' => $this->integer('transaction_currency_id'),
|
'currency_id' => $this->integer('transaction_currency_id'),
|
||||||
'amount_max' => $this->string('amount_max'),
|
'currency_code' => '',
|
||||||
'date' => $this->date('date'),
|
'amount_max' => $this->string('amount_max'),
|
||||||
'repeat_freq' => $this->string('repeat_freq'),
|
'date' => $this->date('date'),
|
||||||
'skip' => $this->integer('skip'),
|
'repeat_freq' => $this->string('repeat_freq'),
|
||||||
'notes' => $this->string('notes'),
|
'skip' => $this->integer('skip'),
|
||||||
'active' => $this->boolean('active'),
|
'notes' => $this->string('notes'),
|
||||||
|
'active' => $this->boolean('active'),
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user