2019-05-03 17:57:55 +10:00
|
|
|
<?php
|
2019-05-11 13:32:07 +10:00
|
|
|
/**
|
2020-09-06 19:38:10 +10:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 13:32:07 +10:00
|
|
|
*
|
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
|
*
|
2023-01-29 09:21:40 +11:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 13:32:07 +10:00
|
|
|
*
|
2021-06-16 16:58:16 +10:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 13:32:07 +10:00
|
|
|
*/
|
2019-05-03 17:57:55 +10:00
|
|
|
|
|
|
|
|
namespace App\Http\Requests\Payment;
|
|
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2020-11-02 12:11:49 +11:00
|
|
|
use App\Http\ValidationRules\Credit\CreditsSumRule;
|
2020-11-25 15:19:52 +01:00
|
|
|
use App\Http\ValidationRules\Credit\ValidCreditsRules;
|
2020-02-28 12:58:49 +11:00
|
|
|
use App\Http\ValidationRules\Payment\ValidInvoicesRules;
|
2020-09-06 19:38:10 +10:00
|
|
|
use App\Http\ValidationRules\PaymentAmountsBalanceRule;
|
2020-01-10 07:15:10 +11:00
|
|
|
use App\Http\ValidationRules\ValidCreditsPresentRule;
|
2020-02-28 12:58:49 +11:00
|
|
|
use App\Http\ValidationRules\ValidPayableInvoicesRule;
|
2019-05-03 17:57:55 +10:00
|
|
|
use App\Models\Payment;
|
2019-11-16 14:12:29 +11:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2021-12-10 21:50:46 +11:00
|
|
|
use Illuminate\Validation\Rule;
|
2019-05-03 17:57:55 +10:00
|
|
|
|
|
|
|
|
class StorePaymentRequest extends Request
|
|
|
|
|
{
|
2019-11-16 14:12:29 +11:00
|
|
|
use MakesHash;
|
2019-11-18 21:46:01 +11:00
|
|
|
|
2019-05-03 17:57:55 +10:00
|
|
|
/**
|
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
|
*
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
|
|
|
|
public function authorize() : bool
|
|
|
|
|
{
|
|
|
|
|
return auth()->user()->can('create', Payment::class);
|
|
|
|
|
}
|
|
|
|
|
|
2022-06-24 11:55:41 +10:00
|
|
|
public function prepareForValidation()
|
2019-05-03 17:57:55 +10:00
|
|
|
{
|
2019-11-16 14:12:29 +11:00
|
|
|
$input = $this->all();
|
|
|
|
|
|
2020-01-19 13:02:02 +10:00
|
|
|
$invoices_total = 0;
|
|
|
|
|
$credits_total = 0;
|
|
|
|
|
|
2023-02-16 12:36:09 +11:00
|
|
|
if (isset($input['client_id']) && is_string($input['client_id'])) {
|
2019-11-18 21:46:01 +11:00
|
|
|
$input['client_id'] = $this->decodePrimaryKey($input['client_id']);
|
2019-12-31 08:59:12 +11:00
|
|
|
}
|
2019-11-18 21:46:01 +11:00
|
|
|
|
2020-06-26 08:29:24 +10:00
|
|
|
if (array_key_exists('assigned_user_id', $input) && is_string($input['assigned_user_id'])) {
|
|
|
|
|
$input['assigned_user_id'] = $this->decodePrimaryKey($input['assigned_user_id']);
|
|
|
|
|
}
|
2020-09-06 19:38:10 +10:00
|
|
|
|
2020-01-04 13:27:51 +11:00
|
|
|
if (isset($input['invoices']) && is_array($input['invoices']) !== false) {
|
2019-12-31 08:59:12 +11:00
|
|
|
foreach ($input['invoices'] as $key => $value) {
|
2023-02-16 12:36:09 +11:00
|
|
|
if (is_string($value['invoice_id'])) {
|
2022-09-06 13:38:54 +10:00
|
|
|
$input['invoices'][$key]['invoice_id'] = $this->decodePrimaryKey($value['invoice_id']);
|
2023-02-16 12:36:09 +11:00
|
|
|
}
|
2022-01-12 14:40:05 +11:00
|
|
|
|
2022-06-21 09:57:17 +00:00
|
|
|
if (array_key_exists('amount', $value)) {
|
2022-01-12 14:40:05 +11:00
|
|
|
$invoices_total += $value['amount'];
|
2022-06-21 09:57:17 +00:00
|
|
|
}
|
2019-12-01 22:23:24 +11:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 08:59:12 +11:00
|
|
|
if (isset($input['invoices']) && is_array($input['invoices']) === false) {
|
2019-11-18 21:46:01 +11:00
|
|
|
$input['invoices'] = null;
|
2019-12-31 08:59:12 +11:00
|
|
|
}
|
2019-11-16 14:12:29 +11:00
|
|
|
|
2020-01-10 07:15:10 +11:00
|
|
|
if (isset($input['credits']) && is_array($input['credits']) !== false) {
|
|
|
|
|
foreach ($input['credits'] as $key => $value) {
|
2020-03-21 16:37:30 +11:00
|
|
|
if (array_key_exists('credit_id', $input['credits'][$key])) {
|
2022-08-22 13:24:33 +10:00
|
|
|
$input['credits'][$key]['credit_id'] = $this->decodePrimaryKey($value['credit_id']);
|
|
|
|
|
|
2020-02-02 07:45:23 +11:00
|
|
|
$credits_total += $value['amount'];
|
|
|
|
|
}
|
2020-01-10 07:15:10 +11:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (isset($input['credits']) && is_array($input['credits']) === false) {
|
|
|
|
|
$input['credits'] = null;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-06 19:38:10 +10:00
|
|
|
if (! isset($input['amount']) || $input['amount'] == 0) {
|
2020-11-25 15:19:52 +01:00
|
|
|
$input['amount'] = $invoices_total - $credits_total;
|
2020-01-19 13:02:02 +10:00
|
|
|
}
|
|
|
|
|
|
2021-01-14 08:16:07 +11:00
|
|
|
// $input['is_manual'] = true;
|
2020-09-06 19:38:10 +10:00
|
|
|
|
|
|
|
|
if (! isset($input['date'])) {
|
2020-07-02 20:22:40 +10:00
|
|
|
$input['date'] = now()->format('Y-m-d');
|
|
|
|
|
}
|
2020-09-06 19:38:10 +10:00
|
|
|
|
2019-12-01 22:23:24 +11:00
|
|
|
$this->replace($input);
|
|
|
|
|
}
|
2019-05-03 17:57:55 +10:00
|
|
|
|
2019-12-01 22:23:24 +11:00
|
|
|
public function rules()
|
|
|
|
|
{
|
|
|
|
|
$rules = [
|
2022-08-22 15:05:02 +10:00
|
|
|
'amount' => ['numeric', 'bail', new PaymentAmountsBalanceRule(), new ValidCreditsPresentRule($this->all())],
|
2022-09-06 13:38:54 +10:00
|
|
|
// 'client_id' => 'bail|required|exists:clients,id',
|
|
|
|
|
'client_id' => 'bail|required|exists:clients,id,company_id,'.auth()->user()->company()->id.',is_deleted,0',
|
2020-10-21 10:47:12 +11:00
|
|
|
'invoices.*.invoice_id' => 'bail|required|distinct|exists:invoices,id',
|
2022-01-12 14:40:05 +11:00
|
|
|
'invoices.*.amount' => 'bail|required',
|
2020-02-28 12:58:49 +11:00
|
|
|
'invoices.*.invoice_id' => new ValidInvoicesRules($this->all()),
|
2020-10-21 10:47:12 +11:00
|
|
|
'credits.*.credit_id' => 'bail|required|exists:credits,id',
|
2020-04-08 20:48:31 +10:00
|
|
|
'credits.*.credit_id' => new ValidCreditsRules($this->all()),
|
2022-08-22 18:12:54 +10:00
|
|
|
'credits.*.amount' => ['bail','required', new CreditsSumRule($this->all())],
|
2019-12-01 22:23:24 +11:00
|
|
|
'invoices' => new ValidPayableInvoicesRule(),
|
2022-05-15 20:14:14 +10:00
|
|
|
'number' => ['nullable', 'bail', Rule::unique('payments')->where('company_id', auth()->user()->company()->id)],
|
2022-10-01 10:29:15 +10:00
|
|
|
'idempotency_key' => ['nullable', 'bail', 'string','max:64', Rule::unique('payments')->where('company_id', auth()->user()->company()->id)],
|
2021-12-10 21:50:46 +11:00
|
|
|
|
2019-12-01 22:23:24 +11:00
|
|
|
];
|
2019-05-03 17:57:55 +10:00
|
|
|
|
2023-02-27 20:12:59 +11:00
|
|
|
if($this->file('documents') && is_array($this->file('documents')))
|
|
|
|
|
$rules['documents.*'] = $this->file_validation;
|
|
|
|
|
elseif($this->file('documents'))
|
|
|
|
|
$rules['documents'] = $this->file_validation;
|
|
|
|
|
|
|
|
|
|
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 21:41:04 +10:00
|
|
|
}
|
2023-02-27 20:12:59 +11:00
|
|
|
|
2019-12-01 22:23:24 +11:00
|
|
|
return $rules;
|
2019-11-18 21:46:01 +11:00
|
|
|
}
|
2019-12-31 08:59:12 +11:00
|
|
|
}
|