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