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 1517-1522
Link Here
|
1517 |
}); |
1517 |
}); |
1518 |
}); |
1518 |
}); |
1519 |
|
1519 |
|
|
|
1520 |
$('#items-bundle-contents-table').dataTable($.extend(true, {}, dataTablesDefaults, { |
1521 |
"bFilter": false, |
1522 |
"bPaginate": false, |
1523 |
"bInfo": false, |
1524 |
"order": [[ 1, 'asc' ], [ 0, 'asc' ]] |
1525 |
})); |
1526 |
|
1520 |
// print modals |
1527 |
// print modals |
1521 |
$('.modal.printable').on('shown.bs.modal', function() { |
1528 |
$('.modal.printable').on('shown.bs.modal', function() { |
1522 |
$('.modal-dialog', this).addClass('focused'); |
1529 |
$('.modal-dialog', this).addClass('focused'); |
1523 |
- |
|
|