1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-23 18:01:35 +02:00
invoiceninja/app/views/invoices/view.blade.php

70 lines
2.3 KiB
PHP
Raw Normal View History

2013-11-26 13:45:07 +01:00
@extends('header')
2013-12-08 20:08:17 +01:00
@section('head')
@parent
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>
2013-12-08 20:08:17 +01:00
@stop
2013-11-26 13:45:07 +01:00
@section('content')
2014-01-09 00:22:56 +01:00
@if ($invoice->client->account->isGatewayConfigured())
<div class="pull-right" style="width:270px">
2014-01-06 19:03:00 +01:00
{{ Button::normal('Download PDF', array('onclick' => 'onDownloadClick()', 'class' => 'btn-lg')) }}
2013-12-08 20:08:17 +01:00
{{ Button::primary_link(URL::to('payment/' . $invitation->invitation_key), 'Pay Now', array('class' => 'btn-lg pull-right')) }}
2014-01-09 00:22:56 +01:00
</div>
@else
<div class="pull-right">
2014-01-06 19:03:00 +01:00
{{ Button::primary('Download PDF', array('onclick' => 'onDownloadClick()', 'class' => 'btn-lg')) }}
2014-01-09 00:22:56 +01:00
</div>
@endif
2013-12-08 20:08:17 +01:00
<div class="clearfix"></div><p>&nbsp;</p>
2013-12-31 00:19:17 +01:00
<iframe id="theFrame" frameborder="1" width="100%" height="650" style="display:none;margin: 0 auto"></iframe>
<canvas id="theCanvas" style="display:none;width:100%;border:solid 1px #CCCCCC;"></canvas>
2013-11-26 13:45:07 +01:00
<script type="text/javascript">
$(function() {
2013-12-08 20:08:17 +01:00
window.invoice = {{ $invoice->toJson() }};
2013-11-26 13:45:07 +01:00
@if (file_exists($invoice->client->account->getLogoPath()))
invoice.image = "{{ HTML::image_data($invoice->client->account->getLogoPath()) }}";
invoice.imageWidth = {{ $invoice->client->account->getLogoWidth() }};
invoice.imageHeight = {{ $invoice->client->account->getLogoHeight() }};
@endif
2014-01-06 19:03:00 +01:00
var doc = generatePDF(invoice, true);
2013-11-26 13:45:07 +01:00
var string = doc.output('datauristring');
2013-12-31 10:43:39 +01:00
2013-12-31 00:19:17 +01:00
if (isFirefox || isChrome) {
$('#theFrame').attr('src', string).show();
} else {
var pdfAsArray = convertDataURIToBinary(string);
PDFJS.getDocument(pdfAsArray).then(function getPdfHelloWorld(pdf) {
2013-12-08 20:08:17 +01:00
2013-12-31 00:19:17 +01:00
pdf.getPage(1).then(function getPageHelloWorld(page) {
var scale = 1.5;
var viewport = page.getViewport(scale);
2013-12-08 20:08:17 +01:00
2013-12-31 00:19:17 +01:00
var canvas = document.getElementById('theCanvas');
var context = canvas.getContext('2d');
canvas.height = viewport.height;
canvas.width = viewport.width;
2013-12-08 20:08:17 +01:00
2013-12-31 00:19:17 +01:00
page.render({canvasContext: context, viewport: viewport});
$('#theCanvas').show();
});
});
}
2013-11-26 13:45:07 +01:00
});
2013-12-08 20:08:17 +01:00
function onDownloadClick() {
var doc = generatePDF(invoice);
doc.save('Invoice-' + invoice.invoice_number + '.pdf');
}
2013-11-26 13:45:07 +01:00
</script>
@stop