2016-11-25 11:53:35 +01:00
|
|
|
{!! Former::open(Utils::pluralizeEntityType($entityType) . '/bulk')
|
|
|
|
->addClass('listForm_' . $entityType) !!}
|
2015-03-16 22:45:25 +01:00
|
|
|
|
2016-11-24 10:22:37 +01:00
|
|
|
<div style="display:none">
|
2016-11-25 11:53:35 +01:00
|
|
|
{!! Former::text('action')->id('action_' . $entityType) !!}
|
|
|
|
{!! Former::text('public_id')->id('public_id_' . $entityType) !!}
|
2016-11-24 10:22:37 +01:00
|
|
|
{!! Former::text('datatable')->value('true') !!}
|
|
|
|
</div>
|
2015-03-16 22:45:25 +01:00
|
|
|
|
2016-11-24 10:22:37 +01:00
|
|
|
<div class="pull-left">
|
2016-04-26 03:53:39 +02:00
|
|
|
@can('create', 'invoice')
|
2016-03-16 03:38:35 +01:00
|
|
|
@if ($entityType == ENTITY_TASK)
|
2016-11-25 11:53:35 +01:00
|
|
|
{!! Button::primary(trans('texts.invoice'))->withAttributes(['class'=>'invoice', 'onclick' =>'submitForm_'.$entityType.'("invoice")'])->appendIcon(Icon::create('check')) !!}
|
2016-03-16 03:38:35 +01:00
|
|
|
@endif
|
|
|
|
@if ($entityType == ENTITY_EXPENSE)
|
2016-11-25 11:53:35 +01:00
|
|
|
{!! Button::primary(trans('texts.invoice'))->withAttributes(['class'=>'invoice', 'onclick' =>'submitForm_'.$entityType.'("invoice")'])->appendIcon(Icon::create('check')) !!}
|
2016-03-16 03:38:35 +01:00
|
|
|
@endif
|
2016-04-26 03:53:39 +02:00
|
|
|
@endcan
|
2015-05-27 18:52:10 +02:00
|
|
|
|
2016-12-14 20:47:22 +01:00
|
|
|
{!! DropdownButton::normal(trans('texts.archive'))
|
|
|
|
->withContents($datatable->bulkActions())
|
|
|
|
->withAttributes(['class'=>'archive'])
|
|
|
|
->split() !!}
|
2016-07-06 20:35:16 +02:00
|
|
|
|
2016-11-17 15:29:02 +01:00
|
|
|
|
2016-11-24 10:22:37 +01:00
|
|
|
<span id="statusWrapper_{{ $entityType }}" style="display:none">
|
|
|
|
<select class="form-control" style="width: 220px" id="statuses_{{ $entityType }}" multiple="true">
|
2016-11-20 15:08:36 +01:00
|
|
|
@if (count(\App\Models\EntityModel::getStatusesFor($entityType)))
|
|
|
|
<optgroup label="{{ trans('texts.entity_state') }}">
|
|
|
|
@foreach (\App\Models\EntityModel::getStatesFor($entityType) as $key => $value)
|
|
|
|
<option value="{{ $key }}">{{ $value }}</option>
|
|
|
|
@endforeach
|
|
|
|
</optgroup>
|
|
|
|
<optgroup label="{{ trans('texts.status') }}">
|
|
|
|
@foreach (\App\Models\EntityModel::getStatusesFor($entityType) as $key => $value)
|
|
|
|
<option value="{{ $key }}">{{ $value }}</option>
|
|
|
|
@endforeach
|
|
|
|
</optgroup>
|
|
|
|
@else
|
|
|
|
@foreach (\App\Models\EntityModel::getStatesFor($entityType) as $key => $value)
|
|
|
|
<option value="{{ $key }}">{{ $value }}</option>
|
|
|
|
@endforeach
|
|
|
|
@endif
|
|
|
|
</select>
|
2016-11-18 14:31:43 +01:00
|
|
|
</span>
|
2016-11-24 10:22:37 +01:00
|
|
|
</div>
|
2015-03-16 22:45:25 +01:00
|
|
|
|
2016-11-24 10:22:37 +01:00
|
|
|
<div id="top_right_buttons" class="pull-right">
|
2017-02-21 12:47:37 +01:00
|
|
|
<input id="tableFilter_{{ $entityType }}" type="text" style="width:180px;margin-right:17px;background-color: white !important"
|
2016-11-24 10:22:37 +01:00
|
|
|
class="form-control pull-left" placeholder="{{ trans('texts.filter') }}" value="{{ Input::get('filter') }}"/>
|
|
|
|
|
2017-08-31 21:04:47 +02:00
|
|
|
@if ($entityType == ENTITY_INVOICE && auth()->user()->account->isModuleEnabled(ENTITY_RECURRING_INVOICE))
|
|
|
|
{!! DropdownButton::normal(trans('texts.recurring'))
|
|
|
|
->withAttributes(['class'=>'recurringDropdown'])
|
|
|
|
->withContents([
|
|
|
|
['label' => trans('texts.new_recurring_invoice'), 'url' => url('/recurring_invoices/create')],
|
|
|
|
]
|
|
|
|
)->split() !!}
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(function() {
|
|
|
|
$('.recurringDropdown:not(.dropdown-toggle)').click(function() {
|
|
|
|
window.location = '{{ url('/recurring_invoices') }}';
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
@elseif ($entityType == ENTITY_EXPENSE)
|
2017-07-31 21:14:14 +02:00
|
|
|
{!! DropdownButton::normal(trans('texts.recurring'))
|
|
|
|
->withAttributes(['class'=>'recurringDropdown'])
|
|
|
|
->withContents([
|
|
|
|
['label' => trans('texts.new_recurring_expense'), 'url' => url('/recurring_expenses/create')],
|
|
|
|
]
|
|
|
|
)->split() !!}
|
|
|
|
{!! DropdownButton::normal(trans('texts.categories'))
|
|
|
|
->withAttributes(['class'=>'categoriesDropdown'])
|
|
|
|
->withContents([
|
|
|
|
['label' => trans('texts.new_expense_category'), 'url' => url('/expense_categories/create')],
|
|
|
|
]
|
|
|
|
)->split() !!}
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(function() {
|
|
|
|
$('.recurringDropdown:not(.dropdown-toggle)').click(function() {
|
|
|
|
window.location = '{{ url('/recurring_expenses') }}';
|
|
|
|
});
|
|
|
|
$('.categoriesDropdown:not(.dropdown-toggle)').click(function() {
|
|
|
|
window.location = '{{ url('/expense_categories') }}';
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
2016-11-29 18:47:26 +01:00
|
|
|
@elseif ($entityType == ENTITY_TASK)
|
2017-10-03 08:37:19 +02:00
|
|
|
{!! Button::normal(trans('texts.time_tracker'))->asLinkTo('javascript:openTimeTracker()')->appendIcon(Icon::create('time')) !!}
|
2017-07-31 21:14:14 +02:00
|
|
|
{!! DropdownButton::normal(trans('texts.projects'))
|
|
|
|
->withAttributes(['class'=>'projectsDropdown'])
|
|
|
|
->withContents([
|
|
|
|
['label' => trans('texts.new_project'), 'url' => url('/projects/create')],
|
|
|
|
]
|
|
|
|
)->split() !!}
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(function() {
|
|
|
|
$('.projectsDropdown:not(.dropdown-toggle)').click(function() {
|
|
|
|
window.location = '{{ url('projects') }}';
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
2016-11-29 18:47:26 +01:00
|
|
|
@endif
|
2015-08-04 16:33:30 +02:00
|
|
|
|
2016-12-20 16:48:58 +01:00
|
|
|
@if (Auth::user()->can('create', $entityType) && empty($vendorId))
|
2016-12-09 12:17:04 +01:00
|
|
|
{!! Button::primary(mtrans($entityType, "new_{$entityType}"))->asLinkTo(url(Utils::pluralizeEntityType($entityType) . '/create/' . (isset($clientId) ? $clientId : '')))->appendIcon(Icon::create('plus-sign')) !!}
|
2016-11-24 10:22:37 +01:00
|
|
|
@endif
|
2016-07-06 20:35:16 +02:00
|
|
|
|
2016-11-24 10:22:37 +01:00
|
|
|
</div>
|
|
|
|
|
2016-11-25 11:53:35 +01:00
|
|
|
|
2016-11-24 10:22:37 +01:00
|
|
|
{!! Datatable::table()
|
2016-12-19 12:22:03 +01:00
|
|
|
->addColumn(Utils::trans($datatable->columnFields(), $datatable->entityType))
|
2016-11-25 15:02:39 +01:00
|
|
|
->setUrl(url('api/' . Utils::pluralizeEntityType($entityType) . '/' . (isset($clientId) ? $clientId : (isset($vendorId) ? $vendorId : ''))))
|
2016-11-24 10:22:37 +01:00
|
|
|
->setCustomValues('entityType', Utils::pluralizeEntityType($entityType))
|
|
|
|
->setCustomValues('clientId', isset($clientId) && $clientId)
|
|
|
|
->setOptions('sPaginationType', 'bootstrap')
|
2016-11-29 18:47:26 +01:00
|
|
|
->setOptions('aaSorting', [[isset($clientId) ? ($datatable->sortCol-1) : $datatable->sortCol, 'desc']])
|
2016-11-24 10:22:37 +01:00
|
|
|
->render('datatable') !!}
|
|
|
|
|
|
|
|
@if ($entityType == ENTITY_PAYMENT)
|
2017-02-09 11:46:58 +01:00
|
|
|
@include('partials/refund_payment')
|
2016-11-24 10:22:37 +01:00
|
|
|
@endif
|
2016-04-23 22:40:19 +02:00
|
|
|
|
2016-11-24 10:22:37 +01:00
|
|
|
{!! Former::close() !!}
|
2016-09-19 15:30:46 +02:00
|
|
|
|
2016-12-25 22:43:57 +01:00
|
|
|
<style type="text/css">
|
|
|
|
|
|
|
|
@foreach ($datatable->rightAlignIndices() as $index)
|
|
|
|
.listForm_{{ $entityType }} table.dataTable td:nth-child({{ $index }}) {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
@endforeach
|
|
|
|
|
|
|
|
@foreach ($datatable->centerAlignIndices() as $index)
|
|
|
|
.listForm_{{ $entityType }} table.dataTable td:nth-child({{ $index }}) {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
@endforeach
|
|
|
|
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|
2016-11-24 10:22:37 +01:00
|
|
|
<script type="text/javascript">
|
2015-03-16 22:45:25 +01:00
|
|
|
|
2016-11-25 11:53:35 +01:00
|
|
|
function submitForm_{{ $entityType }}(action, id) {
|
|
|
|
if (id) {
|
|
|
|
$('#public_id_{{ $entityType }}').val(id);
|
|
|
|
}
|
2015-03-16 22:45:25 +01:00
|
|
|
|
2017-02-09 15:02:50 +01:00
|
|
|
if (action == 'delete' || action == 'emailInvoice') {
|
2016-11-25 11:53:35 +01:00
|
|
|
sweetConfirm(function() {
|
|
|
|
$('#action_{{ $entityType }}').val(action);
|
|
|
|
$('form.listForm_{{ $entityType }}').submit();
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
$('#action_{{ $entityType }}').val(action);
|
|
|
|
$('form.listForm_{{ $entityType }}').submit();
|
|
|
|
}
|
2015-03-16 22:45:25 +01:00
|
|
|
}
|
2016-07-06 20:35:16 +02:00
|
|
|
|
2016-11-25 11:53:35 +01:00
|
|
|
$(function() {
|
|
|
|
|
|
|
|
// Handle datatable filtering
|
|
|
|
var tableFilter = '';
|
|
|
|
var searchTimeout = false;
|
|
|
|
|
|
|
|
function filterTable_{{ $entityType }}(val) {
|
|
|
|
if (val == tableFilter) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
tableFilter = val;
|
|
|
|
var oTable0 = $('.listForm_{{ $entityType }} .data-table').dataTable();
|
|
|
|
oTable0.fnFilter(val);
|
|
|
|
}
|
|
|
|
|
|
|
|
$('#tableFilter_{{ $entityType }}').on('keyup', function(){
|
|
|
|
if (searchTimeout) {
|
|
|
|
window.clearTimeout(searchTimeout);
|
|
|
|
}
|
|
|
|
searchTimeout = setTimeout(function() {
|
|
|
|
filterTable_{{ $entityType }}($('#tableFilter_{{ $entityType }}').val());
|
|
|
|
}, 500);
|
|
|
|
})
|
|
|
|
|
|
|
|
if ($('#tableFilter_{{ $entityType }}').val()) {
|
|
|
|
filterTable_{{ $entityType }}($('#tableFilter_{{ $entityType }}').val());
|
|
|
|
}
|
|
|
|
|
2016-11-30 19:30:48 +01:00
|
|
|
$('.listForm_{{ $entityType }} .head0').click(function(event) {
|
|
|
|
if (event.target.type !== 'checkbox') {
|
|
|
|
$('.listForm_{{ $entityType }} .head0 input[type=checkbox]').click();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-11-25 11:53:35 +01:00
|
|
|
// Enable/disable bulk action buttons
|
|
|
|
window.onDatatableReady_{{ Utils::pluralizeEntityType($entityType) }} = function() {
|
|
|
|
$(':checkbox').click(function() {
|
|
|
|
setBulkActionsEnabled_{{ $entityType }}();
|
|
|
|
});
|
|
|
|
|
|
|
|
$('.listForm_{{ $entityType }} tbody tr').unbind('click').click(function(event) {
|
|
|
|
if (event.target.type !== 'checkbox' && event.target.type !== 'button' && event.target.tagName.toLowerCase() !== 'a') {
|
|
|
|
$checkbox = $(this).closest('tr').find(':checkbox:not(:disabled)');
|
|
|
|
var checked = $checkbox.prop('checked');
|
|
|
|
$checkbox.prop('checked', !checked);
|
|
|
|
setBulkActionsEnabled_{{ $entityType }}();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
actionListHandler();
|
|
|
|
}
|
|
|
|
|
|
|
|
$('.listForm_{{ $entityType }} .archive, .invoice').prop('disabled', true);
|
|
|
|
$('.listForm_{{ $entityType }} .archive:not(.dropdown-toggle)').click(function() {
|
|
|
|
submitForm_{{ $entityType }}('archive');
|
|
|
|
});
|
|
|
|
|
|
|
|
$('.listForm_{{ $entityType }} .selectAll').click(function() {
|
|
|
|
$(this).closest('table').find(':checkbox:not(:disabled)').prop('checked', this.checked);
|
|
|
|
});
|
|
|
|
|
|
|
|
function setBulkActionsEnabled_{{ $entityType }}() {
|
|
|
|
var buttonLabel = "{{ trans('texts.archive') }}";
|
|
|
|
var count = $('.listForm_{{ $entityType }} tbody :checkbox:checked').length;
|
|
|
|
$('.listForm_{{ $entityType }} button.archive, .listForm_{{ $entityType }} button.invoice').prop('disabled', !count);
|
|
|
|
if (count) {
|
|
|
|
buttonLabel += ' (' + count + ')';
|
|
|
|
}
|
|
|
|
$('.listForm_{{ $entityType }} button.archive').not('.dropdown-toggle').text(buttonLabel);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Setup state/status filter
|
|
|
|
$('#statuses_{{ $entityType }}').select2({
|
|
|
|
placeholder: "{{ trans('texts.status') }}",
|
2016-11-28 09:55:00 +01:00
|
|
|
//allowClear: true,
|
2016-11-27 10:46:32 +01:00
|
|
|
templateSelection: function(data, container) {
|
|
|
|
if (data.id == 'archived') {
|
|
|
|
$(container).css('color', '#fff');
|
|
|
|
$(container).css('background-color', '#f0ad4e');
|
|
|
|
$(container).css('border-color', '#eea236');
|
|
|
|
} else if (data.id == 'deleted') {
|
|
|
|
$(container).css('color', '#fff');
|
|
|
|
$(container).css('background-color', '#d9534f');
|
|
|
|
$(container).css('border-color', '#d43f3a');
|
|
|
|
}
|
|
|
|
return data.text;
|
|
|
|
}
|
2016-11-25 11:53:35 +01:00
|
|
|
}).val('{{ session('entity_state_filter:' . $entityType, STATUS_ACTIVE) . ',' . session('entity_status_filter:' . $entityType) }}'.split(','))
|
|
|
|
.trigger('change')
|
|
|
|
.on('change', function() {
|
|
|
|
var filter = $('#statuses_{{ $entityType }}').val();
|
|
|
|
if (filter) {
|
|
|
|
filter = filter.join(',');
|
|
|
|
} else {
|
|
|
|
filter = '';
|
|
|
|
}
|
|
|
|
var url = '{{ URL::to('set_entity_filter/' . $entityType) }}' + '/' + filter;
|
|
|
|
$.get(url, function(data) {
|
2017-07-17 13:23:29 +02:00
|
|
|
refreshDatatable_{{ Utils::pluralizeEntityType($entityType) }}();
|
2016-11-25 11:53:35 +01:00
|
|
|
})
|
|
|
|
}).maximizeSelect2Height();
|
|
|
|
|
|
|
|
$('#statusWrapper_{{ $entityType }}').show();
|
|
|
|
|
2017-06-28 17:33:09 +02:00
|
|
|
|
|
|
|
@for ($i = 1; $i <= 10; $i++)
|
|
|
|
Mousetrap.bind('g {{ $i }}', function(e) {
|
2017-06-28 17:47:57 +02:00
|
|
|
var link = $('.data-table').find('tr:nth-child({{ $i }})').find('a').attr('href');
|
|
|
|
if (link) {
|
|
|
|
location.href = link;
|
|
|
|
}
|
2017-06-28 17:33:09 +02:00
|
|
|
});
|
|
|
|
@endfor
|
2016-11-25 11:53:35 +01:00
|
|
|
});
|
2015-03-16 22:45:25 +01:00
|
|
|
|
2016-11-24 10:22:37 +01:00
|
|
|
</script>
|