mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
22 lines
588 B
PHP
22 lines
588 B
PHP
<div style="display:none">
|
|
{!! Former::open($entityType . 's/bulk')->addClass('bulk-form') !!}
|
|
{!! Former::text('bulk_action') !!}
|
|
{!! Former::text('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;
|
|
}
|
|
}
|
|
|
|
$('#bulk_public_id').val(id);
|
|
$('#bulk_action').val(action);
|
|
|
|
$('form.bulk-form').submit();
|
|
}
|
|
</script>
|