From 7adb5bffd676dd19a56f91041c861ae538e3647b Mon Sep 17 00:00:00 2001 From: Terran McCanna Date: Wed, 12 Dec 2018 17:57:19 -0500 Subject: [PATCH] LP#1743783 Web Client Bill Full Detail Display Issues Fleshes out retrieved data to be able to display the billing location for both circulation and grocery bills on the full details page as well as the owning library for circulation bills. Signed-off-by: Terran McCanna --- Open-ILS/src/templates/staff/circ/patron/t_xact_details.tt2 | 8 +++++++- Open-ILS/web/js/ui/default/staff/circ/services/billing.js | 9 +++++---- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/Open-ILS/src/templates/staff/circ/patron/t_xact_details.tt2 b/Open-ILS/src/templates/staff/circ/patron/t_xact_details.tt2 index 0be1f7d90b..1ea6fd176d 100644 --- a/Open-ILS/src/templates/staff/circ/patron/t_xact_details.tt2 +++ b/Open-ILS/src/templates/staff/circ/patron/t_xact_details.tt2 @@ -2,7 +2,7 @@
[% l('Billing Location') %]
-
{{xact.billing_location().shortname()}}
+
{{xact.grocery().billing_location().shortname()||xact.circulation().circ_lib().shortname()}}
[% l('Total Billed') %]
{{xact.summary().total_owed() | currency}}
[% l('Title') %]
@@ -103,6 +103,12 @@ {{total_circs}}
+
+
[% l('Owning Library') %]
+
+ {{xact.circulation().target_copy().call_number().owning_lib().shortname()}} +
+

diff --git a/Open-ILS/web/js/ui/default/staff/circ/services/billing.js b/Open-ILS/web/js/ui/default/staff/circ/services/billing.js index 8c1c406f31..048e9d78a6 100644 --- a/Open-ILS/web/js/ui/default/staff/circ/services/billing.js +++ b/Open-ILS/web/js/ui/default/staff/circ/services/billing.js @@ -14,13 +14,14 @@ function($uibModal , $q , egCore) { // fetch a fleshed money.billable_xact service.fetchXact = function(xact_id) { return egCore.pcrud.retrieve('mbt', xact_id, { - flesh : 5, + flesh : 6, flesh_fields : { mbt : ['summary','circulation','grocery','reservation'], - circ: ['target_copy'], + circ: ['target_copy', 'circ_lib'], acp : ['call_number','location','status','age_protect'], - acn : ['record'], - bre : ['simple_record'] + acn : ['record','owning_lib'], + bre : ['simple_record'], + mg : ['billing_location'] }, select : {bre : ['id']}}, // avoid MARC {authoritative : true} -- 2.11.0