2014-05-13 23:53:41 +02:00
|
|
|
@extends('public.header')
|
2013-11-26 13:45:07 +01:00
|
|
|
|
2013-12-08 20:08:17 +01:00
|
|
|
@section('head')
|
|
|
|
@parent
|
|
|
|
|
2014-05-13 23:53:41 +02:00
|
|
|
@include('script')
|
|
|
|
|
2014-05-20 23:40:09 +02:00
|
|
|
<link href="{{ asset('vendor/bootstrap/dist/css/bootstrap.min.css') }}" rel="stylesheet" type="text/css"/>
|
2014-05-13 23:53:41 +02:00
|
|
|
|
2014-01-05 15:03:29 +01:00
|
|
|
<script src="{{ asset('js/pdf_viewer.js') }}" type="text/javascript"></script>
|
|
|
|
<script src="{{ asset('js/compatibility.js') }}" type="text/javascript"></script>
|
2014-05-13 23:53:41 +02:00
|
|
|
|
|
|
|
<style type="text/css">
|
|
|
|
body {
|
|
|
|
background-color: #f8f8f8;
|
|
|
|
}
|
|
|
|
</style>
|
2013-12-08 20:08:17 +01:00
|
|
|
@stop
|
|
|
|
|
2013-11-26 13:45:07 +01:00
|
|
|
@section('content')
|
|
|
|
|
2014-05-13 23:53:41 +02:00
|
|
|
<div class="container">
|
|
|
|
|
|
|
|
<p> </p>
|
|
|
|
|
2014-05-25 15:40:09 +02:00
|
|
|
@if ($invoice->client->account->isGatewayConfigured() && !$invoice->isPaid() && !$invoice->is_recurring)
|
2014-05-13 23:53:41 +02:00
|
|
|
<div class="pull-right" style="width:270px">
|
|
|
|
{{ Button::normal(trans('texts.download_pdf'), array('onclick' => 'onDownloadClick()', 'class' => 'btn-lg')) }}
|
|
|
|
{{ Button::success_link(URL::to('payment/' . $invitation->invitation_key), trans('texts.pay_now'), array('class' => 'btn-lg pull-right')) }}
|
|
|
|
</div>
|
|
|
|
@else
|
|
|
|
<div class="pull-right">
|
|
|
|
{{ Button::primary('Download PDF', array('onclick' => 'onDownloadClick()', 'class' => 'btn-lg')) }}
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
<div class="clearfix"></div><p> </p>
|
|
|
|
|
2014-10-12 20:11:41 +02:00
|
|
|
@include('invoices.pdf', ['account' => $invoice->client->account])
|
2014-05-13 23:53:41 +02:00
|
|
|
|
|
|
|
<p> </p>
|
|
|
|
<p> </p>
|
|
|
|
|
2014-10-12 20:11:41 +02:00
|
|
|
</div>
|
2013-11-26 13:45:07 +01:00
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
2014-10-12 20:11:41 +02:00
|
|
|
window.invoice = {{ $invoice->toJson() }};
|
|
|
|
invoice.is_pro = {{ $invoice->client->account->isPro() ? 'true' : 'false' }};
|
|
|
|
invoice.is_quote = {{ $invoice->is_quote ? 'true' : 'false' }};
|
|
|
|
|
|
|
|
function getPDFString() {
|
|
|
|
var doc = generatePDF(invoice, invoice.invoice_design.javascript);
|
2014-01-14 12:52:56 +01:00
|
|
|
if (!doc) return;
|
2014-10-12 20:11:41 +02:00
|
|
|
return doc.output('datauristring');
|
|
|
|
}
|
|
|
|
|
|
|
|
$(function() {
|
|
|
|
refreshPDF();
|
2013-11-26 13:45:07 +01:00
|
|
|
});
|
2014-03-23 13:53:16 +01:00
|
|
|
|
2013-12-08 20:08:17 +01:00
|
|
|
function onDownloadClick() {
|
2014-04-21 23:25:40 +02:00
|
|
|
var doc = generatePDF(invoice, true);
|
2013-12-08 20:08:17 +01:00
|
|
|
doc.save('Invoice-' + invoice.invoice_number + '.pdf');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-26 13:45:07 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
@stop
|