2019-05-03 00:29:04 +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 00:29:04 +02:00
|
|
|
|
|
|
|
namespace App\Http\Requests\RecurringInvoice;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2022-03-09 22:52:33 +01:00
|
|
|
use App\Http\ValidationRules\Project\ValidProjectForClient;
|
2019-12-30 22:59:12 +01:00
|
|
|
use App\Utils\Traits\ChecksEntityStatus;
|
2020-02-15 10:06:30 +01:00
|
|
|
use App\Utils\Traits\CleanLineItems;
|
2020-09-06 11:38:10 +02:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2021-03-19 23:51:52 +01:00
|
|
|
use Illuminate\Validation\Rule;
|
2019-05-03 00:29:04 +02:00
|
|
|
|
|
|
|
class UpdateRecurringInvoiceRequest extends Request
|
|
|
|
{
|
2019-12-30 22:59:12 +01:00
|
|
|
use ChecksEntityStatus;
|
2020-02-15 10:06:30 +01:00
|
|
|
use CleanLineItems;
|
2020-07-01 02:12:53 +02:00
|
|
|
use MakesHash;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-05-03 00:29:04 +02:00
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
|
|
|
return auth()->user()->can('edit', $this->recurring_invoice);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
2020-07-01 02:12:53 +02:00
|
|
|
$rules = [];
|
2019-07-04 06:31:01 +02:00
|
|
|
|
2023-03-18 08:24:56 +01:00
|
|
|
if ($this->file('documents') && is_array($this->file('documents'))) {
|
2023-02-27 10:12:59 +01:00
|
|
|
$rules['documents.*'] = $this->file_validation;
|
2023-03-18 08:24:56 +01:00
|
|
|
} elseif ($this->file('documents')) {
|
2023-02-27 10:12:59 +01:00
|
|
|
$rules['documents'] = $this->file_validation;
|
2023-03-18 08:24:56 +01: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-07-01 02:12:53 +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('recurring_invoices')->where('company_id', auth()->user()->company()->id)->ignore($this->recurring_invoice->id);
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2021-03-19 23:51:52 +01:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
$rules['project_id'] = ['bail', 'sometimes', new ValidProjectForClient($this->all())];
|
2022-11-05 05:13:08 +01:00
|
|
|
$rules['tax_rate1'] = 'bail|sometimes|numeric';
|
|
|
|
$rules['tax_rate2'] = 'bail|sometimes|numeric';
|
|
|
|
$rules['tax_rate3'] = 'bail|sometimes|numeric';
|
|
|
|
$rules['tax_name1'] = 'bail|sometimes|string|nullable';
|
|
|
|
$rules['tax_name2'] = 'bail|sometimes|string|nullable';
|
|
|
|
$rules['tax_name3'] = 'bail|sometimes|string|nullable';
|
2023-07-16 12:34:31 +02:00
|
|
|
$rules['exchange_rate'] = 'bail|sometimes|gt:0';
|
|
|
|
|
2020-07-01 02:12:53 +02:00
|
|
|
return $rules;
|
2019-05-03 00:29:04 +02:00
|
|
|
}
|
2020-02-15 10:06:30 +01:00
|
|
|
|
2022-06-24 03:55:41 +02:00
|
|
|
public function prepareForValidation()
|
2020-02-15 10:06:30 +01:00
|
|
|
{
|
|
|
|
$input = $this->all();
|
2020-10-07 02:20:28 +02:00
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if (array_key_exists('due_date_days', $input) && is_null($input['due_date_days'])) {
|
2022-12-02 00:36:47 +01:00
|
|
|
$input['due_date_days'] = 'terms';
|
|
|
|
}
|
|
|
|
|
2023-07-27 03:14:59 +02:00
|
|
|
if(!isset($input['next_send_date']) || $input['next_send_date'] == '') {
|
|
|
|
$input['next_send_date'] = now()->format('Y-m-d');
|
|
|
|
}
|
|
|
|
|
2022-06-02 05:49:29 +02:00
|
|
|
if (array_key_exists('next_send_date', $input) && is_string($input['next_send_date'])) {
|
|
|
|
$input['next_send_date_client'] = $input['next_send_date'];
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
|
|
|
|
2020-07-01 02:12:53 +02:00
|
|
|
if (array_key_exists('design_id', $input) && is_string($input['design_id'])) {
|
|
|
|
$input['design_id'] = $this->decodePrimaryKey($input['design_id']);
|
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-07-01 02:12:53 +02:00
|
|
|
if (isset($input['client_id'])) {
|
|
|
|
$input['client_id'] = $this->decodePrimaryKey($input['client_id']);
|
|
|
|
}
|
|
|
|
|
2020-06-26 00:29:24 +02: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 11:38:10 +02:00
|
|
|
|
2022-03-09 22:52:33 +01:00
|
|
|
if (array_key_exists('project_id', $input) && is_string($input['project_id'])) {
|
|
|
|
$input['project_id'] = $this->decodePrimaryKey($input['project_id']);
|
|
|
|
}
|
|
|
|
|
2020-07-01 02:12:53 +02:00
|
|
|
if (isset($input['invitations'])) {
|
|
|
|
foreach ($input['invitations'] as $key => $value) {
|
2022-11-12 23:42:11 +01:00
|
|
|
if (isset($input['invitations'][$key]['id']) && is_numeric($input['invitations'][$key]['id'])) {
|
2020-07-01 02:12:53 +02:00
|
|
|
unset($input['invitations'][$key]['id']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (array_key_exists('id', $input['invitations'][$key]) && is_string($input['invitations'][$key]['id'])) {
|
|
|
|
$input['invitations'][$key]['id'] = $this->decodePrimaryKey($input['invitations'][$key]['id']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_string($input['invitations'][$key]['client_contact_id'])) {
|
|
|
|
$input['invitations'][$key]['client_contact_id'] = $this->decodePrimaryKey($input['invitations'][$key]['client_contact_id']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2021-04-08 12:50:53 +02:00
|
|
|
if (isset($input['line_items'])) {
|
|
|
|
$input['line_items'] = isset($input['line_items']) ? $this->cleanItems($input['line_items']) : [];
|
|
|
|
}
|
2020-07-01 02:12:53 +02:00
|
|
|
|
2023-01-25 23:36:59 +01:00
|
|
|
if (array_key_exists('auto_bill', $input) && isset($input['auto_bill'])) {
|
|
|
|
$input['auto_bill_enabled'] = $this->setAutoBillFlag($input['auto_bill']);
|
2020-11-25 15:19:52 +01:00
|
|
|
}
|
2020-09-24 05:40:13 +02:00
|
|
|
|
2021-01-08 11:19:26 +01:00
|
|
|
if (array_key_exists('documents', $input)) {
|
|
|
|
unset($input['documents']);
|
|
|
|
}
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2023-07-22 03:13:18 +02:00
|
|
|
if (array_key_exists('exchange_rate', $input) && (is_null($input['exchange_rate']) || $input['exchange_rate'] == 0)) {
|
2023-07-16 12:34:31 +02:00
|
|
|
$input['exchange_rate'] = 1;
|
|
|
|
}
|
|
|
|
|
2020-02-15 10:06:30 +01:00
|
|
|
$this->replace($input);
|
|
|
|
}
|
2020-09-24 05:40:13 +02:00
|
|
|
|
2020-10-07 08:33:16 +02:00
|
|
|
/**
|
|
|
|
* if($auto_bill == '')
|
2020-11-25 15:19:52 +01:00
|
|
|
* off / optin / optout will reset the status of this field to off to allow
|
2020-10-07 08:33:16 +02:00
|
|
|
* the client to choose whether to auto_bill or not.
|
2020-11-25 15:19:52 +01:00
|
|
|
*
|
2020-10-07 08:33:16 +02:00
|
|
|
* @param enum $auto_bill off/always/optin/optout
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2023-01-25 23:36:59 +01:00
|
|
|
private function setAutoBillFlag($auto_bill)
|
2020-09-24 05:40:13 +02:00
|
|
|
{
|
2023-01-25 23:36:59 +01:00
|
|
|
if ($auto_bill == 'always' || $auto_bill == 'optout') {
|
2020-09-24 05:40:13 +02:00
|
|
|
return true;
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
|
|
|
|
2020-10-07 08:33:16 +02:00
|
|
|
return false;
|
2020-09-24 05:40:13 +02:00
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|