mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Working on statements
This commit is contained in:
parent
2e9f912b0b
commit
446c30f37c
@ -148,7 +148,8 @@
|
||||
<p> </p>
|
||||
@endif
|
||||
|
||||
<div class="well" style="background: #eeeeee">
|
||||
<div class="well" style="background: #eeeeee; padding-bottom:30px;">
|
||||
<div class="pull-left">
|
||||
{!! Former::inline_open()->onchange('refreshData()') !!}
|
||||
|
||||
{{ trans('texts.status') }}
|
||||
@ -180,15 +181,28 @@
|
||||
|
||||
|
||||
|
||||
{!! Former::checkbox('show_payments')
|
||||
->text('show_payments') !!}
|
||||
|
||||
@if (empty($extends))
|
||||
{!! Former::checkbox('show_payments')->text('show_payments') !!}
|
||||
|
||||
|
||||
{!! Former::checkbox('show_aging')
|
||||
->text('show_aging')!!}
|
||||
{!! Former::checkbox('show_aging')->text('show_aging') !!}
|
||||
@else
|
||||
{!! Former::checkbox('show_payments')->text('show_payments')->inline() !!}
|
||||
|
||||
{!! Former::checkbox('show_aging')->text('show_aging')->inline() !!}
|
||||
@endif
|
||||
|
||||
{!! Former::close() !!}
|
||||
|
||||
</div>
|
||||
|
||||
@if (! empty($extends))
|
||||
<div class="pull-right">
|
||||
{!! Button::normal(trans('texts.download') . ' ')
|
||||
->withAttributes(['onclick' => 'onDownloadClick()'])
|
||||
->appendIcon(Icon::create('download-alt')) !!}
|
||||
</div>
|
||||
@endif
|
||||
|
||||
</div>
|
||||
|
||||
@include('invoices.pdf', ['account' => Auth::user()->account])
|
||||
|
@ -352,10 +352,11 @@
|
||||
</div>
|
||||
@endif
|
||||
<div class="pull-right">
|
||||
@if ($client->hasRecurringInvoices())
|
||||
{!! Button::primary(strtoupper(trans("texts.recurring")))->asLinkTo(URL::to('/client/invoices/recurring')) !!}
|
||||
@endif
|
||||
{!! Button::success(strtoupper(trans("texts.edit_details")))->asLinkTo(URL::to('/client/details'))->withAttributes(['id' => 'editDetailsButton']) !!}
|
||||
@if ($client->hasRecurringInvoices())
|
||||
{!! Button::primary(strtoupper(trans("texts.recurring")))->asLinkTo(URL::to('/client/invoices/recurring')) !!}
|
||||
@endif
|
||||
{!! Button::primary(strtoupper(trans("texts.view_statement")))->asLinkTo(URL::to('/client/statement')) !!}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user