2021-06-25 10:09:57 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2021-06-25 10:09:57 +02:00
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Livewire\RecurringInvoices;
|
|
|
|
|
2022-12-08 22:31:22 +01:00
|
|
|
use App\Models\Invoice;
|
2021-06-25 10:09:57 +02:00
|
|
|
use Livewire\Component;
|
|
|
|
|
|
|
|
class UpdateAutoBilling extends Component
|
|
|
|
{
|
|
|
|
/** @var \App\Models\RecurringInvoice */
|
|
|
|
public $invoice;
|
|
|
|
|
|
|
|
public function updateAutoBilling(): void
|
|
|
|
{
|
2021-08-30 23:44:05 +02:00
|
|
|
if ($this->invoice->auto_bill == 'optin' || $this->invoice->auto_bill == 'optout') {
|
2022-06-21 11:57:17 +02:00
|
|
|
$this->invoice->auto_bill_enabled = ! $this->invoice->auto_bill_enabled;
|
2021-10-14 08:54:38 +02:00
|
|
|
$this->invoice->saveQuietly();
|
2022-12-08 22:31:22 +01:00
|
|
|
|
|
|
|
Invoice::where('recurring_id', $this->invoice->id)
|
|
|
|
->whereIn('status_id', [2,3])
|
2023-02-16 02:36:09 +01:00
|
|
|
->where('is_deleted', 0)
|
2022-12-08 22:31:22 +01:00
|
|
|
->where('balance', '>', 0)
|
|
|
|
->update(['auto_bill_enabled' => $this->invoice->auto_bill_enabled]);
|
2021-06-25 10:09:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function render()
|
|
|
|
{
|
|
|
|
return render('components.livewire.recurring-invoices-switch-autobilling');
|
|
|
|
}
|
|
|
|
}
|