1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 17:31:35 +02:00
invoiceninja/app/Observers/ClientContactObserver.php

108 lines
3.0 KiB
PHP
Raw Normal View History

2019-04-19 11:09:55 +02:00
<?php
2019-05-11 05:32:07 +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;
use App\Models\CreditInvitation;
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)
{
$client_contact_id = $clientContact->id;
$clientContact->invoice_invitations()->delete();
$clientContact->quote_invitations()->delete();
$clientContact->credit_invitations()->delete();
$clientContact->recurring_invoice_invitations()->delete();
//ensure entity state is preserved
2024-01-14 05:05:00 +01:00
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-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-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-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();
}
});
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)
{
//
}
}