2019-04-19 11:09:55 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @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)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 05:32:07 +02:00
|
|
|
*/
|
2019-04-19 11:09:55 +02:00
|
|
|
|
|
|
|
namespace App\Observers;
|
|
|
|
|
|
|
|
use App\Models\ClientContact;
|
2023-01-31 12:21:23 +01:00
|
|
|
use App\Models\CreditInvitation;
|
2023-01-20 05:55:05 +01:00
|
|
|
use App\Models\InvoiceInvitation;
|
|
|
|
use App\Models\QuoteInvitation;
|
|
|
|
use App\Models\RecurringInvoiceInvitation;
|
2019-04-19 11:09:55 +02:00
|
|
|
|
|
|
|
class ClientContactObserver
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Handle the client contact "created" event.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param ClientContact $clientContact
|
2019-04-19 11:09:55 +02:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function created(ClientContact $clientContact)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the client contact "updated" event.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param ClientContact $clientContact
|
2019-04-19 11:09:55 +02:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function updated(ClientContact $clientContact)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the client contact "deleted" event.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param ClientContact $clientContact
|
2019-04-19 11:09:55 +02:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function deleted(ClientContact $clientContact)
|
|
|
|
{
|
2023-01-20 05:55:05 +01:00
|
|
|
$client_contact_id = $clientContact->id;
|
|
|
|
|
2020-08-07 00:13:15 +02:00
|
|
|
$clientContact->invoice_invitations()->delete();
|
|
|
|
$clientContact->quote_invitations()->delete();
|
|
|
|
$clientContact->credit_invitations()->delete();
|
2023-01-14 05:28:35 +01:00
|
|
|
$clientContact->recurring_invoice_invitations()->delete();
|
2023-01-20 05:55:05 +01:00
|
|
|
|
|
|
|
//ensure entity state is preserved
|
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
InvoiceInvitation::withTrashed()->where('client_contact_id', $client_contact_id)->cursor()->each(function ($invite) {
|
|
|
|
if ($invite->invoice()->doesnthave('invitations')) {
|
|
|
|
$invite->invoice->service()->createInvitations();
|
|
|
|
}
|
2023-01-20 05:55:05 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
QuoteInvitation::withTrashed()->where('client_contact_id', $client_contact_id)->cursor()->each(function ($invite) {
|
|
|
|
if ($invite->quote()->doesnthave('invitations')) {
|
|
|
|
$invite->quote->service()->createInvitations();
|
|
|
|
}
|
2023-01-20 05:55:05 +01:00
|
|
|
});
|
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
RecurringInvoiceInvitation::withTrashed()->where('client_contact_id', $client_contact_id)->cursor()->each(function ($invite) {
|
|
|
|
if ($invite->recurring_invoice()->doesnthave('invitations')) {
|
|
|
|
$invite->recurring_invoice->service()->createInvitations();
|
|
|
|
}
|
2023-01-20 05:55:05 +01:00
|
|
|
});
|
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
CreditInvitation::withTrashed()->where('client_contact_id', $client_contact_id)->cursor()->each(function ($invite) {
|
|
|
|
if ($invite->credit()->doesnthave('invitations')) {
|
|
|
|
$invite->credit->service()->createInvitations();
|
|
|
|
}
|
2023-01-31 12:21:23 +01:00
|
|
|
});
|
2019-04-19 11:09:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the client contact "restored" event.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param ClientContact $clientContact
|
2019-04-19 11:09:55 +02:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function restored(ClientContact $clientContact)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the client contact "force deleted" event.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param ClientContact $clientContact
|
2019-04-19 11:09:55 +02:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function forceDeleted(ClientContact $clientContact)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
}
|