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