mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-14 07:02:34 +01:00
29 lines
930 B
PHP
29 lines
930 B
PHP
<div style="display:none">
|
|
{!! Former::open($entityType . 's/bulk')->addClass("bulk-form bulk-{$entityType}-form") !!}
|
|
{!! Former::text('bulk_action')->addClass('bulk-action') !!}
|
|
{!! Former::text('bulk_public_id')->addClass('bulk-public-id') !!}
|
|
{!! Former::close() !!}
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
function submitForm_{{ $entityType }}(action, id) {
|
|
if (action == 'delete') {
|
|
if (!confirm('{!! trans("texts.are_you_sure") !!}')) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
@if (in_array($entityType, [ENTITY_ACCOUNT_GATEWAY]))
|
|
if (action == 'archive') {
|
|
if (!confirm('{!! trans("texts.are_you_sure") !!}')) {
|
|
return;
|
|
}
|
|
}
|
|
@endif
|
|
|
|
$('.bulk-public-id').val(id);
|
|
$('.bulk-action').val(action);
|
|
$('form.bulk-{{ $entityType }}-form').submit();
|
|
}
|
|
</script>
|