2020-07-23 13:20:05 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-07-23 13:20:05 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2024-04-12 06:15:41 +02:00
|
|
|
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-07-23 13:20:05 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-07-23 13:20:05 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\ValidationRules\Invoice;
|
|
|
|
|
|
|
|
use App\Models\Invoice;
|
|
|
|
use Illuminate\Contracts\Validation\Rule;
|
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Class UniqueInvoiceNumberRule.
|
2020-07-23 13:20:05 +02:00
|
|
|
*/
|
|
|
|
class UniqueInvoiceNumberRule implements Rule
|
|
|
|
{
|
|
|
|
public $input;
|
|
|
|
|
|
|
|
public function __construct($input)
|
|
|
|
{
|
|
|
|
$this->input = $input;
|
|
|
|
}
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
/**
|
2020-07-23 13:20:05 +02:00
|
|
|
* @param string $attribute
|
|
|
|
* @param mixed $value
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function passes($attribute, $value)
|
|
|
|
{
|
|
|
|
return $this->checkIfInvoiceNumberUnique(); //if it exists, return false!
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function message()
|
|
|
|
{
|
2021-01-24 12:48:09 +01:00
|
|
|
return ctrans('texts.invoice_number_taken');
|
2020-07-23 13:20:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
2024-01-14 05:05:00 +01:00
|
|
|
private function checkIfInvoiceNumberUnique(): bool
|
2020-07-23 13:20:05 +02:00
|
|
|
{
|
2020-11-25 15:19:52 +01:00
|
|
|
if (empty($this->input['number'])) {
|
2020-10-07 01:16:57 +02:00
|
|
|
return true;
|
2020-11-25 15:19:52 +01:00
|
|
|
}
|
2020-10-07 01:16:57 +02:00
|
|
|
|
2023-08-06 09:35:19 +02:00
|
|
|
$invoice = Invoice::query()->where('client_id', $this->input['client_id'])
|
2020-07-23 13:20:05 +02:00
|
|
|
->where('number', $this->input['number'])
|
|
|
|
->withTrashed()
|
2020-08-12 05:52:21 +02:00
|
|
|
->exists();
|
2020-07-23 13:20:05 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if ($invoice) {
|
2020-07-23 13:30:51 +02:00
|
|
|
return false;
|
2020-09-06 11:38:10 +02:00
|
|
|
}
|
2020-07-23 13:30:51 +02:00
|
|
|
|
|
|
|
return true;
|
2020-07-23 13:20:05 +02:00
|
|
|
}
|
|
|
|
}
|