2015-03-16 22:45:25 +01:00
|
|
|
@extends('public.header')
|
|
|
|
|
|
|
|
@section('head')
|
|
|
|
@parent
|
|
|
|
|
2015-12-07 14:34:55 +01:00
|
|
|
@include('money_script')
|
2015-03-16 22:45:25 +01:00
|
|
|
|
2016-01-07 08:08:30 +01:00
|
|
|
@foreach ($invoice->client->account->getFontFolders() as $font)
|
|
|
|
<script src="{{ asset('js/vfs_fonts/'.$font.'.js') }}" type="text/javascript"></script>
|
|
|
|
@endforeach
|
2016-01-31 20:36:50 +01:00
|
|
|
<script src="{{ asset('pdf.built.js') }}" type="text/javascript"></script>
|
2015-10-18 09:30:28 +02:00
|
|
|
|
2015-03-16 22:45:25 +01:00
|
|
|
<style type="text/css">
|
|
|
|
body {
|
|
|
|
background-color: #f8f8f8;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
@stop
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
|
2016-01-18 09:30:42 +01:00
|
|
|
@if ($checkoutComToken)
|
|
|
|
@include('partials.checkout_com_payment')
|
|
|
|
@else
|
|
|
|
<p> </p>
|
|
|
|
<div class="pull-right" style="text-align:right">
|
|
|
|
@if ($invoice->is_quote)
|
|
|
|
{!! Button::normal(trans('texts.download_pdf'))->withAttributes(['onclick' => 'onDownloadClick()'])->large() !!}
|
|
|
|
@if ($showApprove)
|
|
|
|
{!! Button::success(trans('texts.approve'))->asLinkTo(URL::to('/approve/' . $invitation->invitation_key))->large() !!}
|
|
|
|
@endif
|
|
|
|
@elseif ($invoice->client->account->isGatewayConfigured() && !$invoice->isPaid() && !$invoice->is_recurring)
|
|
|
|
{!! Button::normal(trans('texts.download_pdf'))->withAttributes(['onclick' => 'onDownloadClick()'])->large() !!}
|
|
|
|
@if (count($paymentTypes) > 1)
|
|
|
|
{!! DropdownButton::success(trans('texts.pay_now'))->withContents($paymentTypes)->large() !!}
|
|
|
|
@else
|
|
|
|
<a href='{!! $paymentURL !!}' class="btn btn-success btn-lg">{{ trans('texts.pay_now') }}</a>
|
|
|
|
@endif
|
|
|
|
@else
|
|
|
|
{!! Button::normal('Download PDF')->withAttributes(['onclick' => 'onDownloadClick()'])->large() !!}
|
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
@endif
|
2015-03-16 22:45:25 +01:00
|
|
|
|
|
|
|
<div class="clearfix"></div><p> </p>
|
2016-03-23 23:40:42 +01:00
|
|
|
@if ($account->isPro() && $account->invoice_embed_documents)
|
|
|
|
@foreach ($invoice->documents as $document)
|
|
|
|
<script src="{{ $document->getClientVFSJSUrl() }}" type="text/javascript" {{ Input::has('phantomjs')?'':'async' }}></script>
|
|
|
|
@endforeach
|
|
|
|
@endif
|
2015-03-16 22:45:25 +01:00
|
|
|
<script type="text/javascript">
|
|
|
|
|
2015-03-31 19:42:37 +02:00
|
|
|
window.invoice = {!! $invoice->toJson() !!};
|
2015-03-16 22:45:25 +01:00
|
|
|
invoice.is_pro = {{ $invoice->client->account->isPro() ? 'true' : 'false' }};
|
|
|
|
invoice.is_quote = {{ $invoice->is_quote ? 'true' : 'false' }};
|
2015-03-31 19:42:37 +02:00
|
|
|
invoice.contact = {!! $contact->toJson() !!};
|
2015-03-16 22:45:25 +01:00
|
|
|
|
2015-04-14 13:07:50 +02:00
|
|
|
function getPDFString(cb) {
|
2015-09-17 21:01:06 +02:00
|
|
|
return generatePDF(invoice, invoice.invoice_design.javascript, true, cb);
|
2015-03-16 22:45:25 +01:00
|
|
|
}
|
|
|
|
|
2015-11-21 22:10:26 +01:00
|
|
|
if (window.hasOwnProperty('pjsc_meta')) {
|
|
|
|
window['pjsc_meta'].remainingTasks++;
|
|
|
|
}
|
|
|
|
|
2015-03-16 22:45:25 +01:00
|
|
|
$(function() {
|
2015-09-17 21:01:06 +02:00
|
|
|
@if (Input::has('phantomjs'))
|
|
|
|
doc = getPDFString();
|
|
|
|
doc.getDataUrl(function(pdfString) {
|
|
|
|
document.write(pdfString);
|
|
|
|
document.close();
|
2015-11-21 22:10:26 +01:00
|
|
|
|
|
|
|
if (window.hasOwnProperty('pjsc_meta')) {
|
|
|
|
window['pjsc_meta'].remainingTasks--;
|
|
|
|
}
|
2015-09-17 21:01:06 +02:00
|
|
|
});
|
|
|
|
@else
|
|
|
|
refreshPDF();
|
|
|
|
@endif
|
2015-03-16 22:45:25 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
function onDownloadClick() {
|
|
|
|
var doc = generatePDF(invoice, invoice.invoice_design.javascript, true);
|
2015-04-27 14:28:40 +02:00
|
|
|
var fileName = invoice.is_quote ? invoiceLabels.quote : invoiceLabels.invoice;
|
2015-03-16 22:45:25 +01:00
|
|
|
doc.save(fileName + '-' + invoice.invoice_number + '.pdf');
|
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
2016-02-14 19:14:24 +01:00
|
|
|
@include('invoices.pdf', ['account' => $invoice->client->account, 'viewPDF' => true])
|
2015-03-16 22:45:25 +01:00
|
|
|
|
|
|
|
<p> </p>
|
|
|
|
<p> </p>
|
|
|
|
|
2016-03-23 23:40:42 +01:00
|
|
|
</div>
|
2015-03-27 10:32:45 +01:00
|
|
|
@stop
|