1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/resources/views/invoices/view.blade.php

89 lines
2.9 KiB
PHP
Raw Normal View History

2015-03-16 22:45:25 +01:00
@extends('public.header')
@section('head')
@parent
@include('script')
2015-10-18 09:30:28 +02:00
<script src="{{ asset('js/pdf.built.js') }}" type="text/javascript"></script>
2015-03-16 22:45:25 +01:00
<style type="text/css">
body {
background-color: #f8f8f8;
}
</style>
@stop
@section('content')
<div class="container">
<p>&nbsp;</p>
<div class="pull-right" style="text-align:right">
@if ($invoice->is_quote)
2015-04-02 15:06:16 +02:00
{!! Button::normal(trans('texts.download_pdf'))->withAttributes(['onclick' => 'onDownloadClick()'])->large() !!}&nbsp;&nbsp;
2015-09-07 11:07:55 +02:00
@if ($showApprove)
2015-05-19 21:14:00 +02:00
{!! Button::success(trans('texts.approve'))->asLinkTo(URL::to('/approve/' . $invitation->invitation_key))->large() !!}
2015-03-16 22:45:25 +01:00
@endif
@elseif ($invoice->client->account->isGatewayConfigured() && !$invoice->isPaid() && !$invoice->is_recurring)
{!! Button::normal(trans('texts.download_pdf'))->withAttributes(['onclick' => 'onDownloadClick()'])->large() !!}&nbsp;&nbsp;
2015-04-15 18:35:41 +02:00
@if (count($paymentTypes) > 1)
{!! DropdownButton::success(trans('texts.pay_now'))->withContents($paymentTypes)->large() !!}
2015-03-16 22:45:25 +01:00
@else
2015-10-13 09:11:44 +02:00
<a href='{!! $paymentURL !!}' class="btn btn-success btn-lg">{{ trans('texts.pay_now') }}</a>
2015-04-15 18:35:41 +02:00
@endif
2015-03-16 22:45:25 +01:00
@else
{!! Button::normal('Download PDF')->withAttributes(['onclick' => 'onDownloadClick()'])->large() !!}
2015-03-16 22:45:25 +01:00
@endif
</div>
<div class="clearfix"></div><p>&nbsp;</p>
<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
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>
@include('invoices.pdf', ['account' => $invoice->client->account])
<p>&nbsp;</p>
<p>&nbsp;</p>
</div>
2015-03-27 10:32:45 +01:00
@stop