| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269 | 
							- <?php
 - 
 - namespace App\Filament\Company\Resources\Sales\InvoiceResource\RelationManagers;
 - 
 - use App\Enums\Accounting\InvoiceStatus;
 - use App\Enums\Accounting\PaymentMethod;
 - use App\Enums\Accounting\TransactionType;
 - use App\Models\Accounting\Invoice;
 - use App\Models\Accounting\Transaction;
 - use App\Models\Banking\BankAccount;
 - use App\Utilities\Currency\CurrencyAccessor;
 - use App\Utilities\Currency\CurrencyConverter;
 - use Closure;
 - use Filament\Forms;
 - use Filament\Forms\Form;
 - use Filament\Resources\RelationManagers\RelationManager;
 - use Filament\Support\Colors\Color;
 - use Filament\Support\Enums\FontWeight;
 - use Filament\Support\Enums\MaxWidth;
 - use Filament\Tables;
 - use Filament\Tables\Table;
 - use Illuminate\Database\Eloquent\Model;
 - 
 - class PaymentsRelationManager extends RelationManager
 - {
 -     protected static string $relationship = 'payments';
 - 
 -     protected static ?string $modelLabel = 'Payment';
 - 
 -     protected static bool $isLazy = false;
 - 
 -     protected $listeners = [
 -         'refresh' => '$refresh',
 -     ];
 - 
 -     public function isReadOnly(): bool
 -     {
 -         return false;
 -     }
 - 
 -     public static function canViewForRecord(Model $ownerRecord, string $pageClass): bool
 -     {
 -         return $ownerRecord->status !== InvoiceStatus::Draft;
 -     }
 - 
 -     public function form(Form $form): Form
 -     {
 -         return $form
 -             ->columns(1)
 -             ->schema([
 -                 Forms\Components\DatePicker::make('posted_at')
 -                     ->label('Date'),
 -                 Forms\Components\Grid::make()
 -                     ->schema([
 -                         Forms\Components\Select::make('bank_account_id')
 -                             ->label('Account')
 -                             ->required()
 -                             ->live()
 -                             ->options(function () {
 -                                 return BankAccount::query()
 -                                     ->join('accounts', 'bank_accounts.account_id', '=', 'accounts.id')
 -                                     ->select(['bank_accounts.id', 'accounts.name', 'accounts.currency_code'])
 -                                     ->get()
 -                                     ->mapWithKeys(function ($account) {
 -                                         $label = $account->name;
 -                                         if ($account->currency_code) {
 -                                             $label .= " ({$account->currency_code})";
 -                                         }
 - 
 -                                         return [$account->id => $label];
 -                                     })
 -                                     ->toArray();
 -                             })
 -                             ->searchable(),
 -                         Forms\Components\TextInput::make('amount')
 -                             ->label('Amount')
 -                             ->required()
 -                             ->money(function (RelationManager $livewire) {
 -                                 /** @var Invoice $invoice */
 -                                 $invoice = $livewire->getOwnerRecord();
 - 
 -                                 return $invoice->currency_code;
 -                             })
 -                             ->live(onBlur: true)
 -                             ->helperText(function (RelationManager $livewire, $state, ?Transaction $record) {
 -                                 /** @var Invoice $ownerRecord */
 -                                 $ownerRecord = $livewire->getOwnerRecord();
 - 
 -                                 $invoiceCurrency = $ownerRecord->currency_code;
 - 
 -                                 if (! CurrencyConverter::isValidAmount($state, 'USD')) {
 -                                     return null;
 -                                 }
 - 
 -                                 $amountDue = $ownerRecord->amount_due;
 - 
 -                                 $amount = CurrencyConverter::convertToCents($state, 'USD');
 - 
 -                                 if ($amount <= 0) {
 -                                     return 'Please enter a valid positive amount';
 -                                 }
 - 
 -                                 $currentPaymentAmount = $record?->amount ?? 0;
 - 
 -                                 if ($ownerRecord->status === InvoiceStatus::Overpaid) {
 -                                     $newAmountDue = $amountDue + $amount - $currentPaymentAmount;
 -                                 } else {
 -                                     $newAmountDue = $amountDue - $amount + $currentPaymentAmount;
 -                                 }
 - 
 -                                 return match (true) {
 -                                     $newAmountDue > 0 => 'Amount due after payment will be ' . CurrencyConverter::formatCentsToMoney($newAmountDue, $invoiceCurrency),
 -                                     $newAmountDue === 0 => 'Invoice will be fully paid',
 -                                     default => 'Invoice will be overpaid by ' . CurrencyConverter::formatCentsToMoney(abs($newAmountDue), $invoiceCurrency),
 -                                 };
 -                             })
 -                             ->rules([
 -                                 static fn (RelationManager $livewire): Closure => static function (string $attribute, $value, Closure $fail) use ($livewire) {
 -                                     /** @var Invoice $invoice */
 -                                     $invoice = $livewire->getOwnerRecord();
 - 
 -                                     if (! CurrencyConverter::isValidAmount($value, $invoice->currency_code)) {
 -                                         $fail('Please enter a valid amount');
 -                                     }
 -                                 },
 -                             ]),
 -                     ])->columns(2),
 -                 Forms\Components\Placeholder::make('currency_conversion')
 -                     ->label('Currency Conversion')
 -                     ->content(function (Forms\Get $get, RelationManager $livewire) {
 -                         $amount = $get('amount');
 -                         $bankAccountId = $get('bank_account_id');
 - 
 -                         /** @var Invoice $invoice */
 -                         $invoice = $livewire->getOwnerRecord();
 -                         $invoiceCurrency = $invoice->currency_code;
 - 
 -                         if (empty($amount) || empty($bankAccountId) || ! CurrencyConverter::isValidAmount($amount, 'USD')) {
 -                             return null;
 -                         }
 - 
 -                         $bankAccount = BankAccount::with('account')->find($bankAccountId);
 -                         if (! $bankAccount) {
 -                             return null;
 -                         }
 - 
 -                         $bankCurrency = $bankAccount->account->currency_code ?? CurrencyAccessor::getDefaultCurrency();
 - 
 -                         // If currencies are the same, no conversion needed
 -                         if ($invoiceCurrency === $bankCurrency) {
 -                             return null;
 -                         }
 - 
 -                         // Convert amount from invoice currency to bank currency
 -                         $amountInInvoiceCurrencyCents = CurrencyConverter::convertToCents($amount, 'USD');
 -                         $amountInBankCurrencyCents = CurrencyConverter::convertBalance(
 -                             $amountInInvoiceCurrencyCents,
 -                             $invoiceCurrency,
 -                             $bankCurrency
 -                         );
 - 
 -                         $formattedBankAmount = CurrencyConverter::formatCentsToMoney($amountInBankCurrencyCents, $bankCurrency);
 - 
 -                         return "Payment will be recorded as {$formattedBankAmount} in the bank account's currency ({$bankCurrency}).";
 -                     })
 -                     ->hidden(function (Forms\Get $get, RelationManager $livewire) {
 -                         $bankAccountId = $get('bank_account_id');
 -                         if (empty($bankAccountId)) {
 -                             return true;
 -                         }
 - 
 -                         /** @var Invoice $invoice */
 -                         $invoice = $livewire->getOwnerRecord();
 -                         $invoiceCurrency = $invoice->currency_code;
 - 
 -                         $bankAccount = BankAccount::with('account')->find($bankAccountId);
 -                         if (! $bankAccount) {
 -                             return true;
 -                         }
 - 
 -                         $bankCurrency = $bankAccount->account->currency_code ?? CurrencyAccessor::getDefaultCurrency();
 - 
 -                         // Hide if currencies are the same
 -                         return $invoiceCurrency === $bankCurrency;
 -                     }),
 -                 Forms\Components\Select::make('payment_method')
 -                     ->label('Payment method')
 -                     ->required()
 -                     ->options(PaymentMethod::class),
 -                 Forms\Components\Textarea::make('notes')
 -                     ->label('Notes'),
 -             ]);
 -     }
 - 
 -     public function table(Table $table): Table
 -     {
 -         return $table
 -             ->recordTitleAttribute('description')
 -             ->columns([
 -                 Tables\Columns\TextColumn::make('posted_at')
 -                     ->label('Date')
 -                     ->sortable()
 -                     ->defaultDateFormat(),
 -                 Tables\Columns\TextColumn::make('type')
 -                     ->label('Type')
 -                     ->sortable()
 -                     ->toggleable(isToggledHiddenByDefault: true),
 -                 Tables\Columns\TextColumn::make('description')
 -                     ->label('Description')
 -                     ->limit(30)
 -                     ->toggleable(),
 -                 Tables\Columns\TextColumn::make('bankAccount.account.name')
 -                     ->label('Account')
 -                     ->toggleable(),
 -                 Tables\Columns\TextColumn::make('amount')
 -                     ->label('Amount')
 -                     ->weight(static fn (Transaction $transaction) => $transaction->reviewed ? null : FontWeight::SemiBold)
 -                     ->color(
 -                         static fn (Transaction $transaction) => match ($transaction->type) {
 -                             TransactionType::Deposit => Color::rgb('rgb(' . Color::Green[700] . ')'),
 -                             TransactionType::Journal => 'primary',
 -                             default => null,
 -                         }
 -                     )
 -                     ->sortable()
 -                     ->currency(static fn (Transaction $transaction) => $transaction->bankAccount?->account->currency_code ?? CurrencyAccessor::getDefaultCurrency()),
 -             ])
 -             ->filters([
 -                 //
 -             ])
 -             ->headerActions([
 -                 Tables\Actions\CreateAction::make()
 -                     ->label(fn () => $this->getOwnerRecord()->status === InvoiceStatus::Overpaid ? 'Refund Overpayment' : 'Record Payment')
 -                     ->modalHeading(fn (Tables\Actions\CreateAction $action) => $action->getLabel())
 -                     ->modalWidth(MaxWidth::TwoExtraLarge)
 -                     ->visible(function () {
 -                         return $this->getOwnerRecord()->canRecordPayment();
 -                     })
 -                     ->mountUsing(function (Form $form) {
 -                         $record = $this->getOwnerRecord();
 -                         $form->fill([
 -                             'posted_at' => now(),
 -                             'amount' => $record->status === InvoiceStatus::Overpaid ? ltrim($record->amount_due, '-') : $record->amount_due,
 -                         ]);
 -                     })
 -                     ->databaseTransaction()
 -                     ->successNotificationTitle('Payment recorded')
 -                     ->action(function (Tables\Actions\CreateAction $action, array $data) {
 -                         /** @var Invoice $record */
 -                         $record = $this->getOwnerRecord();
 - 
 -                         $record->recordPayment($data);
 - 
 -                         $action->success();
 - 
 -                         $this->dispatch('refresh');
 -                     }),
 -             ])
 -             ->actions([
 -                 Tables\Actions\DeleteAction::make()
 -                     ->after(fn () => $this->dispatch('refresh')),
 -             ])
 -             ->bulkActions([
 -                 Tables\Actions\BulkActionGroup::make([
 -                     Tables\Actions\DeleteBulkAction::make(),
 -                 ]),
 -             ]);
 -     }
 - }
 
 
  |