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

156 lines
4.3 KiB
PHP
Raw Normal View History

2013-11-26 13:45:07 +01:00
@extends('header')
2013-12-07 19:45:00 +01:00
@section('content')
2013-11-29 13:09:21 +01:00
2013-11-26 13:45:07 +01:00
<div class="pull-right">
2013-12-03 18:32:33 +01:00
{{ Former::open('clients/bulk')->addClass('mainForm') }}
<div style="display:none">
{{ Former::text('action') }}
2013-12-04 17:20:14 +01:00
{{ Former::text('id')->value($client->public_id) }}
2013-12-03 18:32:33 +01:00
</div>
{{ DropdownButton::normal('Edit Client',
Navigation::links(
2013-12-09 10:38:49 +01:00
[
['Edit Client', URL::to('clients/' . $client->public_id . '/edit')],
[Navigation::DIVIDER],
['Archive Client', "javascript:onArchiveClick()"],
['Delete Client', "javascript:onDeleteClick()"],
]
2013-12-03 18:32:33 +01:00
)
2013-12-09 10:38:49 +01:00
, ['id'=>'normalDropDown'])->split(); }}
{{ DropdownButton::primary('Create Invoice',
Navigation::links(
[
['Create Invoice', URL::to('invoices/create/' . $client->public_id )],
['Create Payment', URL::to('payments/create/' . $client->public_id )],
['Create Credit', URL::to('credits/create/' . $client->public_id )],
]
)
, ['id'=>'primaryDropDown'])->split(); }}
2013-12-03 18:32:33 +01:00
{{ Former::close() }}
2013-11-26 13:45:07 +01:00
</div>
2013-11-29 13:09:21 +01:00
<h2>{{ $client->name }}</h2>
2013-12-03 18:32:33 +01:00
@if ($client->last_login > 0)
<h3 style="margin-top:0px"><small>
2013-12-07 21:33:07 +01:00
Last logged in {{ Utils::timestampToDateTimeString($client->last_login); }}
2013-12-03 18:32:33 +01:00
</small></h3>
@endif
2013-11-29 13:09:21 +01:00
<div class="row">
<div class="col-md-3">
<h3>Details</h3>
<p>{{ $client->getAddress() }}</p>
<p>{{ $client->getPhone() }}</p>
<p>{{ $client->getNotes() }}</p>
</div>
<div class="col-md-3">
<h3>Contacts</h3>
@foreach ($client->contacts as $contact)
{{ $contact->getDetails() }}
@endforeach
</div>
<div class="col-md-6">
2013-12-01 13:22:08 +01:00
<h3>Standing</h3>
2013-11-29 13:09:21 +01:00
<h3>$0.00 <small>Paid to Date USD</small></h3>
2013-12-01 13:22:08 +01:00
<h3>$0.00 <small>Balance USD</small></h3>
2013-11-29 13:09:21 +01:00
</div>
</div>
<p>&nbsp;</p>
<ul class="nav nav-tabs nav-justified">
{{ HTML::tab_link('#activity', 'Activity', true) }}
{{ HTML::tab_link('#invoices', 'Invoices') }}
{{ HTML::tab_link('#payments', 'Payments') }}
2013-12-01 21:58:25 +01:00
{{ HTML::tab_link('#credits', 'Credits') }}
2013-11-29 13:09:21 +01:00
</ul>
<div class="tab-content">
<div class="tab-pane active" id="activity">
{{ Datatable::table()
2013-12-01 21:58:25 +01:00
->addColumn('Date', 'Message', 'Balance')
2013-12-04 17:20:14 +01:00
->setUrl(url('api/activities/'. $client->public_id))
2013-11-29 13:09:21 +01:00
->setOptions('sPaginationType', 'bootstrap')
->setOptions('bFilter', false)
2013-12-05 21:25:20 +01:00
->render('datatable') }}
2013-11-29 13:09:21 +01:00
</div>
<div class="tab-pane" id="invoices">
2013-12-10 23:10:43 +01:00
@if ($hasRecurringInvoices)
{{ Datatable::table()
->addColumn('Total', 'How Often', 'Start Date', 'End Date')
->setUrl(url('api/recurring_invoices/' . $client->public_id))
->setOptions('sPaginationType', 'bootstrap')
->setOptions('bFilter', false)
->render('datatable') }}
@endif
2013-11-29 13:09:21 +01:00
{{ Datatable::table()
2013-12-01 21:58:25 +01:00
->addColumn('Invoice Number', 'Total', 'Amount Due', 'Invoice Date', 'Due Date', 'Status')
2013-12-04 17:20:14 +01:00
->setUrl(url('api/invoices/' . $client->public_id))
2013-11-29 13:09:21 +01:00
->setOptions('sPaginationType', 'bootstrap')
->setOptions('bFilter', false)
2013-12-05 21:25:20 +01:00
->render('datatable') }}
2013-11-29 13:09:21 +01:00
</div>
<div class="tab-pane" id="payments">
{{ Datatable::table()
2013-12-05 16:23:24 +01:00
->addColumn('Transaction Reference', 'Invoice', 'Amount', 'Payment Date')
2013-12-04 17:20:14 +01:00
->setUrl(url('api/payments/' . $client->public_id))
2013-11-29 13:09:21 +01:00
->setOptions('sPaginationType', 'bootstrap')
->setOptions('bFilter', false)
2013-12-05 21:25:20 +01:00
->render('datatable') }}
2013-11-29 13:09:21 +01:00
</div>
2013-12-01 21:58:25 +01:00
<div class="tab-pane" id="credits">
{{ Datatable::table()
2013-12-05 16:23:24 +01:00
->addColumn('Amount', 'Credit Date')
2013-12-04 17:20:14 +01:00
->setUrl(url('api/credits/' . $client->public_id))
2013-12-01 21:58:25 +01:00
->setOptions('sPaginationType', 'bootstrap')
->setOptions('bFilter', false)
2013-12-05 21:25:20 +01:00
->render('datatable') }}
2013-12-01 21:58:25 +01:00
</div>
2013-11-29 13:09:21 +01:00
</div>
<script type="text/javascript">
$(function() {
2013-12-09 10:38:49 +01:00
$('#normalDropDown > button:first').click(function() {
2013-12-04 17:20:14 +01:00
window.location = '{{ URL::to('clients/' . $client->public_id . '/edit') }}';
2013-12-03 18:32:33 +01:00
});
2013-12-09 10:38:49 +01:00
$('#primaryDropDown > button:first').click(function() {
window.location = '{{ URL::to('invoices/create/' . $client->public_id ) }}';
});
2013-11-29 13:09:21 +01:00
});
2013-12-03 18:32:33 +01:00
function onArchiveClick() {
$('#action').val('archive');
$('.mainForm').submit();
}
function onDeleteClick() {
if (confirm('Are you sure you want to delete this client?')) {
$('#action').val('delete');
$('.mainForm').submit();
}
}
2013-11-29 13:09:21 +01:00
</script>
2013-11-26 13:45:07 +01:00
@stop