1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-23 01:41:34 +02:00
invoiceninja/app/Livewire/BillingPortal/Payments/Methods.php

73 lines
1.9 KiB
PHP
Raw Normal View History

2024-02-15 19:33:34 +01:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Livewire\BillingPortal\Payments;
use Livewire\Component;
2024-02-17 00:09:59 +01:00
use App\Models\Subscription;
use Illuminate\Support\Facades\Cache;
2024-02-15 19:33:34 +01:00
class Methods extends Component
{
public Subscription $subscription;
public array $context;
public array $methods;
public function mount(): void
{
$total = collect($this->context['products'])->sum('total_raw');
$methods = auth()->guard('contact')->user()->client->service()->getPaymentMethods(
$total,
);
$this->methods = $methods;
}
public function handleSelect(string $company_gateway_id, string $gateway_type_id)
{
2024-02-17 00:09:59 +01:00
$this->dispatch('purchase.context', property: 'client_id', value: auth()->guard('contact')->user()->client->hashed_id);
nlog($this->context);
$invoice = $this->subscription
->calc()
->buildPurchaseInvoice($this->context)
->service()
->fillDefaults()
->adjustInventory()
->save();
Cache::put($this->hash, [
'subscription_id' => $this->subscription->hashed_id,
'email' => auth()->guard('contact')->user()->email,
'client_id' => auth()->guard('contact')->user()->client->hashed_id,
'invoice_id' => $invoice->hashed_id,
'context' => 'purchase',
'campaign' => $this->context['campaign'],
'bundle' => $this->context['bundle'],
], now()->addMinutes(60));
2024-02-15 19:33:34 +01:00
}
public function render()
{
return view('billing-portal.v3.payments.methods');
}
}