Bug 8030 (QA Followup) - Use REST api and provide feedback
[koha.git] / koha-tmpl / intranet-tmpl / prog / js / holds.js
1 $(document).ready(function() {
2     var holdsTable;
3
4     // Don't load holds table unless it is clicked on
5     $("#holds-tab").on( "click", function(){ load_holds_table() } );
6
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() }
9
10     function load_holds_table() {
11         var holds = new Array();
12         if ( ! holdsTable ) {
13             holdsTable = $("#holds-table").dataTable({
14                 "bAutoWidth": false,
15                 "sDom": "rt",
16                 "columns": [
17                     {
18                         "mDataProp": "reservedate_formatted"
19                     },
20                     {
21                         "mDataProp": function ( oObj ) {
22                             title = "<a href='/cgi-bin/koha/reserve/request.pl?biblionumber="
23                                   + oObj.biblionumber
24                                   + "'>"
25                                   + oObj.title;
26
27                             $.each(oObj.subtitle, function( index, value ) {
28                                       title += " " + value.subfield;
29                             });
30
31                             title += "</a>";
32
33                             if ( oObj.author ) {
34                                 title += " " + BY.replace( "_AUTHOR_",  oObj.author );
35                             }
36
37                             if ( oObj.itemnotes ) {
38                                 var span_class = "";
39                                 if ( $.datepicker.formatDate('yy-mm-dd', new Date(oObj.issuedate) ) == ymd ) {
40                                     span_class = "circ-hlt";
41                                 }
42                                 title += " - <span class='" + span_class + "'>" + oObj.itemnotes + "</span>"
43                             }
44
45                             return title;
46                         }
47                     },
48                     {
49                         "mDataProp": function( oObj ) {
50                             return oObj.itemcallnumber || "";
51                         }
52                     },
53                     {
54                         "mDataProp": function( oObj ) {
55                             var data = "";
56
57                             if ( oObj.suspend == 1 ) {
58                                 data += "<p>" + HOLD_IS_SUSPENDED;
59                                 if ( oObj.suspend_until ) {
60                                     data += " " + UNTIL.format( oObj.suspend_until_formatted );
61                                 }
62                                 data += "</p>";
63                             }
64
65                             if ( oObj.itemtype_limit ) {
66                                 data += NEXT_AVAILABLE_ITYPE.format( oObj.itemtype_limit );
67                             }
68
69                             if ( oObj.barcode ) {
70                                 data += "<em>";
71                                 if ( oObj.found == "W" ) {
72
73                                     if ( oObj.waiting_here ) {
74                                         data += ITEM_IS_WAITING_HERE;
75                                     } else {
76                                         data += ITEM_IS_WAITING;
77                                         data += " " + AT.format( oObj.waiting_at );
78                                     }
79
80                                 } else if ( oObj.transferred ) {
81                                     data += ITEM_IS_IN_TRANSIT.format( oObj.from_branch, oObj.date_sent );
82                                 } else if ( oObj.not_transferred ) {
83                                     data += NOT_TRANSFERRED_YET.format( oObj.not_transferred_by );
84                                 }
85                                 data += "</em>";
86
87                                 data += " <a href='/cgi-bin/koha/catalogue/detail.pl?biblionumber="
88                                   + oObj.biblionumber
89                                   + "&itemnumber="
90                                   + oObj.itemnumber
91                                   + "#"
92                                   + oObj.itemnumber
93                                   + "'>"
94                                   + oObj.barcode
95                                   + "</a>";
96                             }
97
98                             return data;
99                         }
100                     },
101                     {
102                         "mDataProp": function( oObj ) {
103                             if( oObj.branches.length > 1 && oObj.found !== 'W' && oObj.found !== 'T' ){
104                                 var branchSelect='<select priority='+oObj.priority+' class="hold_location_select" reserve_id="'+oObj.reserve_id+'" name="pick-location">';
105                                 for ( var i=0; i < oObj.branches.length; i++ ){
106                                     var selectedbranch;
107                                     var setbranch;
108                                     if( oObj.branches[i].selected ){
109                                         selectedbranch = " selected='selected' ";
110                                         setbranch = " (set) ";
111                                     }
112                                     else{
113                                         selectedbranch = '';
114                                         setbranch = '';
115                                     }
116                                     branchSelect += '<option value="'+ oObj.branches[i].value +'"'+selectedbranch+'>'+oObj.branches[i].branchname+setbranch+'</option>';
117                                 }
118                                 branchSelect +='</select>';
119                                 return branchSelect;
120                             }
121                             else { return oObj.branchcode || ""; }
122                         }
123                     },
124                     { "mDataProp": "expirationdate_formatted" },
125                     {
126                         "mDataProp": function( oObj ) {
127                             if ( oObj.priority && parseInt( oObj.priority ) && parseInt( oObj.priority ) > 0 ) {
128                                 return oObj.priority;
129                             } else {
130                                 return "";
131                             }
132                         }
133                     },
134                     {
135                         "bSortable": false,
136                         "mDataProp": function( oObj ) {
137                             return "<select name='rank-request'>"
138                                  + "<option value='n'>" + NO + "</option>"
139                                  + "<option value='del'>" + YES  + "</option>"
140                                  + "</select>"
141                                  + "<input type='hidden' name='biblionumber' value='" + oObj.biblionumber + "'>"
142                                  + "<input type='hidden' name='borrowernumber' value='" + borrowernumber + "'>"
143                                  + "<input type='hidden' name='reserve_id' value='" + oObj.reserve_id + "'>";
144                         }
145                     },
146                     {
147                         "bSortable": false,
148                         "mDataProp": function( oObj ) {
149                             holds[oObj.reserve_id] = oObj; //Store holds for later use
150
151                             if ( oObj.found ) {
152                                 return "";
153                             } else if ( oObj.suspend == 1 ) {
154                                 return "<a class='hold-resume btn btn-mini' id='resume" + oObj.reserve_id + "'>"
155                                      + "<i class='fa fa-play'></i> " + RESUME + "</a>";
156                             } else {
157                                 return "<a class='hold-suspend btn btn-mini' id='suspend" + oObj.reserve_id + "'>"
158                                      + "<i class='fa fa-pause'></i> " + SUSPEND + "</a>";
159                             }
160                         }
161                     }
162                 ],
163                 "bPaginate": false,
164                 "bProcessing": true,
165                 "bServerSide": false,
166                 "ajax": {
167                     "url": '/cgi-bin/koha/svc/holds',
168                     "data": function ( d ) {
169                         d.borrowernumber = borrowernumber;
170                     }
171                 },
172             });
173
174             $('#holds-table').on( 'draw.dt', function () {
175                 $(".hold-suspend").on( "click", function() {
176                     var id = $(this).attr("id").replace("suspend", "");
177                     var hold = holds[id];
178                     $("#suspend-modal-title").html( hold.title );
179                     $("#suspend-modal-reserve_id").val( hold.reserve_id );
180                     $('#suspend-modal').modal('show');
181                 });
182
183                 $(".hold-resume").on( "click", function() {
184                     var id = $(this).attr("id").replace("resume", "");
185                     var hold = holds[id];
186                     $.post('/cgi-bin/koha/svc/hold/resume', { "reserve_id": hold.reserve_id }, function( data ){
187                       if ( data.success ) {
188                           holdsTable.api().ajax.reload();
189                       } else {
190                         if ( data.error == "HOLD_NOT_FOUND" ) {
191                             alert ( RESUME_HOLD_ERROR_NOT_FOUND );
192                             holdsTable.api().ajax.reload();
193                         }
194                       }
195                     });
196                 });
197
198                 $(".hold_location_select").change(function(){
199                     if( confirm( _("Do you want to change the pickup location?") ) ){
200                         $(this).prop("disabled",true);
201                         var cur_select = $(this);
202                         $(this).after('<i id="holdwaiter" class="fa fa-circle-o-notch fa-spin fa-lg fa-fw"></i>');
203                         var api_url = '/api/v1/holds/'+$(this).attr('reserve_id');
204                         var update_info = JSON.stringify({ branchcode: $(this).val(), priority: parseInt($(this).attr("priority"),10) });
205                         $.ajax({
206                             method: "PUT",
207                             url: api_url,
208                             data: update_info ,
209                             success: function( data ){ holdsTable.api().ajax.reload(); },
210                             error: function( jqXHR, textStatus, errorThrown) {
211                                 alert('There was an error:'+textStatus+" "+errorThrown);
212                                 cur_select.prop("disabled",false);
213                                 $("#holdwaiter").remove();
214                                 cur_select.val( cur_select.children('option[selected="selected"]').val() );
215                             },
216                         });
217                     }
218                     else{
219                         $(this).val( $(this).children('option[selected="selected"]').val()  );
220                     }
221                 });
222
223             });
224
225             if ( $("#holds-table").length ) {
226                 $("#holds-table_processing").position({
227                     of: $( "#holds-table" ),
228                     collision: "none"
229                 });
230             }
231         }
232     }
233
234     $("body").append("\
235         <div id='suspend-modal' class='modal hide fade' tabindex='-1' role='dialog' aria-hidden='true'>\
236             <form id='suspend-modal-form' class='form-inline'>\
237                 <div class='modal-header'>\
238                     <button type='button' class='closebtn' data-dismiss='modal' aria-hidden='true'>×</button>\
239                     <h3 id='suspend-modal-label'>" + SUSPEND_HOLD_ON + " <i><span id='suspend-modal-title'></span></i></h3>\
240                 </div>\
241 \
242                 <div class='modal-body'>\
243                     <input type='hidden' id='suspend-modal-reserve_id' name='reserve_id' />\
244 \
245                     <label for='suspend-modal-until'>Suspend until:</label>\
246                     <input name='suspend_until' id='suspend-modal-until' class='suspend-until' size='10' />\
247 \
248                     <p/><a class='btn btn-link' id='suspend-modal-clear-date' >" + CLEAR_DATE_TO_SUSPEND_INDEFINITELY + "</a></p>\
249 \
250                 </div>\
251 \
252                 <div class='modal-footer'>\
253                     <button id='suspend-modal-submit' class='btn btn-primary' type='submit' name='submit'>" + SUSPEND + "</button>\
254                     <a href='#' data-dismiss='modal' aria-hidden='true' class='cancel'>" + CANCEL + "</a>\
255                 </div>\
256             </form>\
257         </div>\
258     ");
259
260     $("#suspend-modal-until").datepicker({ minDate: 1 }); // Require that "until date" be in the future
261     $("#suspend-modal-clear-date").on( "click", function() { $("#suspend-modal-until").val(""); } );
262
263     $("#suspend-modal-submit").on( "click", function( e ) {
264         e.preventDefault();
265         $.post('/cgi-bin/koha/svc/hold/suspend', $('#suspend-modal-form').serialize(), function( data ){
266           $('#suspend-modal').modal('hide');
267           if ( data.success ) {
268               holdsTable.api().ajax.reload();
269           } else {
270             if ( data.error == "INVALID_DATE" ) {
271                 alert( SUSPEND_HOLD_ERROR_DATE );
272             }
273             else if ( data.error == "HOLD_NOT_FOUND" ) {
274                 alert ( SUSPEND_HOLD_ERROR_NOT_FOUND );
275                 holdsTable.api().ajax.reload();
276             }
277           }
278         });
279     });
280
281 });