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

66 lines
1.6 KiB
PHP
Raw Normal View History

2020-03-03 10:51:05 +01:00
<?php
2020-07-01 03:06:40 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
2020-07-01 03:06:40 +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)
2020-07-01 03:06:40 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2020-07-01 03:06:40 +02:00
*/
2020-03-03 10:51:05 +01:00
namespace App\Services\Credit;
use App\Events\Credit\CreditWasMarkedSent;
use App\Models\Credit;
use App\Models\Webhook;
2020-07-08 14:02:16 +02:00
use App\Utils\Ninja;
2020-03-03 10:51:05 +01:00
class MarkSent
{
private $client;
private $credit;
public function __construct($client, $credit)
2020-03-03 10:51:05 +01:00
{
$this->client = $client;
$this->credit = $credit;
2020-03-03 10:51:05 +01:00
}
2024-01-03 12:06:52 +01:00
public function run($fire_event = false)
2020-03-03 10:51:05 +01:00
{
/* Return immediately if status is not draft */
if ($this->credit->status_id != Credit::STATUS_DRAFT) {
return $this->credit;
2020-03-03 10:51:05 +01:00
}
$this->credit->markInvitationsSent();
2020-03-03 10:51:05 +01:00
$this->credit
->service()
->setStatus(Credit::STATUS_SENT)
->applyNumber()
2020-12-02 12:01:50 +01:00
->adjustBalance($this->credit->amount)
2023-09-05 03:54:05 +02:00
// ->deletePdf()
->save();
2020-03-03 10:51:05 +01:00
2022-08-22 00:24:36 +02:00
$this->client
->service()
->adjustCreditBalance($this->credit->amount)
->save();
2021-12-17 12:11:36 +01:00
event(new CreditWasMarkedSent($this->credit, $this->credit->company, Ninja::eventVars(auth()->user() ? auth()->user()->id : null)));
2020-10-08 05:31:02 +02:00
2024-01-03 12:06:52 +01:00
if($fire_event) {
2024-01-14 05:05:00 +01:00
2024-01-03 12:06:52 +01:00
event('eloquent.updated: App\Models\Credit', $this->credit);
$this->credit->sendEvent(Webhook::EVENT_SENT_CREDIT);
}
return $this->credit;
2024-01-03 12:06:52 +01:00
2020-03-03 10:51:05 +01:00
}
}