123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656 |
- <?php
-
- namespace App\Models\Accounting;
-
- use App\Casts\MoneyCast;
- use App\Casts\RateCast;
- use App\Collections\Accounting\DocumentCollection;
- use App\Enums\Accounting\AdjustmentComputation;
- use App\Enums\Accounting\DocumentDiscountMethod;
- use App\Enums\Accounting\DocumentType;
- use App\Enums\Accounting\InvoiceStatus;
- use App\Enums\Accounting\JournalEntryType;
- use App\Enums\Accounting\TransactionType;
- use App\Filament\Company\Resources\Sales\InvoiceResource;
- use App\Models\Banking\BankAccount;
- use App\Models\Common\Client;
- use App\Models\Company;
- use App\Models\Setting\DocumentDefault;
- use App\Observers\InvoiceObserver;
- use App\Utilities\Currency\CurrencyAccessor;
- use App\Utilities\Currency\CurrencyConverter;
- use Filament\Actions\Action;
- use Filament\Actions\MountableAction;
- use Filament\Actions\ReplicateAction;
- use Filament\Actions\StaticAction;
- use Filament\Notifications\Notification;
- use Filament\Support\Enums\Alignment;
- use Illuminate\Database\Eloquent\Attributes\CollectedBy;
- use Illuminate\Database\Eloquent\Attributes\ObservedBy;
- use Illuminate\Database\Eloquent\Builder;
- use Illuminate\Database\Eloquent\Casts\Attribute;
- use Illuminate\Database\Eloquent\Model;
- use Illuminate\Database\Eloquent\Relations\BelongsTo;
- use Illuminate\Database\Eloquent\Relations\MorphMany;
- use Illuminate\Database\Eloquent\Relations\MorphOne;
- use Illuminate\Support\Carbon;
- use Illuminate\Support\Facades\Storage;
- use Illuminate\Support\HtmlString;
- use Livewire\Component;
-
- #[CollectedBy(DocumentCollection::class)]
- #[ObservedBy(InvoiceObserver::class)]
- class Invoice extends Document
- {
- protected $table = 'invoices';
-
- protected $fillable = [
- 'company_id',
- 'client_id',
- 'estimate_id',
- 'recurring_invoice_id',
- 'logo',
- 'header',
- 'subheader',
- 'invoice_number',
- 'order_number',
- 'date',
- 'due_date',
- 'approved_at',
- 'paid_at',
- 'last_sent_at',
- 'last_viewed_at',
- 'status',
- 'currency_code',
- 'discount_method',
- 'discount_computation',
- 'discount_rate',
- 'subtotal',
- 'tax_total',
- 'discount_total',
- 'total',
- 'amount_paid',
- 'terms',
- 'footer',
- 'created_by',
- 'updated_by',
- ];
-
- protected $casts = [
- 'date' => 'date',
- 'due_date' => 'date',
- 'approved_at' => 'datetime',
- 'paid_at' => 'datetime',
- 'last_sent_at' => 'datetime',
- 'last_viewed_at' => 'datetime',
- 'status' => InvoiceStatus::class,
- 'discount_method' => DocumentDiscountMethod::class,
- 'discount_computation' => AdjustmentComputation::class,
- 'discount_rate' => RateCast::class,
- 'subtotal' => MoneyCast::class,
- 'tax_total' => MoneyCast::class,
- 'discount_total' => MoneyCast::class,
- 'total' => MoneyCast::class,
- 'amount_paid' => MoneyCast::class,
- 'amount_due' => MoneyCast::class,
- ];
-
- protected $appends = [
- 'logo_url',
- ];
-
- protected function logoUrl(): Attribute
- {
- return Attribute::get(static function (mixed $value, array $attributes): ?string {
- return $attributes['logo'] ? Storage::disk('public')->url($attributes['logo']) : null;
- });
- }
-
- public function client(): BelongsTo
- {
- return $this->belongsTo(Client::class);
- }
-
- public function estimate(): BelongsTo
- {
- return $this->belongsTo(Estimate::class);
- }
-
- public function recurringInvoice(): BelongsTo
- {
- return $this->belongsTo(RecurringInvoice::class);
- }
-
- public function transactions(): MorphMany
- {
- return $this->morphMany(Transaction::class, 'transactionable');
- }
-
- public function payments(): MorphMany
- {
- return $this->transactions()->where('is_payment', true);
- }
-
- public function deposits(): MorphMany
- {
- return $this->transactions()->where('type', TransactionType::Deposit)->where('is_payment', true);
- }
-
- public function withdrawals(): MorphMany
- {
- return $this->transactions()->where('type', TransactionType::Withdrawal)->where('is_payment', true);
- }
-
- public function approvalTransaction(): MorphOne
- {
- return $this->morphOne(Transaction::class, 'transactionable')
- ->where('type', TransactionType::Journal);
- }
-
- protected function sourceType(): Attribute
- {
- return Attribute::get(function () {
- return match (true) {
- $this->estimate_id !== null => DocumentType::Estimate,
- $this->recurring_invoice_id !== null => DocumentType::RecurringInvoice,
- default => null,
- };
- });
- }
-
- public static function documentType(): DocumentType
- {
- return DocumentType::Invoice;
- }
-
- public function documentNumber(): ?string
- {
- return $this->invoice_number;
- }
-
- public function documentDate(): ?string
- {
- return $this->date?->toDefaultDateFormat();
- }
-
- public function dueDate(): ?string
- {
- return $this->due_date?->toDefaultDateFormat();
- }
-
- public function referenceNumber(): ?string
- {
- return $this->order_number;
- }
-
- public function amountDue(): ?string
- {
- return $this->amount_due;
- }
-
- public function scopeUnpaid(Builder $query): Builder
- {
- return $query->whereNotIn('status', [
- InvoiceStatus::Paid,
- InvoiceStatus::Void,
- InvoiceStatus::Draft,
- InvoiceStatus::Overpaid,
- ]);
- }
-
- public function scopeOverdue(Builder $query): Builder
- {
- return $query
- ->unpaid()
- ->where('status', InvoiceStatus::Overdue);
- }
-
- protected function isCurrentlyOverdue(): Attribute
- {
- return Attribute::get(function () {
- return $this->due_date->isBefore(today()) && $this->canBeOverdue();
- });
- }
-
- public function isDraft(): bool
- {
- return $this->status === InvoiceStatus::Draft;
- }
-
- public function wasApproved(): bool
- {
- return $this->approved_at !== null;
- }
-
- public function isPaid(): bool
- {
- return $this->paid_at !== null;
- }
-
- public function hasBeenSent(): bool
- {
- return $this->last_sent_at !== null;
- }
-
- public function hasBeenViewed(): bool
- {
- return $this->last_viewed_at !== null;
- }
-
- public function canRecordPayment(): bool
- {
- if (! $this->client_id) {
- return false;
- }
-
- return ! in_array($this->status, [
- InvoiceStatus::Draft,
- InvoiceStatus::Paid,
- InvoiceStatus::Void,
- ]);
- }
-
- public function canBulkRecordPayment(): bool
- {
- if (! $this->client_id || $this->currency_code !== CurrencyAccessor::getDefaultCurrency()) {
- return false;
- }
-
- return ! in_array($this->status, [
- InvoiceStatus::Draft,
- InvoiceStatus::Paid,
- InvoiceStatus::Void,
- InvoiceStatus::Overpaid,
- ]);
- }
-
- public function canBeOverdue(): bool
- {
- return in_array($this->status, InvoiceStatus::canBeOverdue());
- }
-
- public function canBeApproved(): bool
- {
- return $this->isDraft() && ! $this->wasApproved();
- }
-
- public function canBeMarkedAsSent(): bool
- {
- return ! $this->hasBeenSent();
- }
-
- public function hasPayments(): bool
- {
- return $this->payments()->exists();
- }
-
- public static function getNextDocumentNumber(?Company $company = null): string
- {
- $company ??= auth()->user()?->currentCompany;
-
- if (! $company) {
- throw new \RuntimeException('No current company is set for the user.');
- }
-
- $defaultInvoiceSettings = $company->defaultInvoice;
-
- $numberPrefix = $defaultInvoiceSettings->number_prefix ?? '';
-
- $latestDocument = static::query()
- ->whereNotNull('invoice_number')
- ->latest('invoice_number')
- ->first();
-
- $lastNumberNumericPart = $latestDocument
- ? (int) substr($latestDocument->invoice_number, strlen($numberPrefix))
- : DocumentDefault::getBaseNumber();
-
- $numberNext = $lastNumberNumericPart + 1;
-
- return $defaultInvoiceSettings->getNumberNext(
- prefix: $numberPrefix,
- next: $numberNext
- );
- }
-
- public function recordPayment(array $data): void
- {
- $isRefund = $this->status === InvoiceStatus::Overpaid;
-
- if ($isRefund) {
- $transactionType = TransactionType::Withdrawal;
- $transactionDescription = "Invoice #{$this->invoice_number}: Refund to {$this->client->name}";
- } else {
- $transactionType = TransactionType::Deposit;
- $transactionDescription = "Invoice #{$this->invoice_number}: Payment from {$this->client->name}";
- }
-
- $bankAccount = BankAccount::findOrFail($data['bank_account_id']);
- $bankAccountCurrency = $bankAccount->account->currency_code ?? CurrencyAccessor::getDefaultCurrency();
-
- $invoiceCurrency = $this->currency_code;
- $requiresConversion = $invoiceCurrency !== $bankAccountCurrency;
-
- // Store the original payment amount in invoice currency before any conversion
- $amountInInvoiceCurrencyCents = CurrencyConverter::convertToCents($data['amount'], $invoiceCurrency);
-
- if ($requiresConversion) {
- $amountInBankCurrencyCents = CurrencyConverter::convertBalance(
- $amountInInvoiceCurrencyCents,
- $invoiceCurrency,
- $bankAccountCurrency
- );
- $formattedAmountForBankCurrency = CurrencyConverter::convertCentsToFormatSimple(
- $amountInBankCurrencyCents,
- $bankAccountCurrency
- );
- } else {
- $formattedAmountForBankCurrency = $data['amount']; // Already in simple format
- }
-
- // Create transaction
- $this->transactions()->create([
- 'company_id' => $this->company_id,
- 'type' => $transactionType,
- 'is_payment' => true,
- 'posted_at' => $data['posted_at'],
- 'amount' => $formattedAmountForBankCurrency,
- 'payment_method' => $data['payment_method'],
- 'bank_account_id' => $data['bank_account_id'],
- 'account_id' => Account::getAccountsReceivableAccount($this->company_id)->id,
- 'description' => $transactionDescription,
- 'notes' => $data['notes'] ?? null,
- 'meta' => [
- 'original_document_currency' => $invoiceCurrency,
- 'amount_in_document_currency_cents' => $amountInInvoiceCurrencyCents,
- ],
- ]);
- }
-
- public function approveDraft(?Carbon $approvedAt = null): void
- {
- if (! $this->isDraft()) {
- throw new \RuntimeException('Invoice is not in draft status.');
- }
-
- $this->createApprovalTransaction();
-
- $approvedAt ??= now();
-
- $this->update([
- 'approved_at' => $approvedAt,
- 'status' => InvoiceStatus::Unsent,
- ]);
- }
-
- public function createApprovalTransaction(): void
- {
- $total = $this->formatAmountToDefaultCurrency($this->getRawOriginal('total'));
-
- $transaction = $this->transactions()->create([
- 'company_id' => $this->company_id,
- 'type' => TransactionType::Journal,
- 'posted_at' => $this->date,
- 'amount' => $total,
- 'description' => 'Invoice Approval for Invoice #' . $this->invoice_number,
- ]);
-
- $baseDescription = "{$this->client->name}: Invoice #{$this->invoice_number}";
-
- $transaction->journalEntries()->create([
- 'company_id' => $this->company_id,
- 'type' => JournalEntryType::Debit,
- 'account_id' => Account::getAccountsReceivableAccount($this->company_id)->id,
- 'amount' => $total,
- 'description' => $baseDescription,
- ]);
-
- $totalLineItemSubtotalCents = $this->convertAmountToDefaultCurrency((int) $this->lineItems()->sum('subtotal'));
- $invoiceDiscountTotalCents = $this->convertAmountToDefaultCurrency((int) $this->getRawOriginal('discount_total'));
- $remainingDiscountCents = $invoiceDiscountTotalCents;
-
- foreach ($this->lineItems as $index => $lineItem) {
- $lineItemDescription = "{$baseDescription} › {$lineItem->offering->name}";
-
- $lineItemSubtotal = $this->formatAmountToDefaultCurrency($lineItem->getRawOriginal('subtotal'));
-
- $transaction->journalEntries()->create([
- 'company_id' => $this->company_id,
- 'type' => JournalEntryType::Credit,
- 'account_id' => $lineItem->offering->income_account_id,
- 'amount' => $lineItemSubtotal,
- 'description' => $lineItemDescription,
- ]);
-
- foreach ($lineItem->adjustments as $adjustment) {
- $adjustmentAmount = $this->formatAmountToDefaultCurrency($lineItem->calculateAdjustmentTotalAmount($adjustment));
-
- $transaction->journalEntries()->create([
- 'company_id' => $this->company_id,
- 'type' => $adjustment->category->isDiscount() ? JournalEntryType::Debit : JournalEntryType::Credit,
- 'account_id' => $adjustment->account_id,
- 'amount' => $adjustmentAmount,
- 'description' => $lineItemDescription,
- ]);
- }
-
- if ($this->discount_method->isPerDocument() && $totalLineItemSubtotalCents > 0) {
- $lineItemSubtotalCents = $this->convertAmountToDefaultCurrency((int) $lineItem->getRawOriginal('subtotal'));
-
- if ($index === $this->lineItems->count() - 1) {
- $lineItemDiscount = $remainingDiscountCents;
- } else {
- $lineItemDiscount = (int) round(
- ($lineItemSubtotalCents / $totalLineItemSubtotalCents) * $invoiceDiscountTotalCents
- );
- $remainingDiscountCents -= $lineItemDiscount;
- }
-
- if ($lineItemDiscount > 0) {
- $transaction->journalEntries()->create([
- 'company_id' => $this->company_id,
- 'type' => JournalEntryType::Debit,
- 'account_id' => Account::getSalesDiscountAccount($this->company_id)->id,
- 'amount' => CurrencyConverter::convertCentsToFormatSimple($lineItemDiscount),
- 'description' => "{$lineItemDescription} (Proportional Discount)",
- ]);
- }
- }
- }
- }
-
- public function updateApprovalTransaction(): void
- {
- $transaction = $this->approvalTransaction;
-
- if ($transaction) {
- $transaction->delete();
- }
-
- $this->createApprovalTransaction();
- }
-
- public function convertAmountToDefaultCurrency(int $amountCents): int
- {
- $defaultCurrency = CurrencyAccessor::getDefaultCurrency();
- $needsConversion = $this->currency_code !== $defaultCurrency;
-
- if ($needsConversion) {
- return CurrencyConverter::convertBalance($amountCents, $this->currency_code, $defaultCurrency);
- }
-
- return $amountCents;
- }
-
- public function formatAmountToDefaultCurrency(int $amountCents): string
- {
- $convertedCents = $this->convertAmountToDefaultCurrency($amountCents);
-
- return CurrencyConverter::convertCentsToFormatSimple($convertedCents);
- }
-
- // TODO: Potentially handle this another way
- public static function getBlockedApproveAction(string $action = Action::class): MountableAction
- {
- return $action::make('blockedApprove')
- ->label('Approve')
- ->icon('heroicon-m-check-circle')
- ->visible(fn (self $record) => $record->canBeApproved() && $record->hasInactiveAdjustments())
- ->requiresConfirmation()
- ->modalAlignment(Alignment::Start)
- ->modalIconColor('danger')
- ->modalDescription(function (self $record) {
- $inactiveAdjustments = collect();
-
- foreach ($record->lineItems as $lineItem) {
- foreach ($lineItem->adjustments as $adjustment) {
- if ($adjustment->isInactive() && $inactiveAdjustments->doesntContain($adjustment->name)) {
- $inactiveAdjustments->push($adjustment->name);
- }
- }
- }
-
- $output = "<p class='text-sm mb-4'>This invoice contains inactive adjustments that need to be addressed before approval:</p>";
- $output .= "<ul role='list' class='list-disc list-inside space-y-1 text-sm'>";
-
- foreach ($inactiveAdjustments as $name) {
- $output .= "<li class='py-1'><span class='font-medium'>{$name}</span></li>";
- }
-
- $output .= '</ul>';
- $output .= "<p class='text-sm mt-4'>Please update these adjustments before approving the invoice.</p>";
-
- return new HtmlString($output);
- })
- ->modalSubmitAction(function (StaticAction $action, self $record) {
- $action->label('Edit Invoice')
- ->url(InvoiceResource\Pages\EditInvoice::getUrl(['record' => $record->id]));
- });
- }
-
- public static function getApproveDraftAction(string $action = Action::class): MountableAction
- {
- return $action::make('approveDraft')
- ->label('Approve')
- ->icon('heroicon-m-check-circle')
- ->visible(function (self $record) {
- return $record->canBeApproved();
- })
- ->requiresConfirmation()
- ->databaseTransaction()
- ->successNotificationTitle('Invoice approved')
- ->action(function (self $record, MountableAction $action, Component $livewire) {
- if ($record->hasInactiveAdjustments()) {
- $isViewPage = $livewire instanceof InvoiceResource\Pages\ViewInvoice;
-
- if (! $isViewPage) {
- redirect(InvoiceResource\Pages\ViewInvoice::getUrl(['record' => $record->id]));
- } else {
- Notification::make()
- ->warning()
- ->title('Cannot approve invoice')
- ->body('This invoice has inactive adjustments that must be addressed first.')
- ->persistent()
- ->send();
- }
- } else {
- $record->approveDraft();
-
- $action->success();
- }
- });
- }
-
- public static function getMarkAsSentAction(string $action = Action::class): MountableAction
- {
- return $action::make('markAsSent')
- ->label('Mark as sent')
- ->icon('heroicon-m-paper-airplane')
- ->visible(static function (self $record) {
- return $record->canBeMarkedAsSent();
- })
- ->successNotificationTitle('Invoice sent')
- ->action(function (self $record, MountableAction $action) {
- $record->markAsSent();
-
- $action->success();
- });
- }
-
- public function markAsSent(?Carbon $sentAt = null): void
- {
- $sentAt ??= now();
-
- $this->update([
- 'status' => InvoiceStatus::Sent,
- 'last_sent_at' => $sentAt,
- ]);
- }
-
- public function markAsViewed(?Carbon $viewedAt = null): void
- {
- $viewedAt ??= now();
-
- $this->update([
- 'status' => InvoiceStatus::Viewed,
- 'last_viewed_at' => $viewedAt,
- ]);
- }
-
- public static function getReplicateAction(string $action = ReplicateAction::class): MountableAction
- {
- return $action::make()
- ->excludeAttributes([
- 'status',
- 'amount_paid',
- 'amount_due',
- 'created_by',
- 'updated_by',
- 'created_at',
- 'updated_at',
- 'invoice_number',
- 'date',
- 'due_date',
- 'approved_at',
- 'paid_at',
- 'last_sent_at',
- 'last_viewed_at',
- ])
- ->modal(false)
- ->beforeReplicaSaved(function (self $original, self $replica) {
- $replica->status = InvoiceStatus::Draft;
- $replica->invoice_number = self::getNextDocumentNumber();
- $replica->date = now();
- $replica->due_date = now()->addDays($original->company->defaultInvoice->payment_terms->getDays());
- })
- ->databaseTransaction()
- ->after(function (self $original, self $replica) {
- $original->replicateLineItems($replica);
- })
- ->successRedirectUrl(static function (self $replica) {
- return InvoiceResource::getUrl('edit', ['record' => $replica]);
- });
- }
-
- public function replicateLineItems(Model $target): void
- {
- $this->lineItems->each(function (DocumentLineItem $lineItem) use ($target) {
- $replica = $lineItem->replicate([
- 'documentable_id',
- 'documentable_type',
- 'subtotal',
- 'total',
- 'created_by',
- 'updated_by',
- 'created_at',
- 'updated_at',
- ]);
-
- $replica->documentable_id = $target->id;
- $replica->documentable_type = $target->getMorphClass();
- $replica->save();
-
- $replica->adjustments()->sync($lineItem->adjustments->pluck('id'));
- });
- }
- }
|