1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-11 13:42:49 +01:00
invoiceninja/app/Http/Requests/BankTransaction/MatchBankTransactionRequest.php

51 lines
1.1 KiB
PHP
Raw Normal View History

2022-09-15 05:58:42 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Http\Requests\BankTransaction;
use App\Http\Requests\Request;
use App\Models\BankTransaction;
class MatchBankTransactionRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize() : bool
{
return auth()->user()->isAdmin();
}
2022-09-15 06:15:02 +02:00
public function rules()
{
return [
'*.id' => 'required|bail',
'*.invoice_id' => 'nullable|sometimes',
2022-09-15 09:31:32 +02:00
'*.is_expense' => 'nullable|sometimes|bool',
2022-09-15 07:02:39 +02:00
'*.amount' => 'nullable|sometimes|numeric'
2022-09-15 06:15:02 +02:00
];
}
public function prepareForValidation()
{
$input = $this->all();
$input = $this->decodePrimaryKeys($input);
$this->replace($input);
}
2022-09-15 05:58:42 +02:00
}