|
Lines 470-476
Link Here
|
| 470 |
[% INCLUDE 'calendar.inc' %] |
470 |
[% INCLUDE 'calendar.inc' %] |
| 471 |
[% INCLUDE 'js-patron-format.inc' %] |
471 |
[% INCLUDE 'js-patron-format.inc' %] |
| 472 |
[% INCLUDE 'datatables.inc' %] |
472 |
[% INCLUDE 'datatables.inc' %] |
| 473 |
[% INCLUDE 'columns_settings.inc' %] |
|
|
| 474 |
<script> |
473 |
<script> |
| 475 |
let pickups = [% To.json(curbside_pickups.unblessed) | $raw %]; |
474 |
let pickups = [% To.json(curbside_pickups.unblessed) | $raw %]; |
| 476 |
let policy = [% To.json(policy.unblessed) | $raw %]; |
475 |
let policy = [% To.json(policy.unblessed) | $raw %]; |
|
Lines 640-646
Link Here
|
| 640 |
|
639 |
|
| 641 |
let dt_tables = new Array("to_be_stagedt", "staged_and_readyt", "patron_is_outsidet", "delivered_todayt"); |
640 |
let dt_tables = new Array("to_be_stagedt", "staged_and_readyt", "patron_is_outsidet", "delivered_todayt"); |
| 642 |
dt_tables.forEach(function( id, index ){ |
641 |
dt_tables.forEach(function( id, index ){ |
| 643 |
KohaTable( id , { |
642 |
$("#" + id).kohaTable({ |
| 644 |
"autoWidth": false |
643 |
"autoWidth": false |
| 645 |
}, dt_settings[ index ] ); |
644 |
}, dt_settings[ index ] ); |
| 646 |
}); |
645 |
}); |
| 647 |
- |
|
|