mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
commit
43031fd9ce
@ -1 +1 @@
|
|||||||
5.3.91
|
5.3.92
|
@ -41,6 +41,7 @@ use App\Utils\Ninja;
|
|||||||
use App\Utils\PhantomJS\Phantom;
|
use App\Utils\PhantomJS\Phantom;
|
||||||
use App\Utils\Traits\MakesHash;
|
use App\Utils\Traits\MakesHash;
|
||||||
use App\Utils\Traits\MakesInvoiceHtml;
|
use App\Utils\Traits\MakesInvoiceHtml;
|
||||||
|
use App\Utils\Traits\Pdf\PageNumbering;
|
||||||
use Illuminate\Support\Facades\App;
|
use Illuminate\Support\Facades\App;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use Illuminate\Support\Facades\Lang;
|
use Illuminate\Support\Facades\Lang;
|
||||||
@ -51,6 +52,8 @@ class PreviewController extends BaseController
|
|||||||
{
|
{
|
||||||
use MakesHash;
|
use MakesHash;
|
||||||
use MakesInvoiceHtml;
|
use MakesInvoiceHtml;
|
||||||
|
use PageNumbering;
|
||||||
|
|
||||||
|
|
||||||
public function __construct()
|
public function __construct()
|
||||||
{
|
{
|
||||||
@ -157,7 +160,15 @@ class PreviewController extends BaseController
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(config('ninja.invoiceninja_hosted_pdf_generation') || config('ninja.pdf_generator') == 'hosted_ninja'){
|
if(config('ninja.invoiceninja_hosted_pdf_generation') || config('ninja.pdf_generator') == 'hosted_ninja'){
|
||||||
return (new NinjaPdf())->build($maker->getCompiledHTML(true));
|
$pdf = (new NinjaPdf())->build($maker->getCompiledHTML(true));
|
||||||
|
|
||||||
|
$numbered_pdf = $this->pageNumbering($pdf, auth()->user()->company());
|
||||||
|
|
||||||
|
if($numbered_pdf)
|
||||||
|
$pdf = $numbered_pdf;
|
||||||
|
|
||||||
|
return $pdf;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//else
|
//else
|
||||||
@ -285,7 +296,14 @@ class PreviewController extends BaseController
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(config('ninja.invoiceninja_hosted_pdf_generation') || config('ninja.pdf_generator') == 'hosted_ninja'){
|
if(config('ninja.invoiceninja_hosted_pdf_generation') || config('ninja.pdf_generator') == 'hosted_ninja'){
|
||||||
return (new NinjaPdf())->build($maker->getCompiledHTML(true));
|
$pdf = (new NinjaPdf())->build($maker->getCompiledHTML(true));
|
||||||
|
|
||||||
|
$numbered_pdf = $this->pageNumbering($pdf, auth()->user()->company());
|
||||||
|
|
||||||
|
if($numbered_pdf)
|
||||||
|
$pdf = $numbered_pdf;
|
||||||
|
|
||||||
|
return $pdf;
|
||||||
}
|
}
|
||||||
|
|
||||||
$file_path = PreviewPdf::dispatchNow($maker->getCompiledHTML(true), $company);
|
$file_path = PreviewPdf::dispatchNow($maker->getCompiledHTML(true), $company);
|
||||||
@ -354,7 +372,14 @@ class PreviewController extends BaseController
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(config('ninja.invoiceninja_hosted_pdf_generation') || config('ninja.pdf_generator') == 'hosted_ninja'){
|
if(config('ninja.invoiceninja_hosted_pdf_generation') || config('ninja.pdf_generator') == 'hosted_ninja'){
|
||||||
return (new NinjaPdf())->build($maker->getCompiledHTML(true));
|
$pdf = (new NinjaPdf())->build($maker->getCompiledHTML(true));
|
||||||
|
|
||||||
|
$numbered_pdf = $this->pageNumbering($pdf, auth()->user()->company());
|
||||||
|
|
||||||
|
if($numbered_pdf)
|
||||||
|
$pdf = $numbered_pdf;
|
||||||
|
|
||||||
|
return $pdf;
|
||||||
}
|
}
|
||||||
|
|
||||||
$file_path = PreviewPdf::dispatchNow($maker->getCompiledHTML(true), auth()->user()->company());
|
$file_path = PreviewPdf::dispatchNow($maker->getCompiledHTML(true), auth()->user()->company());
|
||||||
@ -443,7 +468,14 @@ class PreviewController extends BaseController
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(config('ninja.invoiceninja_hosted_pdf_generation') || config('ninja.pdf_generator') == 'hosted_ninja'){
|
if(config('ninja.invoiceninja_hosted_pdf_generation') || config('ninja.pdf_generator') == 'hosted_ninja'){
|
||||||
return (new NinjaPdf())->build($maker->getCompiledHTML(true));
|
$pdf = (new NinjaPdf())->build($maker->getCompiledHTML(true));
|
||||||
|
|
||||||
|
$numbered_pdf = $this->pageNumbering($pdf, auth()->user()->company());
|
||||||
|
|
||||||
|
if($numbered_pdf)
|
||||||
|
$pdf = $numbered_pdf;
|
||||||
|
|
||||||
|
return $pdf;
|
||||||
}
|
}
|
||||||
|
|
||||||
$file_path = PreviewPdf::dispatchNow($maker->getCompiledHTML(true), auth()->user()->company());
|
$file_path = PreviewPdf::dispatchNow($maker->getCompiledHTML(true), auth()->user()->company());
|
||||||
|
@ -14,8 +14,8 @@ return [
|
|||||||
'require_https' => env('REQUIRE_HTTPS', true),
|
'require_https' => env('REQUIRE_HTTPS', true),
|
||||||
'app_url' => rtrim(env('APP_URL', ''), '/'),
|
'app_url' => rtrim(env('APP_URL', ''), '/'),
|
||||||
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
|
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
|
||||||
'app_version' => '5.3.91',
|
'app_version' => '5.3.92',
|
||||||
'app_tag' => '5.3.91',
|
'app_tag' => '5.3.92',
|
||||||
'minimum_client_version' => '5.0.16',
|
'minimum_client_version' => '5.0.16',
|
||||||
'terms_version' => '1.0.1',
|
'terms_version' => '1.0.1',
|
||||||
'api_secret' => env('API_SECRET', ''),
|
'api_secret' => env('API_SECRET', ''),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user