Lines 50-56
var MSG_EXPORT_SELECT_CHECKOUTS = _("You must select checkout(s) to export");
Link Here
|
50 |
function toggle_onsite_checkout(){ |
50 |
function toggle_onsite_checkout(){ |
51 |
if ( $("#onsite_checkout").attr('checked') ) { |
51 |
if ( $("#onsite_checkout").attr('checked') ) { |
52 |
$("#duedatespec").val("[% todaysdate | $KohaDates with_hours => 1%]") |
52 |
$("#duedatespec").val("[% todaysdate | $KohaDates with_hours => 1%]") |
53 |
$("#duedatespec").datetimepicker('destroy'); |
53 |
[% IF !Koha.Preference('SpecifyDueDate') %] |
|
|
54 |
$("#duedatespec").datetimepicker('destroy'); |
55 |
[% END %] |
54 |
} else { |
56 |
} else { |
55 |
$("#duedatespec").datetimepicker({ |
57 |
$("#duedatespec").datetimepicker({ |
56 |
onClose: function(dateText, inst) { $("#barcode").focus(); }, |
58 |
onClose: function(dateText, inst) { $("#barcode").focus(); }, |
57 |
- |
|
|