|
Lines 503-509
Link Here
|
| 503 |
[% INCLUDE 'calendar.inc' %] |
503 |
[% INCLUDE 'calendar.inc' %] |
| 504 |
[% INCLUDE 'js-patron-format.inc' %] |
504 |
[% INCLUDE 'js-patron-format.inc' %] |
| 505 |
[% INCLUDE 'datatables.inc' %] |
505 |
[% INCLUDE 'datatables.inc' %] |
| 506 |
[% INCLUDE 'columns_settings.inc' %] |
|
|
| 507 |
<script> |
506 |
<script> |
| 508 |
let pickups = [% To.json(curbside_pickups.unblessed) | $raw %]; |
507 |
let pickups = [% To.json(curbside_pickups.unblessed) | $raw %]; |
| 509 |
let policy = [% To.json(policy.unblessed) | $raw %]; |
508 |
let policy = [% To.json(policy.unblessed) | $raw %]; |
|
Lines 673-679
Link Here
|
| 673 |
|
672 |
|
| 674 |
let dt_tables = new Array("to_be_stagedt", "staged_and_readyt", "patron_is_outsidet", "delivered_todayt"); |
673 |
let dt_tables = new Array("to_be_stagedt", "staged_and_readyt", "patron_is_outsidet", "delivered_todayt"); |
| 675 |
dt_tables.forEach(function( id, index ){ |
674 |
dt_tables.forEach(function( id, index ){ |
| 676 |
KohaTable( id , { |
675 |
$("#" + id).kohaTable({ |
| 677 |
"autoWidth": false |
676 |
"autoWidth": false |
| 678 |
}, dt_settings[ index ] ); |
677 |
}, dt_settings[ index ] ); |
| 679 |
}); |
678 |
}); |
| 680 |
- |
|
|