1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 21:22:58 +01:00
invoiceninja/app/Http/ValidationRules/Invoice/LockedInvoiceRule.php

84 lines
2.0 KiB
PHP
Raw Normal View History

2020-07-22 01:54:39 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2020-07-22 01:54:39 +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-22 01:54:39 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2020-07-22 01:54:39 +02:00
*/
namespace App\Http\ValidationRules\Invoice;
use App\Models\Invoice;
use Illuminate\Contracts\Validation\Rule;
/**
* Class LockedInvoiceRule.
* @deprecated
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
*/
2024-01-14 05:05:00 +01:00
private function checkIfInvoiceLocked(): bool
2020-07-22 01:54:39 +02:00
{
$lock_invoices = $this->invoice->client->getSetting('lock_invoices');
switch ($lock_invoices) {
case 'off':
return true;
case 'when_sent':
if ($this->invoice->status_id == Invoice::STATUS_SENT) {
2020-07-22 01:54:39 +02:00
return false;
}
2020-07-22 01:54:39 +02:00
return true;
case 'when_paid':
if ($this->invoice->status_id == Invoice::STATUS_PAID) {
2020-07-22 01:54:39 +02:00
return false;
}
2020-07-22 01:54:39 +02:00
return true;
2024-06-14 09:09:44 +02:00
//if now is greater than the end of month the invoice was dated - do not modify
case 'end_of_month':
2024-06-14 09:09:44 +02:00
if(\Carbon\Carbon::parse($this->invoice->date)->setTimezone($this->invoice->company->timezone()->name)->endOfMonth()->lte(now())) {
return false;
2024-06-14 09:09:44 +02:00
}
return true;
2020-07-22 01:54:39 +02:00
default:
return true;
}
}
}