[open-ils-commits] [GIT] Evergreen ILS branch master updated. 6b678e1ccaf972d297ba1f833129d0efe6dc54a1

Evergreen Git git at git.evergreen-ils.org
Wed Jul 31 15:24:09 EDT 2019


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, master has been updated
       via  6b678e1ccaf972d297ba1f833129d0efe6dc54a1 (commit)
       via  24ce9367616dc5944006d482e543e56b447a3aef (commit)
      from  f336409bd3e88de128275b279250ed3862c5e81a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 6b678e1ccaf972d297ba1f833129d0efe6dc54a1
Author: Jane Sandberg <sandbej at linnbenton.edu>
Date:   Wed Jul 31 12:23:31 2019 -0700

    Docs: LP#1813225: Adding brief release note
    
    Signed-off-by: Jane Sandberg <sandbej at linnbenton.edu>

diff --git a/docs/RELEASE_NOTES_NEXT/Circulation/linked_billing_location.adoc b/docs/RELEASE_NOTES_NEXT/Circulation/linked_billing_location.adoc
new file mode 100644
index 0000000000..575b829ab6
--- /dev/null
+++ b/docs/RELEASE_NOTES_NEXT/Circulation/linked_billing_location.adoc
@@ -0,0 +1,7 @@
+Library Links in Billing Details screen
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+The Billing Full Details view now includes links to information about the billing and owning
+libraries. This can be useful in situations where circulation staff are troubleshooting a
+bill and would like to quickly find contact information for the billing or owning library.
+

commit 24ce9367616dc5944006d482e543e56b447a3aef
Author: Terran McCanna <tmccanna at georgialibraries.org>
Date:   Wed Feb 13 13:19:35 2019 -0500

    LP#1813225 Link Billing Location to Library Info
    
    Converts library shortname on billing details page to a
    link which opens in a new tab so that staff can easily
    get to library contact info.
    
    Signed-off-by: Terran McCanna <tmccanna at georgialibraries.org>
    Signed-off-by: Garry Collum <gcollum at gmail.com>
    Signed-off-by: Jane Sandberg <sandbej at linnbenton.edu>

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 1ea6fd176d..4d5ff59486 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,10 @@
 
 <div class="row">
   <div class="col-md-2 strong-text">[% l('Billing Location') %]</div>
-  <div class="col-md-2">{{xact.grocery().billing_location().shortname()||xact.circulation().circ_lib().shortname()}}</div>
+  <div class="col-md-2">
+    <a href="[% ctx.base_path %]/opac/library/{{xact.grocery().billing_location().shortname()||xact.circulation().circ_lib().shortname()}}" target="_blank">
+    {{xact.grocery().billing_location().shortname()||xact.circulation().circ_lib().shortname()}}</a>
+  </div>
   <div class="col-md-2 strong-text">[% l('Total Billed') %]</div>
   <div class="col-md-2">{{xact.summary().total_owed() | currency}}</div>
   <div class="col-md-2 strong-text">[% l('Title') %]</div>
@@ -105,12 +108,11 @@
   </div>
   <div class="row">
     <div class="col-md-2 strong-text">[% l('Owning Library') %]</div>
-    <div class="col-md-2">
-      {{xact.circulation().target_copy().call_number().owning_lib().shortname()}}
+    <div class="col-md-2"><a href="[% ctx.base_path %]/opac/library/{{xact.circulation().target_copy().call_number().owning_lib().shortname()}}" target="_blank">
+      {{xact.circulation().target_copy().call_number().owning_lib().shortname()}}</a>
     </div>
   </div>
 </div>
-
 <hr/>
 <ul class="nav nav-tabs">
   <li ng-class="{active : xact_tab == 'statement'}">

-----------------------------------------------------------------------

Summary of changes:
 Open-ILS/src/templates/staff/circ/patron/t_xact_details.tt2    | 10 ++++++----
 .../Circulation/linked_billing_location.adoc                   |  7 +++++++
 2 files changed, 13 insertions(+), 4 deletions(-)
 create mode 100644 docs/RELEASE_NOTES_NEXT/Circulation/linked_billing_location.adoc


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list