2021-06-25 10:09:57 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
|
*
|
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
|
*
|
2023-01-29 09:21:40 +11: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-09 08:31:22 +11: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-31 07:44:05 +10:00
|
|
|
if ($this->invoice->auto_bill == 'optin' || $this->invoice->auto_bill == 'optout') {
|
2022-06-21 09:57:17 +00:00
|
|
|
$this->invoice->auto_bill_enabled = ! $this->invoice->auto_bill_enabled;
|
2021-10-14 17:54:38 +11:00
|
|
|
$this->invoice->saveQuietly();
|
2022-12-09 08:31:22 +11:00
|
|
|
|
|
|
|
|
Invoice::where('recurring_id', $this->invoice->id)
|
|
|
|
|
->whereIn('status_id', [2,3])
|
2023-02-16 12:36:09 +11:00
|
|
|
->where('is_deleted', 0)
|
2022-12-09 08:31:22 +11: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');
|
|
|
|
|
}
|
|
|
|
|
}
|