Lines 426-432
Link Here
|
426 |
<div class="modal-content"> |
426 |
<div class="modal-content"> |
427 |
<form method="post"> |
427 |
<form method="post"> |
428 |
<div class="modal-header"> |
428 |
<div class="modal-header"> |
429 |
<h3>Please confirm bundle contents</h3> |
429 |
<h3>Please confirm bundle contents for [% item.barcode | html %]</h3> |
430 |
</div> |
430 |
</div> |
431 |
<div class="modal-body"> |
431 |
<div class="modal-body"> |
432 |
|
432 |
|
Lines 1309-1314
Link Here
|
1309 |
}); |
1309 |
}); |
1310 |
}); |
1310 |
}); |
1311 |
|
1311 |
|
|
|
1312 |
$('#items-bundle-contents-table').dataTable($.extend(true, {}, dataTablesDefaults, { |
1313 |
"bFilter": false, |
1314 |
"bPaginate": false, |
1315 |
"bInfo": false, |
1316 |
"order": [[ 1, 'asc' ], [ 0, 'asc' ]] |
1317 |
})); |
1318 |
|
1312 |
// print modals |
1319 |
// print modals |
1313 |
$('.modal.printable').on('shown.bs.modal', function() { |
1320 |
$('.modal.printable').on('shown.bs.modal', function() { |
1314 |
$('.modal-dialog', this).addClass('focused'); |
1321 |
$('.modal-dialog', this).addClass('focused'); |
1315 |
- |
|
|