2020-07-22 01:54:39 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-07-22 01:54:39 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-07-22 01:54:39 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\ValidationRules\Invoice;
|
|
|
|
|
|
|
|
use App\Models\Invoice;
|
|
|
|
use Illuminate\Contracts\Validation\Rule;
|
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Class LockedInvoiceRule.
|
2020-07-22 01:54:39 +02:00
|
|
|
*/
|
|
|
|
class LockedInvoiceRule implements Rule
|
|
|
|
{
|
|
|
|
public $invoice;
|
|
|
|
|
|
|
|
public function __construct(Invoice $invoice)
|
|
|
|
{
|
|
|
|
$this->invoice = $invoice;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $attribute
|
|
|
|
* @param mixed $value
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function passes($attribute, $value)
|
|
|
|
{
|
|
|
|
return $this->checkIfInvoiceLocked(); //if it exists, return false!
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function message()
|
|
|
|
{
|
|
|
|
return ctrans('texts.locked_invoice');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
private function checkIfInvoiceLocked() : bool
|
|
|
|
{
|
|
|
|
$lock_invoices = $this->invoice->client->getSetting('lock_invoices');
|
|
|
|
|
|
|
|
switch ($lock_invoices) {
|
|
|
|
case 'off':
|
|
|
|
return true;
|
|
|
|
break;
|
|
|
|
case 'when_sent':
|
2020-09-06 11:38:10 +02:00
|
|
|
if ($this->invoice->status_id == Invoice::STATUS_SENT) {
|
2020-07-22 01:54:39 +02:00
|
|
|
return false;
|
2020-09-06 11:38:10 +02:00
|
|
|
}
|
2020-07-22 01:54:39 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
break;
|
|
|
|
case 'when_paid':
|
2020-09-06 11:38:10 +02:00
|
|
|
if ($this->invoice->status_id == Invoice::STATUS_PAID) {
|
2020-07-22 01:54:39 +02:00
|
|
|
return false;
|
2020-09-06 11:38:10 +02:00
|
|
|
}
|
2020-07-22 01:54:39 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|