mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-09-01 12:51:00 +00:00
* refactor: stabilize model identities for domain migration * refactor: extract module platform context * refactor: assign models to domain contexts * refactor: extract ai platform context * refactor: extract storage platform context * refactor: extract mail platform context * refactor: extract pdf platform context * refactor: extract operations platform context * refactor: move installation into operations platform * refactor: extract money domain context * refactor: extract taxation domain context * refactor: extract catalog domain context * refactor: extract metadata domain context * refactor: extract reporting domain context * refactor: extract purchases domain context * refactor: extract receivables domain context * refactor: extract accounts domain context * refactor: complete reporting statement boundary * refactor: extract contacts domain context * refactor: extract sales domain context * refactor: remove legacy application layers * fix: migrate legacy bouncer role identities
40 lines
1.2 KiB
PHP
40 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Rules;
|
|
|
|
use App\Domains\Sales\Models\Invoice;
|
|
use Closure;
|
|
use Illuminate\Contracts\Validation\ValidationRule;
|
|
|
|
/**
|
|
* An invoice may not be deleted while a credit note still reverses it.
|
|
*
|
|
* RelationNotExist cannot express this: the credit note is allowed to go, as
|
|
* long as it goes in the same batch. Deleting only the original would leave the
|
|
* credit note pointing at a row that no longer exists, so its detail page, its
|
|
* PDF banner and the delete-side balance restore all lose their counterpart.
|
|
* The rule therefore looks at the whole `ids` list, not just the value it was
|
|
* handed.
|
|
*/
|
|
class CreditNoteDeletedTogether implements ValidationRule
|
|
{
|
|
/**
|
|
* @param array<int, mixed> $ids every id in the delete request
|
|
*/
|
|
public function __construct(private readonly array $ids) {}
|
|
|
|
public function validate(string $attribute, mixed $value, Closure $fail): void
|
|
{
|
|
$batch = array_map('intval', array_filter($this->ids, 'is_numeric'));
|
|
|
|
$orphaned = Invoice::where('related_invoice_id', (int) $value)
|
|
->where('type', Invoice::TYPE_CREDIT_NOTE)
|
|
->whereNotIn('id', $batch)
|
|
->exists();
|
|
|
|
if ($orphaned) {
|
|
$fail('Credit note exists.');
|
|
}
|
|
}
|
|
}
|