mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
43e57d0117
* minor fix for payment notifications * styleci * Limit Self updating to self hosters only : * Fixes for designs * Minor fixes for self-update
42 lines
1.1 KiB
PHP
42 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Services\Credit;
|
|
|
|
use App\Factory\CreditInvitationFactory;
|
|
use App\Models\Credit;
|
|
use App\Models\CreditInvitation;
|
|
use App\Services\AbstractService;
|
|
|
|
class CreateInvitations extends AbstractService
|
|
{
|
|
private $credit;
|
|
|
|
public function __construct(Credit $credit)
|
|
{
|
|
$this->credit = $credit;
|
|
}
|
|
|
|
public function run()
|
|
{
|
|
$contacts = $this->credit->client->contacts;
|
|
|
|
$contacts->each(function ($contact) {
|
|
$invitation = CreditInvitation::whereCompanyId($this->credit->company_id)
|
|
->whereClientContactId($contact->id)
|
|
->whereCreditId($this->credit->id)
|
|
->first();
|
|
|
|
if (!$invitation) {
|
|
$ii = CreditInvitationFactory::create($this->credit->company_id, $this->credit->user_id);
|
|
$ii->credit_id = $this->credit->id;
|
|
$ii->client_contact_id = $contact->id;
|
|
$ii->save();
|
|
} elseif ($invitation && !$contact->send_email) {
|
|
$invitation->delete();
|
|
}
|
|
});
|
|
|
|
return $this->credit;
|
|
}
|
|
}
|