1 $(document).ready(function() {
4 // Don't load holds table unless it is clicked on
5 $("#holds-tab").on( "click", function(){ load_holds_table() } );
7 // If the holds tab is preselected on load, we need to load the table
8 if ( $("#holds-tab").parent().hasClass('ui-state-active') ) { load_holds_table() }
10 function load_holds_table() {
11 var holds = new Array();
13 holdsTable = $("#holds-table").dataTable({
18 "data": { _: "reservedate_formatted", "sort": "reservedate" }
21 "mDataProp": function ( oObj ) {
22 title = "<a href='/cgi-bin/koha/reserve/request.pl?biblionumber="
25 + oObj.title.escapeHtml();
27 $.each(oObj.subtitle, function( index, value ) {
28 title += " " + value.escapeHtml();
31 title += " " + oObj.part_number + " " + oObj.part_name;
36 title += " " + BY.replace( "_AUTHOR_", oObj.author.escapeHtml() );
39 if ( oObj.itemnotes ) {
41 if ( $.datepicker.formatDate('yy-mm-dd', new Date(oObj.issuedate) ) == ymd ) {
42 span_class = "circ-hlt";
44 title += " - <span class='" + span_class + "'>" + oObj.itemnotes.escapeHtml() + "</span>"
51 "mDataProp": function( oObj ) {
52 return oObj.itemcallnumber && oObj.itemcallnumber.escapeHtml() || "";
56 "mDataProp": function( oObj ) {
59 data += " <a href='/cgi-bin/koha/catalogue/moredetail.pl?biblionumber="
66 + oObj.barcode.escapeHtml()
73 "mDataProp": function( oObj ) {
74 if( oObj.branches.length > 1 && oObj.found !== 'W' && oObj.found !== 'T' ){
75 var branchSelect='<select priority='+oObj.priority+' class="hold_location_select" reserve_id="'+oObj.reserve_id+'" name="pick-location">';
76 for ( var i=0; i < oObj.branches.length; i++ ){
79 if( oObj.branches[i].selected ){
81 selectedbranch = " selected='selected' ";
83 } else if ( oObj.branches[i].pickup_location == 0 ) {
89 branchSelect += '<option value="'+ oObj.branches[i].branchcode.escapeHtml() +'"'+selectedbranch+'>'+oObj.branches[i].branchname.escapeHtml()+setbranch+'</option>';
91 branchSelect +='</select>';
94 else { return oObj.branchcode.escapeHtml() || ""; }
97 { "data": { _: "expirationdate_formatted", "sort": "expirationdate" } },
99 "mDataProp": function( oObj ) {
100 if ( oObj.priority && parseInt( oObj.priority ) && parseInt( oObj.priority ) > 0 ) {
101 return oObj.priority;
109 "mDataProp": function( oObj ) {
110 return "<select name='rank-request'>"
111 + "<option value='n'>" + NO + "</option>"
112 + "<option value='del'>" + YES + "</option>"
114 + "<input type='hidden' name='biblionumber' value='" + oObj.biblionumber + "'>"
115 + "<input type='hidden' name='borrowernumber' value='" + borrowernumber + "'>"
116 + "<input type='hidden' name='reserve_id' value='" + oObj.reserve_id + "'>";
121 "mDataProp": function( oObj ) {
122 holds[oObj.reserve_id] = oObj; //Store holds for later use
126 } else if ( oObj.suspend == 1 ) {
127 return "<a class='hold-resume btn btn-default btn-xs' id='resume" + oObj.reserve_id + "'>"
128 + "<i class='fa fa-play'></i> " + RESUME + "</a>";
130 return "<a class='hold-suspend btn btn-default btn-xs' id='suspend" + oObj.reserve_id + "'>"
131 + "<i class='fa fa-pause'></i> " + SUSPEND + "</a>";
136 "mDataProp": function( oObj ) {
139 if ( oObj.suspend == 1 ) {
140 data += "<p>" + HOLD_IS_SUSPENDED;
141 if ( oObj.suspend_until ) {
142 data += " " + UNTIL.format( oObj.suspend_until_formatted );
147 if ( oObj.itemtype_limit ) {
148 data += NEXT_AVAILABLE_ITYPE.format( oObj.itemtype_limit );
151 if ( oObj.barcode ) {
153 if ( oObj.found == "W" ) {
155 if ( oObj.waiting_here ) {
156 data += ITEM_IS_WAITING_HERE;
158 data += ITEM_IS_WAITING;
159 data += " " + AT.format( oObj.waiting_at );
162 } else if ( oObj.transferred ) {
163 data += ITEM_IS_IN_TRANSIT.format( oObj.from_branch, oObj.date_sent );
164 } else if ( oObj.not_transferred ) {
165 data += NOT_TRANSFERRED_YET.format( oObj.not_transferred_by );
175 "bServerSide": false,
177 "url": '/cgi-bin/koha/svc/holds',
178 "data": function ( d ) {
179 d.borrowernumber = borrowernumber;
184 $('#holds-table').on( 'draw.dt', function () {
185 $(".hold-suspend").on( "click", function() {
186 var id = $(this).attr("id").replace("suspend", "");
187 var hold = holds[id];
188 $("#suspend-modal-title").html( hold.title );
189 $("#suspend-modal-reserve_id").val( hold.reserve_id );
190 $('#suspend-modal').modal('show');
193 $(".hold-resume").on( "click", function() {
194 var id = $(this).attr("id").replace("resume", "");
195 var hold = holds[id];
196 $.post('/cgi-bin/koha/svc/hold/resume', { "reserve_id": hold.reserve_id }, function( data ){
197 if ( data.success ) {
198 holdsTable.api().ajax.reload();
200 if ( data.error == "HOLD_NOT_FOUND" ) {
201 alert ( RESUME_HOLD_ERROR_NOT_FOUND );
202 holdsTable.api().ajax.reload();
208 $(".hold_location_select").change(function(){
209 $(this).prop("disabled",true);
210 var cur_select = $(this);
211 var res_id = $(this).attr('reserve_id');
212 $(this).after('<div id="updating_reserveno'+res_id+'" class="waiting"><img src="/intranet-tmpl/prog/img/spinner-small.gif" alt="" /><span class="waiting_msg"></span></div>');
213 var api_url = '/api/v1/holds/'+res_id;
214 var update_info = JSON.stringify({ pickup_library_id: $(this).val(), priority: parseInt($(this).attr("priority"),10) });
219 success: function( data ){ holdsTable.api().ajax.reload(); },
220 error: function( jqXHR, textStatus, errorThrown) {
221 alert('There was an error:'+textStatus+" "+errorThrown);
222 cur_select.prop("disabled",false);
223 $("#updating_reserveno"+res_id).remove();
224 cur_select.val( cur_select.children('option[selected="selected"]').val() );
231 if ( $("#holds-table").length ) {
232 $("#holds-table_processing").position({
233 of: $( "#holds-table" ),
241 <div id='suspend-modal' class='modal fade' role='dialog' aria-hidden='true'>\
242 <div class='modal-dialog'>\
243 <div class='modal-content'>\
244 <form id='suspend-modal-form' class='form-inline'>\
245 <div class='modal-header'>\
246 <button type='button' class='closebtn' data-dismiss='modal' aria-hidden='true'>×</button>\
247 <h3 id='suspend-modal-label'>" + SUSPEND_HOLD_ON + " <i><span id='suspend-modal-title'></span></i></h3>\
250 <div class='modal-body'>\
251 <input type='hidden' id='suspend-modal-reserve_id' name='reserve_id' />\
253 <label for='suspend-modal-until'>" + SUSPEND_UNTIL + "</label>\
254 <input name='suspend_until' id='suspend-modal-until' class='suspend-until' size='10' />\
256 <p/><a class='btn btn-link' id='suspend-modal-clear-date' >" + CLEAR_DATE_TO_SUSPEND_INDEFINITELY + "</a></p>\
260 <div class='modal-footer'>\
261 <button id='suspend-modal-submit' class='btn btn-primary' type='submit' name='submit'>" + SUSPEND + "</button>\
262 <a href='#' data-dismiss='modal' aria-hidden='true' class='cancel'>" + CANCEL + "</a>\
270 $("#suspend-modal-until").datepicker({ minDate: 1 }); // Require that "until date" be in the future
271 $("#suspend-modal-clear-date").on( "click", function() { $("#suspend-modal-until").val(""); } );
273 $("#suspend-modal-submit").on( "click", function( e ) {
275 $.post('/cgi-bin/koha/svc/hold/suspend', $('#suspend-modal-form').serialize(), function( data ){
276 $('#suspend-modal').modal('hide');
277 if ( data.success ) {
278 holdsTable.api().ajax.reload();
280 if ( data.error == "INVALID_DATE" ) {
281 alert( SUSPEND_HOLD_ERROR_DATE );
283 else if ( data.error == "HOLD_NOT_FOUND" ) {
284 alert ( SUSPEND_HOLD_ERROR_NOT_FOUND );
285 holdsTable.api().ajax.reload();