mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 05:57:44 -04:00 
			
		
		
		
	* Remove unnecessary save() on invoice * Update copyright * Working on Credit Repository * Implement credits as a paymentable entity * Add credit_id to transformer * fix rules for update payment * Fix random deleted_at keys in transformers * Fix for password_protect check
		
			
				
	
	
		
			92 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			92 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Invoice Ninja (https://invoiceninja.com)
 | |
|  *
 | |
|  * @link https://github.com/invoiceninja/invoiceninja source repository
 | |
|  *
 | |
|  * @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
 | |
|  *
 | |
|  * @license https://opensource.org/licenses/AAL
 | |
|  */
 | |
| 
 | |
| namespace App\Jobs\Invoice;
 | |
| 
 | |
| use App\Libraries\MultiDB;
 | |
| use App\Models\Company;
 | |
| use App\Models\Invoice;
 | |
| use App\Models\Payment;
 | |
| use App\Models\PaymentTerm;
 | |
| use App\Repositories\InvoiceRepository;
 | |
| use App\Utils\Traits\MakesInvoiceHtml;
 | |
| use App\Utils\Traits\NumberFormatter;
 | |
| use Illuminate\Bus\Queueable;
 | |
| use Illuminate\Contracts\Queue\ShouldQueue;
 | |
| use Illuminate\Foundation\Bus\Dispatchable;
 | |
| use Illuminate\Queue\InteractsWithQueue;
 | |
| use Illuminate\Queue\SerializesModels;
 | |
| use Illuminate\Support\Carbon;
 | |
| use Illuminate\Support\Facades\Log;
 | |
| use Illuminate\Support\Facades\Storage;
 | |
| use Spatie\Browsershot\Browsershot;
 | |
| use Symfony\Component\Debug\Exception\FatalThrowableError;
 | |
| 
 | |
| class CreateInvoicePdf implements ShouldQueue
 | |
| {
 | |
|     use Dispatchable, InteractsWithQueue, Queueable, SerializesModels, NumberFormatter, MakesInvoiceHtml;
 | |
| 
 | |
|     public $invoice;
 | |
| 
 | |
|     public $company;
 | |
|     /**
 | |
|      * Create a new job instance.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     public function __construct(Invoice $invoice, Company $company)
 | |
|     {
 | |
|         $this->invoice = $invoice;
 | |
| 
 | |
|         $this->company = $company;
 | |
|     }
 | |
| 
 | |
|     public function handle()
 | |
|     {
 | |
|         MultiDB::setDB($this->company->db);
 | |
| 
 | |
|         $this->invoice->load('client');
 | |
|         $path = 'public/' . $this->invoice->client->client_hash . '/invoices/';
 | |
|         $file_path = $path . $this->invoice->number . '.pdf';
 | |
| 
 | |
|         //get invoice design
 | |
|         $html = $this->generateInvoiceHtml($this->invoice->design(), $this->invoice);
 | |
| 
 | |
|         //todo - move this to the client creation stage so we don't keep hitting this unnecessarily
 | |
|         Storage::makeDirectory($path, 0755);
 | |
| 
 | |
|         //create pdf
 | |
|         $pdf = $this->makePdf(null, null, $html);
 | |
| 
 | |
|         $path = Storage::put($file_path, $pdf);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Returns a PDF stream
 | |
|      *
 | |
|      * @param  string $header Header to be included in PDF
 | |
|      * @param  string $footer Footer to be included in PDF
 | |
|      * @param  string $html   The HTML object to be converted into PDF
 | |
|      *
 | |
|      * @return string        The PDF string
 | |
|      */
 | |
|     private function makePdf($header, $footer, $html)
 | |
|     {
 | |
|         return Browsershot::html($html)
 | |
|             //->showBrowserHeaderAndFooter()
 | |
|             //->headerHtml($header)
 | |
|             //->footerHtml($footer)
 | |
|             ->waitUntilNetworkIdle(false)->pdf();
 | |
|         //->margins(10,10,10,10)
 | |
|             //->savePdf('test.pdf');
 | |
|     }
 | |
| }
 |