|
Lines 346-351
Link Here
|
| 346 |
[% INCLUDE 'select2.inc' %] |
346 |
[% INCLUDE 'select2.inc' %] |
| 347 |
[% INCLUDE 'js-date-format.inc' %] |
347 |
[% INCLUDE 'js-date-format.inc' %] |
| 348 |
[% PROCESS 'modal-claims-js' %] |
348 |
[% PROCESS 'modal-claims-js' %] |
|
|
349 |
<script> |
| 350 |
var table_settings = [% TablesSettings.GetTableSettings( 'circ', 'overdues', 'circ-overdues', 'json' ) | $raw %]; |
| 351 |
[% IF !Koha.Preference('ClaimReturnedLostValue') %] |
| 352 |
table_settings['columns'].splice(13, 1); |
| 353 |
[% END %] |
| 354 |
</script> |
| 355 |
|
| 349 |
<script> |
356 |
<script> |
| 350 |
function clone_input( node, original_id ) { |
357 |
function clone_input( node, original_id ) { |
| 351 |
var original = node; |
358 |
var original = node; |
|
Lines 381-393
Link Here
|
| 381 |
} |
388 |
} |
| 382 |
|
389 |
|
| 383 |
$(document).ready(function(){ |
390 |
$(document).ready(function(){ |
| 384 |
var table_settings = [% TablesSettings.GetTableSettings( 'circ', 'overdues', 'circ-overdues', 'json' ) | $raw %]; |
391 |
$("#overduest").kohaTable( |
| 385 |
|
|
|
| 386 |
[% IF !Koha.Preference('ClaimReturnedLostValue') %] |
| 387 |
table_settings['columns'].splice(13, 1); |
| 388 |
[% END %] |
| 389 |
|
| 390 |
$("#overduest").kohaTable( |
| 391 |
{ |
392 |
{ |
| 392 |
pagingType: "full", |
393 |
pagingType: "full", |
| 393 |
autoWidth: false, |
394 |
autoWidth: false, |
| 394 |
- |
|
|