]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/js/ui/default/staff/circ/patron/bills.js
LP#1743262 CC external payment requires app. code
[Evergreen.git] / Open-ILS / web / js / ui / default / staff / circ / patron / bills.js
1
2 /* Billing Service */
3
4 angular.module('egPatronApp')
5
6 .factory('billSvc', 
7        ['$q','egCore','egWorkLog','patronSvc',
8 function($q , egCore , egWorkLog , patronSvc) {
9
10     var service = {};
11
12     // fetch org unit settings specific to the bills display
13     service.fetchBillSettings = function() {
14         if (service.settings) return $q.when(service.settings);
15         return egCore.org.settings(
16             ['ui.circ.billing.uncheck_bills_and_unfocus_payment_box','ui.circ.billing.amount_warn','ui.circ.billing.amount_limit','circ.staff_client.do_not_auto_attempt_print']
17         ).then(function(s) {return service.settings = s});
18     }
19
20     // user billing summary
21     service.fetchSummary = function() {
22         return egCore.pcrud.retrieve(
23             'mous', service.userId, {}, {authoritative : true})
24         .then(function(summary) {return service.summary = summary})
25     }
26
27     service.applyPayment = function(type, payments, note, check, cc_args) {
28         return egCore.net.request(
29             'open-ils.circ',
30             'open-ils.circ.money.payment',
31             egCore.auth.token(), {
32                 userid : service.userId,
33                 note : note || '', 
34                 payment_type : type,
35                 check_number : check,
36                 payments : payments,
37                 patron_credit : 0,
38                 cc_args : cc_args
39             },
40             patronSvc.current.last_xact_id()
41         ).then(function(resp) {
42             console.debug('payments: ' + js2JSON(resp));
43
44             if (evt = egCore.evt.parse(resp)) {
45                 // Ideally, all scenarios that lead to this alert appearing
46                 // will be avoided by the application logic.  Leave the alert
47                 // in place now to root out any that remain to be addressed.
48                 alert(evt);
49                 return $q.reject(''+evt);
50             }
51
52             var total = 0; angular.forEach(payments,function(p) { total += p[1]; });
53             var msg;
54             switch(type) {
55                 case 'cash_payment' : msg = egCore.strings.EG_WORK_LOG_CASH_PAYMENT; break;
56                 case 'check_payment' : msg = egCore.strings.EG_WORK_LOG_CHECK_PAYMENT; break;
57                 case 'credit_card_payment' : msg = egCore.strings.EG_WORK_LOG_CREDIT_CARD_PAYMENT; break;
58                 case 'credit_payment' : msg = egCore.strings.EG_WORK_LOG_CREDIT_PAYMENT; break;
59                 case 'work_payment' : msg = egCore.strings.EG_WORK_LOG_WORK_PAYMENT; break;
60                 case 'forgive_payment' : msg = egCore.strings.EG_WORK_LOG_FORGIVE_PAYMENT; break;
61                 case 'goods_payment' : msg = egCore.strings.EG_WORK_LOG_GOODS_PAYMENT; break;
62             }
63             egWorkLog.record(
64                 msg,{
65                     'action' : 'paid_bill',
66                     'patron_id' : service.userId,
67                     'total_amount' : total
68                 }
69             );
70
71             // payment API returns the update xact id so we can track it
72             // for future payments without having to refresh the user.
73             patronSvc.current.last_xact_id(resp.last_xact_id);
74             return resp.payments;
75         });
76     }
77
78     service.fetchBills = function(xact_id) {
79         var bills = [];
80         return egCore.pcrud.search('mb',
81             {xact : xact_id}, null,
82             {authoritative : true}
83         ).then(
84             function() {return bills},
85             null,
86             function(bill) {bills.push(bill); return bill}
87         );
88     }
89
90     // TODO: no longer needed?
91     service.fetchPayments = function(xact_id) {
92         return egCore.net.request(
93             'open-ils.circ',
94             'open-ils.circ.money.payment.retrieve.all.authoritative',
95             egCore.auth.token(), xact_id
96         );
97     }
98
99     service.voidBills = function(bill_ids) {
100         return egCore.net.requestWithParamList(
101             'open-ils.circ',
102             'open-ils.circ.money.billing.void',
103             [egCore.auth.token()].concat(bill_ids)
104         ).then(function(resp) {
105             if (evt = egCore.evt.parse(resp)) return alert(evt);
106             return resp;
107         });
108     }
109
110     service.adjustBillsToZero = function(bill_ids) {
111         return egCore.net.request(
112             'open-ils.circ',
113             'open-ils.circ.money.billable_xact.adjust_to_zero',
114             egCore.auth.token(),
115             bill_ids
116         ).then(function(resp) {
117             if (evt = egCore.evt.parse(resp)) return alert(evt);
118             return resp;
119         });
120     }
121
122     service.updateBillNotes = function(note, ids) {
123         return egCore.net.requestWithParamList(
124             'open-ils.circ',
125             'open-ils.circ.money.billing.note.edit',
126             [egCore.auth.token(), note].concat(ids)
127         ).then(function(resp) {
128             if (evt = egCore.evt.parse(resp)) return alert(evt);
129             return resp;
130         });
131     }
132
133     service.updatePaymentNotes = function(note, ids) {
134         return egCore.net.requestWithParamList(
135             'open-ils.circ',
136             'open-ils.circ.money.payment.note.edit',
137             [egCore.auth.token(), note].concat(ids)
138         ).then(function(resp) {
139             if (evt = egCore.evt.parse(resp)) return alert(evt);
140             return resp;
141         });
142     }
143
144     return service;
145 }])
146
147
148 /**
149  * Manages Bills
150  */
151 .controller('PatronBillsCtrl',
152        ['$scope','$q','$routeParams','egCore','egConfirmDialog','$location',
153         'egGridDataProvider','billSvc','patronSvc','egPromptDialog', 'egAlertDialog',
154         'egBilling','$uibModal',
155 function($scope , $q , $routeParams , egCore , egConfirmDialog , $location,
156          egGridDataProvider , billSvc , patronSvc , egPromptDialog, egAlertDialog,
157          egBilling , $uibModal) {
158
159     $scope.initTab('bills', $routeParams.id);
160     billSvc.userId = $routeParams.id;
161
162     // set up some defaults
163     $scope.check_number = null;
164     $scope.payment_amount = null;
165     $scope.session_voided = 0;
166     $scope.payment_type = 'cash_payment';
167     $scope.focus_payment = true;
168     $scope.annotate_payment = false;
169     $scope.receipt_count = 1;
170     $scope.receipt_on_pay = { isChecked: false };
171     $scope.warn_amount = 1000;
172     $scope.max_amount = 100000;
173     $scope.amount_verified = false;
174     $scope.disable_auto_print = false;
175
176     // check receipt_on_pay setting default persisted
177     egCore.hatch.getItem('circ.bills.receiptonpay')
178                 .then(function(rcptOnPay){
179                     if (rcptOnPay) $scope.receipt_on_pay.isChecked = rcptOnPay;
180                 });
181
182     // pre-define list-returning funcs in case we access them
183     // before the grid instantiates
184     $scope.gridControls = {
185         focusRowSelector : false,
186         selectedItems : function(){return []},
187         allItems : function(){return []},
188         itemRetrieved : function(item) {
189             item.payment_pending = 0;
190         },
191         activateItem : function(item) {
192             $scope.showFullDetails([item]);
193         },
194         setQuery : function() {    
195             return {
196                 usr : billSvc.userId, 
197                 xact_finish : null,
198                 'summary.balance_owed' : {'<>' : 0}
199             }
200         }, 
201         setSort : function() {
202             return ['xact_start']; 
203         }
204     }
205
206     billSvc.fetchSummary().then(function(s) {$scope.summary = s});
207
208     // given a payment amount, determines how much of that is applied
209     // to selected transactions and how much is left over (change).
210     function pending_payment_info() {
211         var amt = $scope.payment_amount || 0;
212         if (amt >= $scope.owed_selected()) {
213             return {
214                 payment : $scope.owed_selected(),
215                 change : amt - $scope.owed_selected()
216             }
217         } 
218         return {payment : amt, change : 0};
219     }
220
221     // calculates amount owed, billed, and paid for selected items
222     // TODO: move me to service
223     function selected_payment_info() {
224         var info = {owed : 0, billed : 0, paid : 0};
225         angular.forEach($scope.gridControls.selectedItems(), function(item) {
226             info.owed   += Number(item['summary.balance_owed']) * 100;
227             info.billed += Number(item['summary.total_owed']) * 100;
228             info.paid   += Number(item['summary.total_paid']) * 100;
229         });
230         info.owed /= 100;
231         info.billed /= 100;
232         info.paid /= 100;
233         return info;
234     }
235
236     $scope.pending_payment = function() {
237         return pending_payment_info().payment;
238     }
239     $scope.pending_change = function() {
240         return pending_payment_info().change;
241     }
242     $scope.owed_selected = function() {
243         return selected_payment_info().owed; 
244     }
245     $scope.billed_selected = function() {
246         return selected_payment_info().billed;
247     }
248     $scope.paid_selected = function() {
249         return selected_payment_info().paid;
250     }
251     $scope.refunds_available = function() {
252         var amount = 0;
253         angular.forEach($scope.gridControls.allItems(), function(item) {
254             if (item['summary.balance_owed'] < 0) 
255                 amount += item['summary.balance_owed'] * 100;
256         });
257         return -(amount / 100);
258     }
259     $scope.invalid_check_number = function() { 
260         return $scope.payment_type == 'check_payment' && ! $scope.check_number; 
261     }
262
263     // update the item.payment_pending value each time the user
264     // selects different transactions to pay against.
265     $scope.$watch(
266         function() {return $scope.gridControls.selectedItems()},
267         function() {updatePendingColumn()},
268         true
269     );
270
271     // update the item.payment_pending for each (selected) 
272     // transaction any time the user-entered payment amount is modified
273     $scope.$watch('payment_amount', updatePendingColumn);
274
275     // updates the value of the payment_pending column in the grid.
276     // This has to be managed manually since the display value in the grid
277     // is derived from the value on the stored item and not the contents
278     // of our local scope variables.
279     function updatePendingColumn() {
280         // reset all to zero..
281         angular.forEach($scope.gridControls.allItems(), 
282             function(item) {item.payment_pending = 0});
283
284         var payment_amount = $scope.pending_payment();
285
286         var selected = $scope.gridControls.selectedItems();
287         for (var i = 0; i < selected.length; i++) { // for/break
288             var item = selected[i];
289             var owed = Number(item['summary.balance_owed']);
290
291             if (payment_amount > owed) {
292                 // pending payment exceeds balance of current item.
293                 // pay the entire item.
294                 item.payment_pending = owed;
295                 payment_amount -= owed;
296
297             } else {
298                 // balance owed on the current item matches or exceeds
299                 // the pending payment.  Apply the full remainder of
300                 // the payment to this item.. and we're done.
301                 item.payment_pending = payment_amount;
302                 break;
303             }
304         }
305     }
306
307     // builds payment arrays ([xact_id, ammount]) for all transactions
308     // which have a pending payment amount.
309     function generatePayments() {
310         var payments = [];
311         angular.forEach($scope.gridControls.selectedItems(), function(item) {
312             if (item.payment_pending == 0) return;
313             payments.push([item.id, item.payment_pending]);
314         });
315         return payments;
316     }
317
318     function refreshDisplay() {
319         patronSvc.fetchUserStats();
320         billSvc.fetchSummary().then(function(s) {$scope.summary = s});
321         $scope.payment_amount = null;
322         $scope.gridControls.refresh();
323     }
324
325     // generates payments, collects user note if needed, and sends payment
326     // to server.
327     function sendPayment(note, cc_args) {
328         var make_payments = generatePayments();
329         billSvc.applyPayment($scope.payment_type, 
330             make_payments, note, $scope.check_number, cc_args)
331         .then(
332             function(payment_ids) {
333
334                 if (!$scope.disable_auto_print && $scope.receipt_on_pay.isChecked) {
335                     printReceipt(
336                         $scope.payment_type, payment_ids, make_payments, note);
337                 }
338
339                 refreshDisplay();
340             },
341             function(msg) {
342                 console.error('Payment was rejected: ' + msg);
343             }
344         )
345     }
346
347     $scope.onReceiptOnPayChanged = function(){
348         egCore.hatch.setItem('circ.bills.receiptonpay', $scope.receipt_on_pay.isChecked);
349     }
350
351     function printReceipt(type, payment_ids, payments_made, note) {
352         var payment_blobs = [];
353         angular.forEach(payments_made, function(payment) {
354             var xact_id = payment[0];
355
356             // find the original transaction in the grid..
357             var xact = $scope.gridControls.allItems().filter(
358                 function(item) {return item.id == xact_id})[0];
359
360             payment_blobs.push({
361                 xact : egCore.idl.flatToNestedHash(xact),
362                 amount : payment[1]
363             });
364         });
365
366         console.log(js2JSON(payment_blobs[0]));
367
368         // page data not yet refreshed, capture data from current scope
369         var print_data = {
370             payment_type : type,
371             payment_note : note,
372             previous_balance : Number($scope.summary.balance_owed()),
373             payment_total : Number($scope.payment_amount),
374             payment_applied : $scope.pending_payment(),
375             amount_voided : Number($scope.session_voided),
376             change_given : $scope.pending_change(),
377             payments : payment_blobs,
378             current_location : egCore.idl.toHash(
379                 egCore.org.get(egCore.auth.user().ws_ou()))
380         }
381
382         print_data.new_balance = (
383             print_data.previous_balance * 100 - 
384             print_data.payment_applied * 100) / 100;
385
386         for (var i = 0; i < $scope.receipt_count; i++) {
387             egCore.print.print({
388                 context : 'receipt', 
389                 template : 'bill_payment', 
390                 scope : print_data
391             });
392         }
393     }
394
395     $scope.showHistory = function() {
396         $location.path('/circ/patron/' + 
397             patronSvc.current.id() + '/bill_history/transactions');
398     }
399     
400     // For now, only adds billing to first selected item.
401     // Could do batches later if needed
402     $scope.addBilling = function(all) {
403         if (all[0]) {
404             egBilling.showBillDialog({
405                 xact : egCore.idl.flatToNestedHash(all[0]),
406                 patron : $scope.patron()
407             }).then(refreshDisplay);
408         }
409     }
410
411     $scope.showBillDialog = function($event) {
412         egBilling.showBillDialog({
413             patron : $scope.patron()
414         }).then(refreshDisplay);
415     }
416
417     // Select refunds adds all refunds to the existing selection.
418     // It does not /only/ select refunds
419     $scope.selectRefunds = function() {
420         var ids = $scope.gridControls.selectedItems().map(
421             function(i) { return i.id });
422         angular.forEach($scope.gridControls.allItems(), function(item) {
423             if (Number(item['summary.balance_owed']) < 0)
424                 ids.push(item.id);
425         });
426         $scope.gridControls.selectItems(ids);
427     }
428
429     // -------------
430     // determine on initial page load when all of the grid rows should
431     // be selected.
432     var selectOnLoad = true;
433     billSvc.fetchBillSettings().then(function(s) {
434         if (s['ui.circ.billing.uncheck_bills_and_unfocus_payment_box']) {
435             $scope.focus_payment = false; // de-focus the payment box
436             $scope.gridControls.focusRowSelector = true;
437             selectOnLoad = false;
438             // if somehow the grid finishes rendering before our settings 
439             // arrive, manually de-select everything.
440             $scope.gridControls.selectItems([]);
441         }
442         if (s['ui.circ.billing.amount_warn']) {
443             $scope.warn_amount = Number(s['ui.circ.billing.amount_warn']);
444         }
445         if (s['ui.circ.billing.amount_limit']) {
446             $scope.max_amount = Number(s['ui.circ.billing.amount_limit']);
447         }
448         if (s['circ.staff_client.do_not_auto_attempt_print'] && angular.isArray(s['circ.staff_client.do_not_auto_attempt_print'])) {
449             $scope.disable_auto_print = Boolean(
450                 s['circ.staff_client.do_not_auto_attempt_print'].indexOf('Bill Pay') > -1
451             );
452         }
453     });
454
455     $scope.gridControls.allItemsRetrieved = function() {
456         if (selectOnLoad) {
457             selectOnLoad = false; // only for initial controller load.
458             // select all non-refund items
459             $scope.gridControls.selectItems( 
460                 $scope.gridControls.allItems()
461                 .filter(function(i) {return i['summary.balance_owed'] > 0})
462                 .map(function(i){return i.id})
463             );
464         }
465     }
466     // -------------
467
468
469     $scope.printBills = function(selected) {
470         if (!selected.length) return;
471         // bills print receipt assumes nested hashes, but our grid
472         // stores flattener data.  Fetch the selected xacts as
473         // fleshed pcrud objects and hashify.  
474         // (Consider an alternate approach..)
475         var ids = selected.map(function(t){ return t.id });
476         var xacts = [];
477         egCore.pcrud.search('mbt', 
478             {id : ids},
479             {flesh : 5, flesh_fields : {
480                 'mbt' : ['summary', 'circulation'],
481                 'circ' : ['target_copy'],
482                 'acp' : ['call_number'],
483                 'acn' : ['record'],
484                 'bre' : ['simple_record']
485                 }
486             },
487             {authoritative : true}
488         ).then(
489             function() {
490                 egCore.print.print({
491                     context : 'receipt', 
492                     template : 'bills_current', 
493                     scope : {   
494                         transactions : xacts,
495                         current_location : egCore.idl.toHash(
496                             egCore.org.get(egCore.auth.user().ws_ou()))
497                     }
498                 });
499             }, 
500             null, 
501             function(xact) {
502                 newXact = {
503                     billing_total : xact.billing_total(),
504                     billings : xact.billings(),
505                     grocery : xact.grocery(),
506                     id : xact.id(),
507                     payment_total : xact.payment_total(),
508                     payments : xact.payments(),
509                     summary : egCore.idl.toHash(xact.summary()),
510                     unrecovered : xact.unrecovered(),
511                     xact_finish : xact.xact_finish(),
512                     xact_start : xact.xact_start(),
513                 }
514                 if (xact.circulation()) {
515                     newXact.copy_barcode = xact.circulation().target_copy().barcode(),
516                     newXact.title = xact.circulation().target_copy().call_number().record().simple_record().title()
517                 }
518                 xacts.push(newXact);
519             }
520         );
521     }
522
523     $scope.applyPayment = function() {
524
525         if ($scope.payment_amount > $scope.max_amount ) {
526             egAlertDialog.open(
527                 egCore.strings.PAYMENT_OVER_MAX,
528                 {   max_amount : ''+$scope.max_amount,
529                     ok : function() {
530                         $scope.payment_amount = 0;
531                     }
532                 }
533             );
534             return;
535         }
536
537         verify_payment_amount().then(
538             function() { // amount confirmed
539                 add_payment_note().then(function(pay_note) {
540                     add_cc_args().then(function(cc_args) {
541                         var note_text = pay_note ? pay_note.value || '' : null;
542                         sendPayment(note_text, cc_args);
543                     })
544                 });
545             },
546             function() { // amount rejected
547                 console.warn('payment amount rejected');
548                 $scope.payment_amount = 0;
549             }
550         );
551     }
552
553     function verify_payment_amount() {
554         if ($scope.payment_amount < $scope.warn_amount)
555             return $q.when();
556
557         return egConfirmDialog.open(
558             egCore.strings.PAYMENT_WARN_AMOUNT_TITLE, 
559             egCore.strings.PAYMENT_WARN_AMOUNT,
560             {payment_amount : ''+$scope.payment_amount}
561         ).result;
562     }
563
564     function add_payment_note() {
565         if (!$scope.annotate_payment) return $q.when();
566         return egPromptDialog.open(
567             egCore.strings.ANNOTATE_PAYMENT_MSG, '').result;
568     }
569
570     function add_cc_args() {
571         if ($scope.payment_type != 'credit_card_payment') 
572             return $q.when();
573
574         return $uibModal.open({
575             templateUrl : './circ/patron/t_cc_payment_dialog',
576             controller : [
577                         '$scope','$uibModalInstance',
578                 function($scope , $uibModalInstance) {
579
580                     $scope.context = {
581                         cc : {
582                             where_process : '1', // internal=1 ; external=0
583                             type : 'VISA', // external only
584                             billing_first : patronSvc.current.first_given_name(),
585                             billing_last : patronSvc.current.family_name()
586                         }
587                     }
588
589                     var addr = patronSvc.current.billing_address() ||
590                         patronSvc.current.mailing_address();
591                     if (addr) {
592                         var cc = $scope.context.cc;
593                         cc.billing_address = addr.street1() + 
594                             (addr.street2() ? ' ' + addr.street2() : '');
595                         cc.billing_city = addr.city();
596                         cc.billing_state = addr.state();
597                         cc.billing_zip = addr.post_code();
598                     }
599
600                     $scope.ok = function() {
601                         // CC payment form is not a <form>, 
602                         // so apply validation manually.
603                         if ( $scope.context.cc.where_process == 0 && 
604                             !$scope.context.cc.approval_code)
605                             return;
606
607                         $uibModalInstance.close($scope.context.cc);
608                     }
609
610                     $scope.cancel = function() {
611                         $uibModalInstance.dismiss();
612                     }
613                 }
614             ]
615         }).result;
616     }
617
618     $scope.voidAllBillings = function(items) {
619         var promises = [];
620         var bill_ids = [];
621         var cents = 0;
622         angular.forEach(items, function(item) {
623             promises.push(
624                 billSvc.fetchBills(item.id).then(function(bills) {
625                     angular.forEach(bills, function(b) {
626                         if (b.voided() != 't') {
627                             cents += b.amount() * 100;
628                             bill_ids.push(b.id())
629                         }
630                     });
631
632                     if (bill_ids.length == 0) {
633                         // TODO: warn
634                         return;
635                     }
636
637                 })
638             );
639         });
640
641         $q.all(promises).then(function(){
642             egCore.audio.play('warning.circ.void_billings_confirmation');
643             egConfirmDialog.open(
644                 egCore.strings.CONFIRM_VOID_BILLINGS, '', 
645                 {   billIds : ''+bill_ids,
646                     amount : ''+(cents/100),
647                     ok : function() {
648                         billSvc.voidBills(bill_ids).then(function() {
649                             $scope.session_voided = 
650                                 ($scope.session_voided * 100 + cents) / 100;
651                             refreshDisplay();
652                         });
653                     }
654                 }
655             );
656         });
657     }
658
659     $scope.adjustToZero = function(items) {
660         if (items.length == 0) return;
661
662         var ids = items.map(function(item) {return item.id});
663
664         egCore.audio.play('warning.circ.adjust_to_zero_confirmation');
665         egConfirmDialog.open(
666             egCore.strings.CONFIRM_ADJUST_TO_ZERO, '', 
667             {   xactIds : ''+ids,
668                 ok : function() {
669                     billSvc.adjustBillsToZero(ids).then(function() {
670                         refreshDisplay();
671                     });
672                 }
673             }
674         );
675
676     }
677
678     // note this is functionally equivalent to selecting a neg. transaction
679     // then clicking Apply Payment -- this just adds a speed bump (ditto
680     // the XUL client).
681     $scope.refundXact = function(all) {
682         var items = all.filter(function(item) {
683             return item['summary.balance_owed'] < 0
684         });
685
686         if (items.length == 0) return;
687
688         var ids = items.map(function(item) {return item.id});
689
690         egCore.audio.play('warning.circ.refund_confirmation');
691         egConfirmDialog.open(
692             egCore.strings.CONFIRM_REFUND_PAYMENT, '', 
693             {   xactIds : ''+ids,
694                 ok : function() {
695                     // reset the received payment amount.  this ensures
696                     // we're not mingling payments with refunds.
697                     $scope.payment_amount = 0;
698                 }
699             }
700         );
701     }
702
703     // direct the user to the transaction details page
704     $scope.showFullDetails = function(all) {
705         if (all[0]) 
706             $location.path('/circ/patron/' + 
707                 patronSvc.current.id() + '/bill/' + all[0].id);
708     }
709
710     $scope.activateBill = function(xact) {
711         $scope.showFullDetails([xact]);
712     }
713
714 }])
715
716 /**
717  * Displays details of a single transaction
718  */
719 .controller('XactDetailsCtrl',
720        ['$scope','$q','$routeParams','egCore','egGridDataProvider','patronSvc','billSvc','egPromptDialog','egBilling','egConfirmDialog',
721 function($scope,  $q , $routeParams , egCore , egGridDataProvider , patronSvc , billSvc , egPromptDialog , egBilling , egConfirmDialog ) {
722
723     $scope.initTab('bills', $routeParams.id);
724     var xact_id = $routeParams.xact_id;
725
726     var xactGrid = $scope.xactGridControls = {
727         setQuery : function() { return {xact : xact_id} },
728         setSort : function() { return ['billing_ts'] }
729     }
730
731     var paymentGrid = $scope.paymentGridControls = {
732         setQuery : function() { return {xact : xact_id} },
733         setSort : function() { return ['payment_ts'] }
734     }
735
736     // -- actions
737     $scope.voidBillings = function(bill_list) {
738         var bill_ids = [];
739         var cents = 0;
740         angular.forEach(bill_list, function(b) {
741             if (b.voided != 't') {
742                 cents += b.amount * 100;
743                 bill_ids.push(b.id)
744             }
745         });
746
747         if (bill_ids.length == 0) {
748             // TODO: warn
749             return;
750         }
751
752         egCore.audio.play('warning.circ.void_billings_confirmation');
753         egConfirmDialog.open(
754             egCore.strings.CONFIRM_VOID_BILLINGS, '', 
755             {   billIds : ''+bill_ids,
756                 amount : ''+(cents/100),
757                 ok : function() {
758                     billSvc.voidBills(bill_ids).then(function() {
759                         // TODO? $scope.session_voided = ...
760
761                         // refresh bills and summary data
762                         // note: no need to update payments
763                         patronSvc.fetchUserStats();
764
765                         egBilling.fetchXact(xact_id).then(function(xact) {
766                             $scope.xact = xact
767                         });
768
769                         xactGrid.refresh();
770                     });
771                 }
772             }
773         );
774     }
775
776     // batch-edit billing and payment notes, depending on 'type'
777     function editNotes(selected, type) {
778         var notes = selected.map(function(b){ return b.note }).join(',');
779         var ids = selected.map(function(b){ return b.id });
780
781         // show the note edit prompt
782         egPromptDialog.open(
783             egCore.strings.EDIT_BILL_PAY_NOTE, notes, {
784                 ids : ''+ids,
785                 ok : function(value) {
786
787                     var func = 'updateBillNotes';
788                     if (type == 'payment') func = 'updatePaymentNotes';
789
790                     billSvc[func](value, ids).then(function() {
791                         if (type == 'payment') {
792                             paymentGrid.refresh();
793                         } else {
794                             xactGrid.refresh();
795                         }
796                     });
797                 }
798             }
799         );
800     }
801
802     $scope.editBillNotes = function(selected) {
803         editNotes(selected, 'bill');
804     }
805
806     $scope.editPaymentNotes = function(selected) {
807         editNotes(selected, 'payment');
808     }
809
810     // -- retrieve our data
811     $scope.total_circs = 0; // start with 0 instead of undefined
812     egBilling.fetchXact(xact_id).then(function(xact) {
813         $scope.xact = xact;
814
815         var copyId = xact.circulation().target_copy().id();
816         var circ_count = 0;
817         egCore.pcrud.search('circbyyr',
818             {copy : copyId}, null, {atomic : true})
819         .then(function(counts) {
820             angular.forEach(counts, function(count) {
821                 circ_count += Number(count.count());
822             });
823             $scope.total_circs = circ_count;
824         });
825         // set the title.  only needs to be done on initial page load
826         if (xact.circulation()) {
827             if (xact.circulation().target_copy().call_number().id() == -1) {
828                 $scope.title = xact.circulation().target_copy().dummy_title();
829             } else  {
830                 // TODO: shared bib service?
831                 $scope.title = xact.circulation().target_copy()
832                     .call_number().record().simple_record().title();
833                 $scope.title_id = xact.circulation().target_copy()
834                     .call_number().record().id();
835             }
836         }
837     });
838 }])
839
840
841 .controller('BillHistoryCtrl',
842        ['$scope','$q','$routeParams','egCore','patronSvc','billSvc','egPromptDialog','$location',
843 function($scope,  $q , $routeParams , egCore , patronSvc , billSvc , egPromptDialog , $location) {
844
845     $scope.initTab('bills', $routeParams.id);
846     billSvc.userId = $routeParams.id;
847     $scope.bill_tab = $routeParams.history_tab;
848     $scope.totals = {};
849
850     // link page controller actions defined by sub-controllers here
851     $scope.actions = {};
852
853     var start = new Date(); // now - 1 year
854     start.setFullYear(start.getFullYear() - 1),
855     $scope.dates = {
856         xact_start : start,
857         xact_finish : new Date()
858     }
859
860     $scope.date_range = function() {
861         var start = $scope.dates.xact_start.toISOString().replace(/T.*/,'');
862         var end = $scope.dates.xact_finish.toISOString().replace(/T.*/,'');
863         var today = new Date().toISOString().replace(/T.*/,'');
864         if (end == today) end = 'now';
865         return [start, end];
866     }
867 }])
868
869
870 .controller('BillXactHistoryCtrl',
871        ['$scope','$q','egCore','patronSvc','billSvc','egPromptDialog','$location','egBilling',
872 function($scope,  $q , egCore , patronSvc , billSvc , egPromptDialog , $location , egBilling) {
873
874     // generate a grid query with the current date widget values.
875     function current_grid_query() {
876         return {
877             '-or' : [
878                 {'summary.balance_owed' : {'<>' : 0}},
879                 {'summary.last_payment_ts' : {'<>' : null}}
880             ],
881             xact_start : {between : $scope.date_range()},
882             usr : billSvc.userId
883         }
884     }
885
886     $scope.gridControls = {
887         selectedItems : function(){return []},
888         activateItem : function(item) {
889             $scope.showFullDetails([item]);
890         },
891         // this sets the query on page load
892         setQuery : current_grid_query
893     }
894
895     $scope.actions.apply_date_range = function() {
896         // tells the grid to re-draw itself with the new query
897         $scope.gridControls.setQuery(current_grid_query());
898     }
899
900     // TODO; move me to service
901     function selected_payment_info() {
902         var info = {owed : 0, billed : 0, paid : 0};
903         angular.forEach($scope.gridControls.selectedItems(), function(item) {
904             info.owed   += Number(item['summary.balance_owed']) * 100;
905             info.billed += Number(item['summary.total_owed']) * 100;
906             info.paid   += Number(item['summary.total_paid']) * 100;
907         });
908         info.owed /= 100;
909         info.billed /= 100;
910         info.paid /= 100;
911         return info;
912     }
913
914     $scope.totals.selected_billed = function() {
915         return selected_payment_info().billed;
916     }
917     $scope.totals.selected_paid = function() {
918         return selected_payment_info().paid;
919     }
920
921     $scope.showFullDetails = function(all) {
922         if (all[0]) 
923             $location.path('/circ/patron/' + 
924                 patronSvc.current.id() + '/bill/' + all[0].id);
925     }
926
927     // For now, only adds billing to first selected item.
928     // Could do batches later if needed
929     $scope.addBilling = function(all) {
930         if (all[0]) {
931             egBilling.showBillDialog({
932                 xact : egCore.idl.flatToNestedHash(all[0]),
933                 patron : $scope.patron()
934             }).then(function() { 
935                 $scope.gridControls.refresh();
936                 patronSvc.fetchUserStats();
937             })
938         }
939     }
940
941     $scope.printBills = function(selected) { // FIXME: refactor me
942         if (!selected.length) return;
943         // bills print receipt assumes nested hashes, but our grid
944         // stores flattener data.  Fetch the selected xacts as
945         // fleshed pcrud objects and hashify.  
946         // (Consider an alternate approach..)
947         var ids = selected.map(function(t){ return t.id });
948         var xacts = [];
949         egCore.pcrud.search('mbt', 
950             {id : ids},
951             {flesh : 5, flesh_fields : {
952                 'mbt' : ['summary', 'circulation'],
953                 'circ' : ['target_copy'],
954                 'acp' : ['call_number'],
955                 'acn' : ['record'],
956                 'bre' : ['simple_record']
957                 }
958             },
959             {authoritative : true}
960         ).then(
961             function() {
962                 egCore.print.print({
963                     context : 'receipt', 
964                     template : 'bills_historical', 
965                     scope : {   
966                         transactions : xacts,
967                         current_location : egCore.idl.toHash(
968                             egCore.org.get(egCore.auth.user().ws_ou()))
969                     }
970                 });
971             }, 
972             null, 
973             function(xact) {
974                 newXact = {
975                     billing_total : xact.billing_total(),
976                     billings : xact.billings(),
977                     grocery : xact.grocery(),
978                     id : xact.id(),
979                     payment_total : xact.payment_total(),
980                     payments : xact.payments(),
981                     summary : egCore.idl.toHash(xact.summary()),
982                     unrecovered : xact.unrecovered(),
983                     xact_finish : xact.xact_finish(),
984                     xact_start : xact.xact_start(),
985                 }
986                 if (xact.circulation()) {
987                     newXact.copy_barcode = xact.circulation().target_copy().barcode(),
988                     newXact.title = xact.circulation().target_copy().call_number().record().simple_record().title()
989                 }
990                 xacts.push(newXact);
991             }
992         );
993     }
994 }])
995
996 .controller('BillPaymentHistoryCtrl',
997        ['$scope','$q','egCore','patronSvc','billSvc','$location',
998 function($scope,  $q , egCore , patronSvc , billSvc , $location) {
999
1000     // generate a grid query with the current date widget values.
1001     function current_grid_query() {
1002         return {
1003             'payment_ts' : {between : $scope.date_range()},
1004             'xact.usr' : billSvc.userId
1005         }
1006     }
1007
1008     $scope.gridControls = {
1009         selectedItems : function(){return []},
1010         activateItem : function(item) {
1011             $scope.showFullDetails([item]);
1012         },
1013         setSort : function() {
1014             return [{'payment_ts' : 'DESC'}, 'id'];
1015         },
1016         setQuery : current_grid_query
1017     }
1018
1019     $scope.actions.apply_date_range = function() {
1020         // tells the grid to re-draw itself with the new query
1021         $scope.gridControls.setQuery(current_grid_query());
1022     }
1023
1024     $scope.showFullDetails = function(all) {
1025         if (all[0]) 
1026             $location.path('/circ/patron/' + 
1027                 patronSvc.current.id() + '/bill/' + all[0]['xact.id']);
1028     }
1029
1030     $scope.totals.selected_paid = function() {
1031         var paid = 0;
1032         angular.forEach($scope.gridControls.selectedItems(), function(payment) {
1033             paid += Number(payment.amount) * 100;
1034         });
1035         return paid / 100;
1036     }
1037 }])
1038
1039
1040