]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/js/ui/default/circ/selfcheck/selfcheck.js
added support to self-check for handling lost items. If COPY_STATUS_LOST is in the...
[Evergreen.git] / Open-ILS / web / js / ui / default / circ / selfcheck / selfcheck.js
1 dojo.require('dojo.date.locale');
2 dojo.require('dojo.date.stamp');
3 dojo.require('dijit.form.CheckBox');
4 dojo.require('dijit.form.NumberSpinner');
5 dojo.require('openils.CGI');
6 dojo.require('openils.Util');
7 dojo.require('openils.User');
8 dojo.require('openils.Event');
9 dojo.require('openils.widget.ProgressDialog');
10 dojo.require('openils.widget.OrgUnitFilteringSelect');
11
12 dojo.requireLocalization('openils.circ', 'selfcheck');
13 var localeStrings = dojo.i18n.getLocalization('openils.circ', 'selfcheck');
14
15
16 const SET_BARCODE_REGEX = 'opac.barcode_regex';
17 const SET_PATRON_TIMEOUT = 'circ.selfcheck.patron_login_timeout';
18 const SET_AUTO_OVERRIDE_EVENTS = 'circ.selfcheck.auto_override_checkout_events';
19 const SET_PATRON_PASSWORD_REQUIRED = 'circ.selfcheck.patron_password_required';
20 const SET_AUTO_RENEW_INTERVAL = 'circ.checkout_auto_renew_age';
21 const SET_WORKSTATION_REQUIRED = 'circ.selfcheck.workstation_required';
22 const SET_ALERT_POPUP = 'circ.selfcheck.alert.popup';
23 const SET_ALERT_SOUND = 'circ.selfcheck.alert.sound';
24 const SET_CC_PAYMENT_ALLOWED = 'credit.payments.allow';
25
26 function SelfCheckManager() {
27
28     this.cgi = new openils.CGI();
29     this.staff = null; 
30     this.workstation = null;
31     this.authtoken = null;
32
33     this.patron = null; 
34     this.patronBarcodeRegex = null;
35
36     this.checkouts = [];
37     this.itemsOut = [];
38
39     // During renewals, keep track of the ID of the previous circulation. 
40     // Previous circ is used for tracking failed renewals (for receipts).
41     this.prevCirc = null;
42
43     // current item barcode
44     this.itemBarcode = null; 
45
46     // are we currently performing a renewal?
47     this.isRenewal = false; 
48
49     // dict of org unit settings for "here"
50     this.orgSettings = {};
51
52     // Construct a mock checkout for debugging purposes
53     if(this.mockCheckouts = this.cgi.param('mock-circ')) {
54
55         this.mockCheckout = {
56             payload : {
57                 record : new fieldmapper.mvr(),
58                 copy : new fieldmapper.acp(),
59                 circ : new fieldmapper.circ()
60             }
61         };
62
63         this.mockCheckout.payload.record.title('Jazz improvisation for guitar');
64         this.mockCheckout.payload.record.author('Wise, Les');
65         this.mockCheckout.payload.record.isbn('0634033565');
66         this.mockCheckout.payload.copy.barcode('123456789');
67         this.mockCheckout.payload.circ.renewal_remaining(1);
68         this.mockCheckout.payload.circ.parent_circ(1);
69         this.mockCheckout.payload.circ.due_date('2012-12-21');
70     }
71 }
72
73
74
75 /**
76  * Fetch the org-unit settings, initialize the display, etc.
77  */
78 SelfCheckManager.prototype.init = function() {
79
80     this.staff = openils.User.user;
81     this.workstation = openils.User.workstation;
82     this.authtoken = openils.User.authtoken;
83     this.loadOrgSettings();
84
85     this.circTbody = dojo.byId('oils-selfck-circ-tbody');
86     this.itemsOutTbody = dojo.byId('oils-selfck-circ-out-tbody');
87
88     // workstation is required but none provided
89     if(this.orgSettings[SET_WORKSTATION_REQUIRED] && !this.workstation) {
90         if(confirm(dojo.string.substitute(localeStrings.WORKSTATION_REQUIRED))) {
91             this.registerWorkstation();
92         }
93         return;
94     }
95     
96     var self = this;
97     // connect onclick handlers to the various navigation links
98     var linkHandlers = {
99         'oils-selfck-hold-details-link' : function() { self.drawHoldsPage(); },
100         'oils-selfck-view-fines-link' : function() { self.drawFinesPage(); },
101         'oils-selfck-pay-fines-link' : function() { self.drawPayFinesPage(); },
102         'oils-selfck-nav-home' : function() { self.drawCircPage(); },
103         'oils-selfck-nav-logout' : function() { self.logoutPatron(); },
104         'oils-selfck-nav-logout-print' : function() { self.logoutPatron(true); },
105         'oils-selfck-items-out-details-link' : function() { self.drawItemsOutPage(); },
106         'oils-selfck-print-list-link' : function() { self.printList(); }
107     }
108
109     for(var id in linkHandlers) 
110         dojo.connect(dojo.byId(id), 'onclick', linkHandlers[id]);
111
112
113     if(this.cgi.param('patron')) {
114         
115         // Patron barcode via cgi param.  Mainly used for debugging and
116         // only works if password is not required by policy
117         this.loginPatron(this.cgi.param('patron'));
118
119     } else {
120         this.drawLoginPage();
121     }
122
123     /**
124      * To test printing, pass a URL param of 'testprint'.  The value for the param
125      * should be a JSON string like so:  [{circ:<circ_id>}, ...]
126      */
127     var testPrint = this.cgi.param('testprint');
128     if(testPrint) {
129         this.checkouts = JSON2js(testPrint);
130         this.printSessionReceipt();
131         this.checkouts = [];
132     }
133 }
134
135
136 /**
137  * Registers a new workstion
138  */
139 SelfCheckManager.prototype.registerWorkstation = function() {
140     
141     oilsSelfckWsDialog.show();
142
143     new openils.User().buildPermOrgSelector(
144         'REGISTER_WORKSTATION', 
145         oilsSelfckWsLocSelector, 
146         this.staff.home_ou()
147     );
148
149
150     var self = this;
151     dojo.connect(oilsSelfckWsSubmit, 'onClick', 
152
153         function() {
154             oilsSelfckWsDialog.hide();
155             var name = oilsSelfckWsLocSelector.attr('displayedValue') + '-' + oilsSelfckWsName.attr('value');
156
157             var res = fieldmapper.standardRequest(
158                 ['open-ils.actor', 'open-ils.actor.workstation.register'],
159                 { params : [
160                         self.authtoken, name, oilsSelfckWsLocSelector.attr('value')
161                     ]
162                 }
163             );
164
165             if(evt = openils.Event.parse(res)) {
166                 if(evt.textcode == 'WORKSTATION_NAME_EXISTS') {
167                     if(confirm(localeStrings.WORKSTATION_EXISTS)) {
168                         location.href = location.href.replace(/\?.*/, '') + '?ws=' + name;
169                     } else {
170                         self.registerWorkstation();
171                     }
172                     return;
173                 } else {
174                     alert(evt);
175                 }
176             } else {
177                 location.href = location.href.replace(/\?.*/, '') + '?ws=' + name;
178             }
179         }
180     );
181 }
182
183 /**
184  * Loads the org unit settings
185  */
186 SelfCheckManager.prototype.loadOrgSettings = function() {
187
188     var settings = fieldmapper.aou.fetchOrgSettingBatch(
189         this.staff.ws_ou(), [
190             SET_BARCODE_REGEX,
191             SET_PATRON_TIMEOUT,
192             SET_ALERT_POPUP,
193             SET_ALERT_SOUND,
194             SET_AUTO_OVERRIDE_EVENTS,
195             SET_PATRON_PASSWORD_REQUIRED,
196             SET_AUTO_RENEW_INTERVAL,
197             SET_WORKSTATION_REQUIRED,
198             SET_CC_PAYMENT_ALLOWED
199         ]
200     );
201
202     for(k in settings) {
203         if(settings[k])
204             this.orgSettings[k] = settings[k].value;
205     }
206
207     if(settings[SET_BARCODE_REGEX]) 
208         this.patronBarcodeRegex = new RegExp(settings[SET_BARCODE_REGEX].value);
209 }
210
211 SelfCheckManager.prototype.drawLoginPage = function() {
212     var self = this;
213
214     var bcHandler = function(barcode) {
215         // handle patron barcode entry
216
217         if(self.orgSettings[SET_PATRON_PASSWORD_REQUIRED]) {
218             
219             // password is required.  wire up the scan box to read it
220             self.updateScanBox({
221                 msg : 'Please enter your password', // TODO i18n 
222                 handler : function(pw) { self.loginPatron(barcode, pw); },
223                 password : true
224             });
225
226         } else {
227             // password is not required, go ahead and login
228             self.loginPatron(barcode);
229         }
230     };
231
232     this.updateScanBox({
233         msg : 'Please log in with your library barcode.', // TODO
234         handler : bcHandler
235     });
236 }
237
238 /**
239  * Login the patron.  
240  */
241 SelfCheckManager.prototype.loginPatron = function(barcode, passwd) {
242
243     if(this.orgSettings[SET_PATRON_PASSWORD_REQUIRED]) {
244         
245         if(!passwd) {
246             // would only happen in dev/debug mode when using the patron= param
247             alert('password required by org setting.  remove patron= from URL'); 
248             return;
249         }
250
251         // patron password is required.  Verify it.
252
253         var res = fieldmapper.standardRequest(
254             ['open-ils.actor', 'open-ils.actor.verify_user_password'],
255             {params : [this.authtoken, barcode, null, hex_md5(passwd)]}
256         );
257
258         if(res == 0) {
259             // user-not-found results in login failure
260             this.handleAlert(
261                 dojo.string.substitute(localeStrings.LOGIN_FAILED, [barcode]),
262                 false, 'login-failure'
263             );
264             this.drawLoginPage();
265             return;
266         }
267     } 
268
269     // retrieve the fleshed user by barcode
270     this.patron = fieldmapper.standardRequest(
271         ['open-ils.actor', 'open-ils.actor.user.fleshed.retrieve_by_barcode'],
272         {params : [this.authtoken, barcode]}
273     );
274
275     var evt = openils.Event.parse(this.patron);
276     if(evt) {
277         this.handleAlert(
278             dojo.string.substitute(localeStrings.LOGIN_FAILED, [barcode]),
279             false, 'login-failure'
280         );
281         this.drawLoginPage();
282
283     } else {
284
285         this.handleAlert('', false, 'login-success');
286         dojo.byId('oils-selfck-user-banner').innerHTML = 'Welcome, ' + this.patron.first_given_name(); // TODO i18n
287         this.drawCircPage();
288     }
289 }
290
291
292 SelfCheckManager.prototype.handleAlert = function(message, shouldPopup, sound) {
293
294     console.log("Handling alert " + message);
295
296     dojo.byId('oils-selfck-status-div').innerHTML = message;
297
298     if(shouldPopup && this.orgSettings[SET_ALERT_POPUP]) 
299         alert(message);
300
301     if(sound && this.orgSettings[SET_ALERT_SOUND])
302         openils.Util.playAudioUrl(SelfCheckManager.audioConfig[sound]);
303 }
304
305
306 /**
307  * Manages the main input box
308  * @param msg The context message to display with the box
309  * @param clearOnly Don't update the context message, just clear the value and re-focus
310  * @param handler Optional "on-enter" handler.  
311  */
312 SelfCheckManager.prototype.updateScanBox = function(args) {
313     args = args || {};
314
315     if(args.select) {
316         selfckScanBox.domNode.select();
317     } else {
318         selfckScanBox.attr('value', '');
319     }
320
321     if(args.password) {
322         selfckScanBox.domNode.setAttribute('type', 'password');
323     } else {
324         selfckScanBox.domNode.setAttribute('type', '');
325     }
326
327     if(args.value)
328         selfckScanBox.attr('value', args.value);
329
330     if(args.msg) 
331         dojo.byId('oils-selfck-scan-text').innerHTML = args.msg;
332
333     if(selfckScanBox._lastHandler && (args.handler || args.clearHandler)) {
334         dojo.disconnect(selfckScanBox._lastHandler);
335     }
336
337     if(args.handler) {
338         selfckScanBox._lastHandler = dojo.connect(
339             selfckScanBox, 
340             'onKeyDown', 
341             function(e) {
342                 if(e.keyCode != dojo.keys.ENTER) 
343                     return;
344                 args.handler(selfckScanBox.attr('value'));
345             }
346         );
347     }
348
349     selfckScanBox.focus();
350 }
351
352 /**
353  *  Sets up the checkout/renewal interface
354  */
355 SelfCheckManager.prototype.drawCircPage = function() {
356
357     openils.Util.show('oils-selfck-circ-tbody');
358     this.goToTab('checkout');
359
360     while(this.itemsOutTbody.childNodes[0])
361         this.itemsOutTbody.removeChild(this.itemsOutTbody.childNodes[0]);
362
363     var self = this;
364     this.updateScanBox({
365         msg : 'Please enter an item barcode', // TODO i18n
366         handler : function(barcode) { self.checkout(barcode); }
367     });
368
369     if(!this.circTemplate)
370         this.circTemplate = this.circTbody.removeChild(dojo.byId('oils-selfck-circ-row'));
371
372     // fines summary
373     this.updateFinesSummary();
374
375     // holds summary
376     this.updateHoldsSummary();
377
378     // items out summary
379     this.updateCircSummary();
380
381     // render mock checkouts for debugging?
382     if(this.mockCheckouts) {
383         for(var i in [1,2,3]) 
384             this.displayCheckout(this.mockCheckout, 'checkout');
385     }
386 }
387
388
389 SelfCheckManager.prototype.updateFinesSummary = function() {
390     var self = this; 
391
392     // fines summary
393     fieldmapper.standardRequest(
394         ['open-ils.actor', 'open-ils.actor.user.fines.summary'],
395         {   async : true,
396             params : [this.authtoken, this.patron.id()],
397             oncomplete : function(r) {
398
399                 var summary = openils.Util.readResponse(r);
400
401                 dojo.byId('oils-selfck-fines-total').innerHTML = 
402                     dojo.string.substitute(
403                         localeStrings.TOTAL_FINES_ACCOUNT, 
404                         [summary.balance_owed()]
405                     );
406
407                 self.creditPayableBalance = summary.balance_owed();
408             }
409         }
410     );
411 }
412
413
414 SelfCheckManager.prototype.drawItemsOutPage = function() {
415     openils.Util.hide('oils-selfck-circ-tbody');
416
417     this.goToTab('items_out');
418
419     while(this.itemsOutTbody.childNodes[0])
420         this.itemsOutTbody.removeChild(this.itemsOutTbody.childNodes[0]);
421
422     progressDialog.show(true);
423     
424     var self = this;
425     fieldmapper.standardRequest(
426         ['open-ils.circ', 'open-ils.circ.actor.user.checked_out.atomic'],
427         {
428             async : true,
429             params : [this.authtoken, this.patron.id()],
430             oncomplete : function(r) {
431
432                 var resp = openils.Util.readResponse(r);
433
434                 var circs = resp.sort(
435                     function(a, b) {
436                         if(a.circ.due_date() > b.circ.due_date())
437                             return -1;
438                         return 1;
439                     }
440                 );
441
442                 progressDialog.hide();
443
444                 self.itemsOut = [];
445                 dojo.forEach(circs,
446                     function(circ) {
447                         self.itemsOut.push(circ.circ.id());
448                         self.displayCheckout(
449                             {payload : circ}, 
450                             (circ.circ.parent_circ()) ? 'renew' : 'checkout',
451                             true
452                         );
453                     }
454                 );
455             }
456         }
457     );
458 }
459
460
461 SelfCheckManager.prototype.goToTab = function(name) {
462     this.tabName = name;
463
464     openils.Util.hide('oils-selfck-fines-page');
465     openils.Util.hide('oils-selfck-payment-page');
466     openils.Util.hide('oils-selfck-holds-page');
467     openils.Util.hide('oils-selfck-circ-page');
468     openils.Util.hide('oils-selfck-pay-fines-link');
469     
470     switch(name) {
471         case 'checkout':
472             openils.Util.show('oils-selfck-circ-page');
473             break;
474         case 'items_out':
475             openils.Util.show('oils-selfck-circ-page');
476             break;
477         case 'holds':
478             openils.Util.show('oils-selfck-holds-page');
479             break;
480         case 'fines':
481             openils.Util.show('oils-selfck-fines-page');
482             break;
483         case 'payment':
484             openils.Util.show('oils-selfck-payment-page');
485             break;
486     }
487 }
488
489
490 SelfCheckManager.prototype.printList = function() {
491     switch(this.tabName) {
492         case 'checkout':
493             this.printSessionReceipt();
494             break;
495         case 'items_out':
496             this.printItemsOutReceipt();
497             break;
498         case 'holds':
499             this.printHoldsReceipt();
500             break;
501         case 'fines':
502             this.printFinesReceipt();
503             break;
504     }
505 }
506
507 SelfCheckManager.prototype.updateHoldsSummary = function() {
508
509     if(!this.holdsSummary) {
510         var summary = fieldmapper.standardRequest(
511             ['open-ils.circ', 'open-ils.circ.holds.user_summary'],
512             {params : [this.authtoken, this.patron.id()]}
513         );
514
515         this.holdsSummary = {};
516         this.holdsSummary.ready = Number(summary['4']);
517         this.holdsSummary.total = 0;
518
519         for(var i in summary) 
520             this.holdsSummary.total += Number(summary[i]);
521     }
522
523     dojo.byId('oils-selfck-holds-total').innerHTML = 
524         dojo.string.substitute(
525             localeStrings.TOTAL_HOLDS, 
526             [this.holdsSummary.total]
527         );
528
529     dojo.byId('oils-selfck-holds-ready').innerHTML = 
530         dojo.string.substitute(
531             localeStrings.HOLDS_READY_FOR_PICKUP, 
532             [this.holdsSummary.ready]
533         );
534 }
535
536
537 SelfCheckManager.prototype.updateCircSummary = function(increment) {
538
539     if(!this.circSummary) {
540
541         var summary = fieldmapper.standardRequest(
542             ['open-ils.actor', 'open-ils.actor.user.checked_out.count'],
543             {params : [this.authtoken, this.patron.id()]}
544         );
545
546         this.circSummary = {
547             total : Number(summary.out) + Number(summary.overdue),
548             overdue : Number(summary.overdue),
549             session : 0
550         };
551     }
552
553     if(increment) {
554         // local checkout occurred.  Add to the total and the session.
555         this.circSummary.total += 1;
556         this.circSummary.session += 1;
557     }
558
559     dojo.byId('oils-selfck-circ-account-total').innerHTML = 
560         dojo.string.substitute(
561             localeStrings.TOTAL_ITEMS_ACCOUNT, 
562             [this.circSummary.total]
563         );
564
565     dojo.byId('oils-selfck-circ-session-total').innerHTML = 
566         dojo.string.substitute(
567             localeStrings.TOTAL_ITEMS_SESSION, 
568             [this.circSummary.session]
569         );
570 }
571
572
573 SelfCheckManager.prototype.drawHoldsPage = function() {
574
575     // TODO add option to hid scanBox
576     // this.updateScanBox(...)
577
578     this.goToTab('holds');
579
580     this.holdTbody = dojo.byId('oils-selfck-hold-tbody');
581     if(!this.holdTemplate)
582         this.holdTemplate = this.holdTbody.removeChild(dojo.byId('oils-selfck-hold-row'));
583     while(this.holdTbody.childNodes[0])
584         this.holdTbody.removeChild(this.holdTbody.childNodes[0]);
585
586     progressDialog.show(true);
587
588     var self = this;
589     fieldmapper.standardRequest( // fetch the hold IDs
590
591         ['open-ils.circ', 'open-ils.circ.holds.id_list.retrieve'],
592         {   async : true,
593             params : [this.authtoken, this.patron.id()],
594
595             oncomplete : function(r) { 
596                 var ids = openils.Util.readResponse(r);
597                 if(!ids || ids.length == 0) {
598                     progressDialog.hide();
599                     return;
600                 }
601
602                 fieldmapper.standardRequest( // fetch the hold objects with fleshed details
603                     ['open-ils.circ', 'open-ils.circ.hold.details.batch.retrieve.atomic'],
604                     {   async : true,
605                         params : [self.authtoken, ids],
606
607                         oncomplete : function(rr) {
608                             self.drawHolds(openils.Util.readResponse(rr));
609                         }
610                     }
611                 );
612             }
613         }
614     );
615 }
616
617 /**
618  * Fetch and add a single hold to the list of holds
619  */
620 SelfCheckManager.prototype.drawHolds = function(holds) {
621
622     holds = holds.sort(
623         // sort available holds to the top of the list
624         // followed by queue position order
625         function(a, b) {
626             if(a.status == 4) return -1;
627             if(a.queue_position < b.queue_position) return -1;
628             return 1;
629         }
630     );
631
632     this.holds = holds;
633
634     progressDialog.hide();
635
636     for(var i in holds) {
637
638         var data = holds[i];
639         var row = this.holdTemplate.cloneNode(true);
640
641         if(data.mvr.isbn()) {
642             this.byName(row, 'jacket').setAttribute('src', '/opac/extras/ac/jacket/small/' + data.mvr.isbn());
643         }
644
645         this.byName(row, 'title').innerHTML = data.mvr.title();
646         this.byName(row, 'author').innerHTML = data.mvr.author();
647
648         if(data.status == 4) {
649
650             // hold is ready for pickup
651             this.byName(row, 'status').innerHTML = localeStrings.HOLD_STATUS_READY;
652
653         } else {
654
655             // hold is still pending
656             this.byName(row, 'status').innerHTML = 
657                 dojo.string.substitute(
658                     localeStrings.HOLD_STATUS_WAITING,
659                     [data.queue_position, data.potential_copies]
660                 );
661         }
662
663         this.holdTbody.appendChild(row);
664     }
665 }
666
667
668 SelfCheckManager.prototype.drawPayFinesPage = function() {
669     this.goToTab('payment');
670
671     dojo.byId('oils-selfck-cc-payment-summary').innerHTML = 
672         dojo.string.substitute(
673             localeStrings.CC_PAYABLE_BALANCE,
674             [this.creditPayableBalance]
675         );
676
677     oilsSelfckCCNumber.attr('value', '');
678     oilsSelfckCCMonth.attr('value', '01');
679     oilsSelfckCCAmount.attr('value', this.creditPayableBalance);
680     oilsSelfckCCYear.attr('value', new Date().getFullYear());
681     oilsSelfckCCFName.attr('value', this.patron.first_given_name());
682     oilsSelfckCCLName.attr('value', this.patron.family_name());
683     var addr = this.patron.billing_address() || this.patron.mailing_address();
684
685     if(addr) {
686         oilsSelfckCCStreet.attr('value', addr.street1()+' '+addr.street2());
687         oilsSelfckCCCity.attr('value', addr.city());
688         oilsSelfckCCState.attr('value', addr.state());
689         oilsSelfckCCZip.attr('value', addr.post_code());
690     }
691
692     dojo.connect(oilsSelfckEditDetails, 'onChange', 
693         function(newVal) {
694             dojo.forEach(
695                 [   oilsSelfckCCFName, 
696                     oilsSelfckCCLName, 
697                     oilsSelfckCCStreet, 
698                     oilsSelfckCCCity, 
699                     oilsSelfckCCState, 
700                     oilsSelfckCCZip
701                 ],
702                 function(dij) { dij.attr('disabled', !newVal); }
703             );
704         }
705     );
706
707
708     var self = this;
709     dojo.connect(oilsSelfckCCSubmit, 'onClick',
710         function() {
711             progressDialog.show(true);
712             self.sendCCPayment();
713         }
714     );
715 }
716
717
718 // In this form, this code only supports global on/off credit card 
719 // payments and does not dissallow payments to transactions that started
720 // at remote locations or transactions that have accumulated billings at 
721 // remote locations that dissalow credit card payments.
722 // TODO add per-transaction blocks for orgs that do not support CC payments
723
724 SelfCheckManager.prototype.sendCCPayment = function() {
725
726     var args = {
727         userid : this.patron.id(),
728         payment_type : 'credit_card_payment',
729         payments : [],
730         cc_args : {
731             where_process : 1,
732             number : oilsSelfckCCNumber.attr('value'),
733             expire_year : oilsSelfckCCYear.attr('value'),
734             expire_month : oilsSelfckCCMonth.attr('value'),
735             billing_first : oilsSelfckCCFName.attr('value'),
736             billing_last : oilsSelfckCCLName.attr('value'),
737             billing_address : oilsSelfckCCStreet.attr('value'),
738             billing_city : oilsSelfckCCCity.attr('value'),
739             billing_state : oilsSelfckCCState.attr('value'),
740             billing_zip : oilsSelfckCCZip.attr('value')
741         }
742     }
743
744     var funds = oilsSelfckCCAmount.attr('value');
745
746     xacts = this.finesData.sort(
747         function(a, b) {
748             if(a.transaction.xact_start() < b.transaction.xact_start()) 
749                 return -1;
750             return 1;
751         }
752     );
753
754     for(var i in xacts) {
755         var xact = xacts[i].transaction;
756         var paying = Math.min(funds, xact.balance_owed());
757         args.payments.push([xact.id(), paying]);
758         funds -= paying;
759         if(funds <= 0) break;
760     }
761
762     var resp = fieldmapper.standardRequest(
763         ['open-ils.circ', 'open-ils.circ.money.payment'],
764         {params : [this.authtoken, args]}
765     );
766
767     progressDialog.hide();
768
769     var evt = openils.Event.parse(resp);
770     if(evt) {
771         alert(evt);
772     } else {
773         this.updateFinesSummary();
774         this.drawFinesPage();
775     }
776 }
777
778
779 SelfCheckManager.prototype.drawFinesPage = function() {
780
781     // TODO add option to hid scanBox
782     // this.updateScanBox(...)
783
784     this.goToTab('fines');
785     progressDialog.show(true);
786
787     if(this.creditPayableBalance > 0 && this.orgSettings[SET_CC_PAYMENT_ALLOWED]) {
788         openils.Util.show('oils-selfck-pay-fines-link', 'inline');
789     }
790
791     this.finesTbody = dojo.byId('oils-selfck-fines-tbody');
792     if(!this.finesTemplate)
793         this.finesTemplate = this.finesTbody.removeChild(dojo.byId('oils-selfck-fines-row'));
794     while(this.finesTbody.childNodes[0])
795         this.finesTbody.removeChild(this.finesTbody.childNodes[0]);
796
797     var self = this;
798     var handler = function(dataList) {
799         self.finesCount = dataList.length;
800         self.finesData = dataList;
801         for(var i in dataList) {
802             var data = dataList[i];
803             var row = self.finesTemplate.cloneNode(true);
804             var type = data.transaction.xact_type();
805             if(type == 'circulation') {
806                 self.byName(row, 'type').innerHTML = type;
807                 self.byName(row, 'details').innerHTML = data.record.title();
808             } else if(type == 'grocery') {
809                 self.byName(row, 'type').innerHTML = 'Miscellaneous'; // Go ahead and head off any confusion around "grocery".  TODO i18n
810                 self.byName(row, 'details').innerHTML = data.transaction.last_billing_type();
811             }
812             self.byName(row, 'total_owed').innerHTML = data.transaction.total_owed();
813             self.byName(row, 'total_paid').innerHTML = data.transaction.total_paid();
814             self.byName(row, 'balance').innerHTML = data.transaction.balance_owed();
815             self.finesTbody.appendChild(row);
816         }
817     }
818
819     fieldmapper.standardRequest( 
820         ['open-ils.actor', 'open-ils.actor.user.transactions.have_balance.fleshed'],
821         {   async : true,
822             params : [this.authtoken, this.patron.id()],
823             oncomplete : function(r) { 
824                 progressDialog.hide();
825                 handler(openils.Util.readResponse(r));
826             }
827         }
828     );
829 }
830
831 SelfCheckManager.prototype.checkin = function(barcode) {
832
833     var resp = fieldmapper.standardRequest(
834         ['open-ils.circ', 'open-ils.circ.checkin.override'],
835         {params : [
836             this.authtoken, {
837                 patron_id : this.patron.id(),
838                 copy_barcode : barcode,
839                 noop : true
840             }
841         ]}
842     );
843
844     if(!resp.length) resp = [resp];
845     for(var i = 0; i < resp.length; i++) {
846         var tc = openils.Event.parse(resp[i]).textcode;
847         if(tc == 'SUCCESS' || tc == 'NO_CHANGE') {
848             continue;
849         } else {
850             return false;
851         }
852     }
853
854     return true;
855 }
856
857 /**
858  * Check out a single item.  If the item is already checked 
859  * out to the patron, redirect to renew()
860  */
861 SelfCheckManager.prototype.checkout = function(barcode, override) {
862
863     this.prevCirc = null;
864
865     if(!barcode) {
866         this.updateScanbox(null, true);
867         return;
868     }
869
870     if(this.mockCheckouts) {
871         // if we're in mock-checkout mode, just insert another
872         // fake circ into the table and get out of here.
873         this.displayCheckout(this.mockCheckout, 'checkout');
874         return;
875     }
876
877     // TODO see if it's a patron barcode
878     // TODO see if this item has already been checked out in this session
879
880     var method = 'open-ils.circ.checkout.full';
881     if(override) method += '.override';
882
883     console.log("Checkout out item " + barcode + " with method " + method);
884
885     var result = fieldmapper.standardRequest(
886         ['open-ils.circ', 'open-ils.circ.checkout.full'],
887         {params: [
888             this.authtoken, {
889                 patron_id : this.patron.id(),
890                 copy_barcode : barcode
891             }
892         ]}
893     );
894
895     var stat = this.handleXactResult('checkout', barcode, result);
896
897     if(stat.override) {
898         this.checkout(barcode, true);
899     } else if(stat.doOver) {
900         this.checkout(barcode);
901     } else if(stat.renew) {
902         this.renew(barcode);
903     }
904 }
905
906
907 SelfCheckManager.prototype.handleXactResult = function(action, item, result) {
908
909     var displayText = '';
910
911     // If true, the display message is important enough to pop up.  Whether or not
912     // an alert() actually occurs, depends on org unit settings
913     var popup = false;  
914     var sound = ''; // sound file reference
915     var payload = result.payload || {};
916     var overrideEvents = this.orgSettings[SET_AUTO_OVERRIDE_EVENTS];
917         
918     if(result.textcode == 'NO_SESSION') {
919
920         return this.logoutStaff();
921
922     } else if(result.textcode == 'SUCCESS') {
923
924         if(action == 'checkout') {
925
926             displayText = dojo.string.substitute(localeStrings.CHECKOUT_SUCCESS, [item]);
927             this.displayCheckout(result, 'checkout');
928
929             if(payload.holds_fulfilled && payload.holds_fulfilled.length) {
930                 // A hold was fulfilled, update the hold numbers in the circ summary
931                 console.log("fulfilled hold " + payload.holds_fulfilled + " during checkout");
932                 this.holdsSummary = null;
933                 this.updateHoldsSummary();
934             }
935
936             this.updateCircSummary(true);
937
938         } else if(action == 'renew') {
939
940             displayText = dojo.string.substitute(localeStrings.RENEW_SUCCESS, [item]);
941             this.displayCheckout(result, 'renew');
942         }
943
944         this.checkouts.push({circ : result.payload.circ.id()});
945         sound = 'checkout-success';
946         this.updateScanBox();
947
948     } else if(result.textcode == 'OPEN_CIRCULATION_EXISTS' && action == 'checkout') {
949
950         // Server says the item is already checked out.  If it's checked out to the
951         // current user, we may need to renew it.  
952
953         if(payload.old_circ) { 
954
955             /*
956             old_circ refers to the previous checkout IFF it's for the same user. 
957             If no auto-renew interval is not defined, assume we should renew it
958             If an auto-renew interval is defined and the payload comes back with
959             auto_renew set to true, do the renewal.  Otherwise, let the patron know
960             the item is already checked out to them.  */
961
962             if( !this.orgSettings[SET_AUTO_RENEW_INTERVAL] ||
963                 (this.orgSettings[SET_AUTO_RENEW_INTERVAL] && payload.auto_renew) ) {
964                 this.prevCirc = payload.old_circ.id();
965                 return { renew : true };
966             }
967
968             popup = true;
969             sound = 'checkout-failure';
970             displayText = dojo.string.substitute(localeStrings.ALREADY_OUT, [item]);
971
972         } else {
973
974             console.log(js2JSON(result.payload));
975             console.log(result.payload.copy.status() +' '+overrideEvents);
976
977             if( // copy is marked lost.  if configured to do so, check it in and try again.
978                 result.payload.copy && 
979                 result.payload.copy.status() == /* LOST */ 3 &&
980                 overrideEvents && overrideEvents.length &&
981                 overrideEvents.indexOf('COPY_STATUS_LOST') != -1) {
982
983                     if(this.checkin(item)) {
984                         return { doOver : true };
985                     }
986             }
987
988             
989             // item is checked out to some other user
990             popup = true;
991             sound = 'checkout-failure';
992             displayText = dojo.string.substitute(localeStrings.OPEN_CIRCULATION_EXISTS, [item]);
993         }
994
995         this.updateScanBox({select:true});
996
997     } else {
998
999     
1000         if(overrideEvents && overrideEvents.length) {
1001             
1002             // see if the events we received are all in the list of
1003             // events to override
1004     
1005             if(!result.length) result = [result];
1006     
1007             var override = true;
1008             for(var i = 0; i < result.length; i++) {
1009                 var match = overrideEvents.filter(
1010                     function(e) { return (e == result[i].textcode); })[0];
1011                 if(!match) {
1012                     override = false;
1013                     break;
1014                 }
1015             }
1016
1017             if(override) 
1018                 return { override : true };
1019         }
1020     
1021         this.updateScanBox({select : true});
1022         popup = true;
1023         sound = 'checkout-failure';
1024
1025         if(action == 'renew')
1026             this.checkouts.push({circ : this.prevCirc, renewal_failure : true});
1027
1028         if(result.length) 
1029             result = result[0];
1030
1031         switch(result.textcode) {
1032
1033             // TODO custom handler for blocking penalties
1034
1035             case 'MAX_RENEWALS_REACHED' :
1036                 displayText = dojo.string.substitute(
1037                     localeStrings.MAX_RENEWALS, [item]);
1038                 break;
1039
1040             case 'ITEM_NOT_CATALOGED' :
1041                 displayText = dojo.string.substitute(
1042                     localeStrings.ITEM_NOT_CATALOGED, [item]);
1043                 break;
1044
1045             case 'OPEN_CIRCULATION_EXISTS' :
1046                 displayText = dojo.string.substitute(
1047                     localeStrings.OPEN_CIRCULATION_EXISTS, [item]);
1048
1049                 break;
1050
1051             default:
1052                 console.error('Unhandled event ' + result.textcode);
1053
1054                 if(action == 'checkout' || action == 'renew') {
1055                     displayText = dojo.string.substitute(
1056                         localeStrings.GENERIC_CIRC_FAILURE, [item]);
1057                 } else {
1058                     displayText = dojo.string.substitute(
1059                         localeStrings.UNKNOWN_ERROR, [result.textcode]);
1060                 }
1061         }
1062     }
1063
1064     this.handleAlert(displayText, popup, sound);
1065     return {};
1066 }
1067
1068
1069 /**
1070  * Renew an item
1071  */
1072 SelfCheckManager.prototype.renew = function(barcode, override) {
1073
1074     var method = 'open-ils.circ.renew';
1075     if(override) method += '.override';
1076
1077     console.log("Renewing item " + barcode + " with method " + method);
1078
1079     var result = fieldmapper.standardRequest(
1080         ['open-ils.circ', method],
1081         {params: [
1082             this.authtoken, {
1083                 patron_id : this.patron.id(),
1084                 copy_barcode : barcode
1085             }
1086         ]}
1087     );
1088
1089     console.log(js2JSON(result));
1090
1091     var stat = this.handleXactResult('renew', barcode, result);
1092
1093     if(stat.override)
1094         this.renew(barcode, true);
1095 }
1096
1097 /**
1098  * Display the result of a checkout or renewal in the items out table
1099  */
1100 SelfCheckManager.prototype.displayCheckout = function(evt, type, itemsOut) {
1101
1102     var copy = evt.payload.copy;
1103     var record = evt.payload.record;
1104     var circ = evt.payload.circ;
1105     var row = this.circTemplate.cloneNode(true);
1106
1107     if(record.isbn()) {
1108         this.byName(row, 'jacket').setAttribute('src', '/opac/extras/ac/jacket/small/' + record.isbn());
1109     }
1110
1111     this.byName(row, 'barcode').innerHTML = copy.barcode();
1112     this.byName(row, 'title').innerHTML = record.title();
1113     this.byName(row, 'author').innerHTML = record.author();
1114     this.byName(row, 'remaining').innerHTML = circ.renewal_remaining();
1115     openils.Util.show(this.byName(row, type));
1116
1117     var date = dojo.date.stamp.fromISOString(circ.due_date());
1118     this.byName(row, 'due_date').innerHTML = 
1119         dojo.date.locale.format(date, {selector : 'date'});
1120
1121     // put new circs at the top of the list
1122     var tbody = this.circTbody;
1123     if(itemsOut) tbody = this.itemsOutTbody;
1124     tbody.insertBefore(row, tbody.getElementsByTagName('tr')[0]);
1125 }
1126
1127
1128 SelfCheckManager.prototype.byName = function(node, name) {
1129     return dojo.query('[name=' + name+']', node)[0];
1130 }
1131
1132
1133 SelfCheckManager.prototype.initPrinter = function() {
1134     try { // Mozilla only
1135                 netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserRead");
1136         netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
1137         netscape.security.PrivilegeManager.enablePrivilege('UniversalPreferencesRead');
1138         netscape.security.PrivilegeManager.enablePrivilege('UniversalPreferencesWrite');
1139         var pref = Components.classes["@mozilla.org/preferences-service;1"].getService(Components.interfaces.nsIPrefBranch);
1140         if (pref)
1141             pref.setBoolPref('print.always_print_silent', true);
1142     } catch(E) {
1143         console.log("Unable to initialize auto-printing"); 
1144     }
1145 }
1146
1147 /**
1148  * Print a receipt for this session's checkouts
1149  */
1150 SelfCheckManager.prototype.printSessionReceipt = function(callback) {
1151
1152     var circIds = [];
1153     var circCtx = []; // circ context data.  in this case, renewal_failure info
1154
1155     // collect the circs and failure info
1156     dojo.forEach(
1157         this.checkouts, 
1158         function(blob) {
1159             circIds.push(blob.circ);
1160             circCtx.push({renewal_failure:blob.renewal_failure});
1161         }
1162     );
1163
1164     var params = [
1165         this.authtoken, 
1166         this.staff.ws_ou(),
1167         null,
1168         'format.selfcheck.checkout',
1169         'print-on-demand',
1170         circIds,
1171         circCtx
1172     ];
1173
1174     var self = this;
1175     fieldmapper.standardRequest(
1176         ['open-ils.circ', 'open-ils.circ.fire_circ_trigger_events'],
1177         {   
1178             async : true,
1179             params : params,
1180             oncomplete : function(r) {
1181                 var resp = openils.Util.readResponse(r);
1182                 var output = resp.template_output();
1183                 if(output) {
1184                     self.printData(output.data(), self.checkouts.length, callback); 
1185                 } else {
1186                     var error = resp.error_output();
1187                     if(error) {
1188                         throw new Error("Error creating receipt: " + error.data());
1189                     } else {
1190                         throw new Error("No receipt data returned from server");
1191                     }
1192                 }
1193             }
1194         }
1195     );
1196 }
1197
1198 SelfCheckManager.prototype.printData = function(data, numItems, callback) {
1199
1200     var win = window.open('', '', 'resizable,width=700,height=500,scrollbars=1'); 
1201     win.document.body.innerHTML = data;
1202     win.print();
1203
1204     /*
1205      * There is no way to know when the browser is done printing.
1206      * Make a best guess at when to close the print window by basing
1207      * the setTimeout wait on the number of items to be printed plus
1208      * a small buffer
1209      */
1210     var sleepTime = 1000;
1211     if(numItems > 0) 
1212         sleepTime += (numItems / 2) * 1000;
1213
1214     setTimeout(
1215         function() { 
1216             win.close(); // close the print window
1217             if(callback)
1218                 callback(); // fire optional post-print callback
1219         },
1220         sleepTime 
1221     );
1222 }
1223
1224
1225 /**
1226  * Print a receipt for this user's items out
1227  */
1228 SelfCheckManager.prototype.printItemsOutReceipt = function(callback) {
1229
1230     if(!this.itemsOut.length) return;
1231
1232     progressDialog.show(true);
1233
1234     var params = [
1235         this.authtoken, 
1236         this.staff.ws_ou(),
1237         null,
1238         'format.selfcheck.items_out',
1239         'print-on-demand',
1240         this.itemsOut
1241     ];
1242
1243     var self = this;
1244     fieldmapper.standardRequest(
1245         ['open-ils.circ', 'open-ils.circ.fire_circ_trigger_events'],
1246         {   
1247             async : true,
1248             params : params,
1249             oncomplete : function(r) {
1250                 progressDialog.hide();
1251                 var resp = openils.Util.readResponse(r);
1252                 var output = resp.template_output();
1253                 if(output) {
1254                     self.printData(output.data(), self.itemsOut.length, callback); 
1255                 } else {
1256                     var error = resp.error_output();
1257                     if(error) {
1258                         throw new Error("Error creating receipt: " + error.data());
1259                     } else {
1260                         throw new Error("No receipt data returned from server");
1261                     }
1262                 }
1263             }
1264         }
1265     );
1266 }
1267
1268 /**
1269  * Print a receipt for this user's items out
1270  */
1271 SelfCheckManager.prototype.printHoldsReceipt = function(callback) {
1272
1273     if(!this.holds.length) return;
1274
1275     progressDialog.show(true);
1276
1277     var holdIds = [];
1278     var holdData = [];
1279
1280     dojo.forEach(this.holds,
1281         function(data) {
1282             holdIds.push(data.hold.id());
1283             if(data.status == 4) {
1284                 holdData.push({ready : true});
1285             } else {
1286                 holdData.push({
1287                     queue_position : data.queue_position, 
1288                     potential_copies : data.potential_copies
1289                 });
1290             }
1291         }
1292     );
1293
1294     var params = [
1295         this.authtoken, 
1296         this.staff.ws_ou(),
1297         null,
1298         'format.selfcheck.holds',
1299         'print-on-demand',
1300         holdIds,
1301         holdData
1302     ];
1303
1304     var self = this;
1305     fieldmapper.standardRequest(
1306         ['open-ils.circ', 'open-ils.circ.fire_hold_trigger_events'],
1307         {   
1308             async : true,
1309             params : params,
1310             oncomplete : function(r) {
1311                 progressDialog.hide();
1312                 var resp = openils.Util.readResponse(r);
1313                 var output = resp.template_output();
1314                 if(output) {
1315                     self.printData(output.data(), self.holds.length, callback); 
1316                 } else {
1317                     var error = resp.error_output();
1318                     if(error) {
1319                         throw new Error("Error creating receipt: " + error.data());
1320                     } else {
1321                         throw new Error("No receipt data returned from server");
1322                     }
1323                 }
1324             }
1325         }
1326     );
1327 }
1328
1329
1330 /**
1331  * Print a receipt for this user's items out
1332  */
1333 SelfCheckManager.prototype.printFinesReceipt = function(callback) {
1334
1335     progressDialog.show(true);
1336
1337     var params = [
1338         this.authtoken, 
1339         this.staff.ws_ou(),
1340         null,
1341         'format.selfcheck.fines',
1342         'print-on-demand',
1343         [this.patron.id()]
1344     ];
1345
1346     var self = this;
1347     fieldmapper.standardRequest(
1348         ['open-ils.circ', 'open-ils.circ.fire_user_trigger_events'],
1349         {   
1350             async : true,
1351             params : params,
1352             oncomplete : function(r) {
1353                 progressDialog.hide();
1354                 var resp = openils.Util.readResponse(r);
1355                 var output = resp.template_output();
1356                 if(output) {
1357                     self.printData(output.data(), self.finesCount, callback); 
1358                 } else {
1359                     var error = resp.error_output();
1360                     if(error) {
1361                         throw new Error("Error creating receipt: " + error.data());
1362                     } else {
1363                         throw new Error("No receipt data returned from server");
1364                     }
1365                 }
1366             }
1367         }
1368     );
1369 }
1370
1371
1372
1373
1374 /**
1375  * Logout the patron and return to the login page
1376  */
1377 SelfCheckManager.prototype.logoutPatron = function(print) {
1378     if(print && this.checkouts.length) {
1379         this.printSessionReceipt(
1380             function() {
1381                 location.href = location.href;
1382             }
1383         );
1384     } else {
1385         location.href = location.href;
1386     }
1387 }
1388
1389
1390 /**
1391  * Fire up the manager on page load
1392  */
1393 openils.Util.addOnLoad(
1394     function() {
1395         new SelfCheckManager().init();
1396     }
1397 );