1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Services/Credit/GetCreditPdf.php

41 lines
1001 B
PHP
Raw Normal View History

<?php
namespace App\Services\Credit;
use App\Jobs\Invoice\CreateInvoicePdf;
use App\Services\AbstractService;
use Illuminate\Support\Facades\Storage;
class GetCreditPdf extends AbstractService
{
2020-02-18 21:56:21 +01:00
private $credit;
private $contact;
public function __construct(Credit $credit, ClientContact $contact = null)
{
2020-02-18 21:56:21 +01:00
$this->credit = $credit;
$this->contact = $contact;
}
2020-02-18 21:56:21 +01:00
public function run()
{
2020-02-18 21:56:21 +01:00
if (!$this->contact) {
$this->contact = $this->credit->client->primary_contact()->first();
}
2020-02-18 21:56:21 +01:00
$path = 'public/' . $this->credit->client->id . '/credits/';
$file_path = $path . $this->credit->number . '.pdf';
$disk = config('filesystems.default');
$file = Storage::disk($disk)->exists($file_path);
if (!$file) {
2020-02-18 21:56:21 +01:00
$file_path = CreateInvoicePdf::dispatchNow($this->credit, $this->credit->company, $this->contact);
}
return Storage::disk($disk)->url($file_path);
}
}