2019-05-03 09:57:55 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 05:32:07 +02:00
|
|
|
*/
|
2019-05-03 09:57:55 +02:00
|
|
|
|
|
|
|
namespace App\Http\Requests\Payment;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2020-01-09 21:15:10 +01:00
|
|
|
use App\Http\ValidationRules\PaymentAppliedValidAmount;
|
|
|
|
use App\Http\ValidationRules\ValidCreditsPresentRule;
|
2019-12-30 22:59:12 +01:00
|
|
|
use App\Utils\Traits\ChecksEntityStatus;
|
2020-01-09 21:15:10 +01:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2021-03-19 23:51:52 +01:00
|
|
|
use Illuminate\Validation\Rule;
|
2019-05-03 09:57:55 +02:00
|
|
|
|
|
|
|
class UpdatePaymentRequest extends Request
|
|
|
|
{
|
2019-12-30 22:59:12 +01:00
|
|
|
use ChecksEntityStatus;
|
2020-01-09 21:15:10 +01:00
|
|
|
use MakesHash;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-05-03 09:57:55 +02:00
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
|
|
|
return auth()->user()->can('edit', $this->payment);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
2020-10-20 07:14:11 +02:00
|
|
|
{
|
2020-11-25 15:19:52 +01:00
|
|
|
$rules = [
|
2023-03-11 04:25:18 +01:00
|
|
|
'invoices' => ['array', new PaymentAppliedValidAmount($this->all()), new ValidCreditsPresentRule($this->all())],
|
2020-06-05 02:24:02 +02:00
|
|
|
'invoices.*.invoice_id' => 'distinct',
|
2019-05-03 09:57:55 +02:00
|
|
|
];
|
2020-06-22 13:41:04 +02:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if ($this->number) {
|
2021-03-19 23:51:52 +01:00
|
|
|
$rules['number'] = Rule::unique('payments')->where('company_id', auth()->user()->company()->id)->ignore($this->payment->id);
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2021-03-19 23:29:20 +01:00
|
|
|
|
2023-02-27 10:12:59 +01:00
|
|
|
if($this->file('documents') && is_array($this->file('documents')))
|
|
|
|
$rules['documents.*'] = $this->file_validation;
|
|
|
|
elseif($this->file('documents'))
|
|
|
|
$rules['documents'] = $this->file_validation;
|
2020-06-22 13:41:04 +02:00
|
|
|
|
2023-02-27 10:12:59 +01:00
|
|
|
if ($this->file('file') && is_array($this->file('file'))) {
|
|
|
|
$rules['file.*'] = $this->file_validation;
|
|
|
|
} elseif ($this->file('file')) {
|
|
|
|
$rules['file'] = $this->file_validation;
|
2020-06-22 13:41:04 +02:00
|
|
|
}
|
2023-02-27 10:12:59 +01:00
|
|
|
|
2020-06-22 13:41:04 +02:00
|
|
|
return $rules;
|
2019-05-03 09:57:55 +02:00
|
|
|
}
|
2020-01-09 21:15:10 +01:00
|
|
|
|
2022-06-24 03:55:41 +02:00
|
|
|
public function prepareForValidation()
|
2020-01-09 21:15:10 +01:00
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
2020-10-22 08:46:02 +02:00
|
|
|
$input = $this->decodePrimaryKeys($input);
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
if (isset($input['client_id'])) {
|
2020-01-09 21:15:10 +01:00
|
|
|
unset($input['client_id']);
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
if (isset($input['amount'])) {
|
2020-01-09 21:15:10 +01:00
|
|
|
unset($input['amount']);
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2020-01-09 21:15:10 +01:00
|
|
|
|
|
|
|
if (isset($input['invoices']) && is_array($input['invoices']) !== false) {
|
|
|
|
foreach ($input['invoices'] as $key => $value) {
|
2022-06-21 11:57:17 +02:00
|
|
|
if (array_key_exists('invoice_id', $input['invoices'][$key])) {
|
2022-06-20 08:28:03 +02:00
|
|
|
$input['invoices'][$key]['invoice_id'] = $this->decodePrimaryKey($value['invoice_id']);
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2020-01-09 21:15:10 +01:00
|
|
|
}
|
|
|
|
}
|
2022-08-22 07:05:02 +02:00
|
|
|
|
|
|
|
if (isset($input['credits']) && is_array($input['credits']) !== false) {
|
|
|
|
foreach ($input['credits'] as $key => $value) {
|
|
|
|
if (array_key_exists('credits', $input['credits'][$key])) {
|
|
|
|
$input['credits'][$key]['credit_id'] = $this->decodePrimaryKey($value['credit_id']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-03-11 04:25:18 +01:00
|
|
|
|
2020-01-09 21:15:10 +01:00
|
|
|
$this->replace($input);
|
|
|
|
}
|
2020-06-05 02:24:02 +02:00
|
|
|
|
|
|
|
public function messages()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'distinct' => 'Attemping duplicate payment on the same invoice Invoice',
|
|
|
|
];
|
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|