'date', 'due_date' => 'date', 'paid_at' => 'datetime', 'status' => BillStatus::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, ]; public function vendor(): BelongsTo { return $this->belongsTo(Vendor::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 initialTransaction(): MorphOne { return $this->morphOne(Transaction::class, 'transactionable') ->where('type', TransactionType::Journal); } public static function documentType(): DocumentType { return DocumentType::Bill; } public function documentNumber(): ?string { return $this->bill_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; } protected function isCurrentlyOverdue(): Attribute { return Attribute::get(function () { return $this->due_date->isBefore(today()) && $this->canBeOverdue(); }); } public function wasInitialized(): bool { return $this->hasInitialTransaction(); } public function isPaid(): bool { return $this->paid_at !== null; } public function canBeOverdue(): bool { return in_array($this->status, BillStatus::canBeOverdue()); } public function canRecordPayment(): bool { return ! in_array($this->status, [ BillStatus::Paid, BillStatus::Void, ]) && $this->currency_code === CurrencyAccessor::getDefaultCurrency(); } public function hasPayments(): bool { return $this->payments->isNotEmpty(); } 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.'); } $defaultBillSettings = $company->defaultBill; $numberPrefix = $defaultBillSettings->number_prefix ?? ''; $latestDocument = static::query() ->whereNotNull('bill_number') ->latest('bill_number') ->first(); $lastNumberNumericPart = $latestDocument ? (int) substr($latestDocument->bill_number, strlen($numberPrefix)) : DocumentDefault::getBaseNumber(); $numberNext = $lastNumberNumericPart + 1; return $defaultBillSettings->getNumberNext( prefix: $numberPrefix, next: $numberNext ); } public function hasInitialTransaction(): bool { return $this->initialTransaction()->exists(); } public function scopeUnpaid(Builder $query): Builder { return $query->whereIn('status', [ BillStatus::Open, BillStatus::Partial, BillStatus::Overdue, ]); } public function recordPayment(array $data): void { $transactionType = TransactionType::Withdrawal; $transactionDescription = "Bill #{$this->bill_number}: Payment to {$this->vendor->name}"; // Add multi-currency handling $bankAccount = BankAccount::findOrFail($data['bank_account_id']); $bankAccountCurrency = $bankAccount->account->currency_code ?? CurrencyAccessor::getDefaultCurrency(); $billCurrency = $this->currency_code; $requiresConversion = $billCurrency !== $bankAccountCurrency; if ($requiresConversion) { $amountInBillCurrencyCents = CurrencyConverter::convertToCents($data['amount'], $billCurrency); $amountInBankCurrencyCents = CurrencyConverter::convertBalance( $amountInBillCurrencyCents, $billCurrency, $bankAccountCurrency ); $formattedAmountForBankCurrency = CurrencyConverter::convertCentsToFormatSimple( $amountInBankCurrencyCents, $bankAccountCurrency ); } else { $formattedAmountForBankCurrency = $data['amount']; // Already in simple format } // Create transaction with converted amount $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::getAccountsPayableAccount()->id, 'description' => $transactionDescription, 'notes' => $data['notes'] ?? null, ]); } public function createInitialTransaction(?Carbon $postedAt = null): void { $postedAt ??= $this->date; $total = $this->formatAmountToDefaultCurrency($this->getRawOriginal('total')); $transaction = $this->transactions()->create([ 'company_id' => $this->company_id, 'type' => TransactionType::Journal, 'posted_at' => $postedAt, 'amount' => $total, 'description' => 'Bill Creation for Bill #' . $this->bill_number, ]); $baseDescription = "{$this->vendor->name}: Bill #{$this->bill_number}"; $transaction->journalEntries()->create([ 'company_id' => $this->company_id, 'type' => JournalEntryType::Credit, 'account_id' => Account::getAccountsPayableAccount()->id, 'amount' => $total, 'description' => $baseDescription, ]); $totalLineItemSubtotalCents = $this->convertAmountToDefaultCurrency((int) $this->lineItems()->sum('subtotal')); $billDiscountTotalCents = $this->convertAmountToDefaultCurrency((int) $this->getRawOriginal('discount_total')); $remainingDiscountCents = $billDiscountTotalCents; 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::Debit, 'account_id' => $lineItem->offering->expense_account_id, 'amount' => $lineItemSubtotal, 'description' => $lineItemDescription, ]); foreach ($lineItem->adjustments as $adjustment) { $adjustmentAmount = $this->formatAmountToDefaultCurrency($lineItem->calculateAdjustmentTotalAmount($adjustment)); if ($adjustment->isNonRecoverablePurchaseTax()) { $transaction->journalEntries()->create([ 'company_id' => $this->company_id, 'type' => JournalEntryType::Debit, 'account_id' => $lineItem->offering->expense_account_id, 'amount' => $adjustmentAmount, 'description' => "{$lineItemDescription} ({$adjustment->name})", ]); } elseif ($adjustment->account_id) { $transaction->journalEntries()->create([ 'company_id' => $this->company_id, 'type' => $adjustment->category->isDiscount() ? JournalEntryType::Credit : JournalEntryType::Debit, '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) * $billDiscountTotalCents ); $remainingDiscountCents -= $lineItemDiscount; } if ($lineItemDiscount > 0) { $transaction->journalEntries()->create([ 'company_id' => $this->company_id, 'type' => JournalEntryType::Credit, 'account_id' => Account::getPurchaseDiscountAccount()->id, 'amount' => CurrencyConverter::convertCentsToFormatSimple($lineItemDiscount), 'description' => "{$lineItemDescription} (Proportional Discount)", ]); } } } } public function updateInitialTransaction(): void { $transaction = $this->initialTransaction; if ($transaction) { $transaction->delete(); } $this->createInitialTransaction(); } 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); } 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', 'bill_number', 'date', 'due_date', 'paid_at', ]) ->modal(false) ->beforeReplicaSaved(function (self $original, self $replica) { $replica->status = BillStatus::Open; $replica->bill_number = self::getNextDocumentNumber(); $replica->date = now(); $replica->due_date = now()->addDays($original->company->defaultBill->payment_terms->getDays()); }) ->databaseTransaction() ->after(function (self $original, self $replica) { $original->replicateLineItems($replica); }) ->successRedirectUrl(static function (self $replica) { return BillResource::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')); }); } }