evergreen/pines.git
8 years agoFix Can't locate object method "workstation" error
Jason Etheridge [Tue, 17 Jan 2017 21:39:58 +0000 (16:39 -0500)]
Fix Can't locate object method "workstation" error

When trying to utilize the Recall functionality, Evergreen would fail to update
targeted circulations (truncate the due date, etc.)  In the logs, we would have
an error like this:

[] open-ils.storage [ERR ::action.pm:1597:] Processing of hold failed:
Can't locate object method "workstation" via package "action::circulation" at
/usr/local/share/perl/5.14.2/OpenILS/Application/Storage/CDBI.pm line 181.

We first tried adding the workstation column to Storage/CDBI/action.pm, but a
similar message would then appear instead: Can't locate object method
"checkin_workstation"

This sidesteps the problem entirely.

Thanks to Mike for the solution!

Signed-off-by: Jason Etheridge <jason@EquinoxInitiative.org>
Signed-off-by: Mike Rylander <mrylander@gmail.com>
8 years agoLP#1205190: more CSS tweaks
Galen Charlton [Mon, 15 May 2017 18:01:52 +0000 (14:01 -0400)]
LP#1205190: more CSS tweaks

* replace a few more "background" with "background-color"

Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
Signed-off-by: Mike Rylander <mrylander@gmail.com>
8 years agoLP#1205190: TPAC: Improve style.css to reduce warnings
Dan Scott [Fri, 26 Jul 2013 04:05:49 +0000 (00:05 -0400)]
LP#1205190: TPAC: Improve style.css to reduce warnings

* Improve specificity: use background-image (for gradients) or
  background-color (for color) instead of just background, because we
  are only specifying the image or color, and not the rest of the
  background properties.
* Declare the background-color first, followed by the background-images;
  these will only override if recognized by the browser.
* Declare the standard (unprefixed) CSS linear-gradient last to prevent
  prefixed browser quirk versions from overriding the standardized form.
* Remove the -moz- prefix from -moz-border-radius as that has not been
  supported by Gecko since Firefox 13.0; just plain border-radius now.
* Fix bad selector ##rdetail_extras_expand (only one #, please).

Signed-off-by: Dan Scott <dan@coffeecode.net>
Signed-off-by: Pasi Kallinen <pasi.kallinen@pttk.fi>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
Conflicts:
Open-ILS/src/templates/opac/css/style.css.tt2

Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
Conflicts:
Open-ILS/src/templates/opac/css/style.css.tt2

Signed-off-by: Mike Rylander <mrylander@gmail.com>
8 years agoLP#1205190: quiet some CSS Mozilla extensions warnings.
Pasi Kallinen [Thu, 1 Aug 2013 08:21:17 +0000 (11:21 +0300)]
LP#1205190: quiet some CSS Mozilla extensions warnings.

* -moz-dialog-text is actually -moz-dialogtext
* -moz-outline is deprecated, use outline
* -moz-border-radius has been removed, use border-radius
* -moz-border-radius-topleft (etc) are now border-top-left-radius
* Fix some other CSS errors.

Signed-off-by: Pasi Kallinen <pasi.kallinen@pttk.fi>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
Conflicts:
Open-ILS/src/templates/opac/css/style.css.tt2
Open-ILS/web/css/skin/default/register.css
Open-ILS/web/opac/skin/default/xml/home/homesearch.xml
Open-ILS/web/reports/oils_rpt.css
Open-ILS/xul/staff_client/server/admin/org_unit_settings.xhtml
Open-ILS/xul/staff_client/server/serial/notes.xul
Open-ILS/xul/staff_client/server/skin/circ.css

Signed-off-by: Mike Rylander <mrylander@gmail.com>
8 years agolp1678152 webstaff fix Add Copies & Volumes
Jason Etheridge [Mon, 26 Jun 2017 12:11:28 +0000 (08:11 -0400)]
lp1678152 webstaff fix Add Copies & Volumes

Changes open-ils.cat.asset.volume.fleshed.batch.update,
AssetCommon::create_volume, and Cat::Merge::merge_volumes
to handle auto-volume merges during volume creation.

Signed-off-by: Jason Etheridge <jason@equinoxinitiative.org>
Signed-off-by: Mike Rylander <mrylander@gmail.com>
8 years agoLP#1208875: Add Release Note
Jason Stephenson [Tue, 27 Jun 2017 14:20:22 +0000 (10:20 -0400)]
LP#1208875: Add Release Note

Signed-off-by: Jason Stephenson <jason@sigio.com>
8 years agoLP#1208875: follow-up to standardize extract fields
Galen Charlton [Fri, 2 Jun 2017 17:13:50 +0000 (13:13 -0400)]
LP#1208875: follow-up to standardize extract fields

This patch removes the proposed custom methods for extracting
title, author, and record format in favor of tweaking
->fetch_user_circ_history to invoke unapi.bre and adjusting
the template to use get_marc_attrs. Also, nowadays
->fetch_user_circ_history can flesh what we need it to without
having to rely on the existance of an action.circulation row,
which won't be present if the circ was aged but was otherwise
retained in the user circ history.

The result is slower than the previous approach, but still
retains the core idea of getting A/T out of the equation, and remains
much faster than the A/T approach.

Dropping use of unapi.bre would speed things up a bit more, as it
was added only to match the addition of the record format column
in the CSV output. Drop the column, and we no longer need to worry
about MVFs.

There would also be opportunities to improve caching further.  Bib
display fields, when it comes, will likely help even more, as it
would mean being able to drop a lot of the XML parsing currently used.

This patch also adjusts misc_util.tt2 so that including it doesn't
result in an unwanted blank line.

Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
Signed-off-by: Jason Etheridge <jason@equinoxinitiative.org>
Signed-off-by: Jason Stephenson <jason@sigio.com>
8 years agolp1208875 make _get_circ_history_csv work with fetch_user_circ_history
Jason Etheridge [Fri, 2 Jun 2017 06:08:26 +0000 (02:08 -0400)]
lp1208875 make _get_circ_history_csv work with fetch_user_circ_history

braindead adaptation.. _get_circ_history_csv predates fetch_usre_circ_history

I haven't scrutinized what the two circ_history subs actually do, but I bet
there's room for improvement here.

However, as it is now we do get a significant speed boost.  Thanks Dyrcona!

Signed-off-by: Jason Etheridge <jason@equinoxinitiative.org>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
Signed-off-by: Jason Stephenson <jason@sigio.com>
8 years agoLP#1208875: Use text/csv MIME for circ history CSV.
Jason Stephenson [Mon, 9 Jun 2014 18:48:16 +0000 (14:48 -0400)]
LP#1208875: Use text/csv MIME for circ history CSV.

Signed-off-by: Jason Stephenson <jstephenson@mvlc.org>
Signed-off-by: Jason Etheridge <jason@equinoxinitiative.org>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
Signed-off-by: Jason Stephenson <jason@sigio.com>
8 years agoLP 1208875: Fix circ history CSV download for many circulations.
Jason Stephenson [Fri, 6 Jun 2014 20:07:11 +0000 (16:07 -0400)]
LP 1208875: Fix circ history CSV download for many circulations.

We no longer retrieve a user's circ history for download via
action/trigger and instead build the CSV data right in the TPAC.
The reason for this change is that action/trigger imposes just
too much of a delay between initiating the retrieval and getting
the data, particulary for patrons who have a large number of
circulation history entries, for certain values of large.

The new code uses the CStoreEditor to make JSON queries to retrieve
only the information needed for CSV.  Testing revealed that using
the existing fetch_user_circs method in EGCatLoader/Account.pm was
still too slow for the more extreme patrons.  The new code also
caches most of the retrieved bibliographic data.  Testing revealed
that most patrons get multiple checkouts of the same things, or
multiple parts of a multiple part television series.  Caching the
bib data for these records has shaved several seconds off retrieval
time in testing.

This branch makes use of a new, MVF, view when retrieving format
information.  It is thus unsuitable as-is for backport before
2.6.

Along the way, we have accreted a generically reusable CSV filter
for Template Toolkit.  That could be useful not only in other
parts of Evergreen, but in other projects.

Finally, this commit leaves the old action/trigger code in the
database.  Right now, it makes a good reference if anyone wants
to study what has been changed.  It can be removed later, if so
desired.

Signed-off-by: Jason Stephenson <jstephenson@mvlc.org>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
Conflicts:
Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm

Signed-off-by: Jason Etheridge <jason@equinoxinitiative.org>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
Signed-off-by: Jason Stephenson <jason@sigio.com>
8 years agolp1653998 webstaff redirect to login page
Jason Etheridge [Thu, 15 Jun 2017 21:18:16 +0000 (17:18 -0400)]
lp1653998 webstaff redirect to login page

on invalid/non-existent authtoken in all or most interfaces (hopefully)

Signed-off-by: Jason Etheridge <jason@equinoxinitiative.org>
Signed-off-by: Mike Rylander <mrylander@gmail.com>
8 years agoForward-port 2.12.3 upgrade script
Dan Wells [Wed, 21 Jun 2017 21:54:16 +0000 (17:54 -0400)]
Forward-port 2.12.3 upgrade script

Signed-off-by: Dan Wells <dbw2@calvin.edu>
8 years agoi18n: fix syntax for Spanish lang.dtd
Ben Shum [Wed, 21 Jun 2017 19:14:55 +0000 (15:14 -0400)]
i18n: fix syntax for Spanish lang.dtd

As noted by FreddyEnrique in IRC, there was a syntax problem for the Spanish
file lang.dtd that caused an error when trying to open the Closed Date Editor.

Signed-off-by: Ben Shum <ben@evergreener.net>
8 years agoDocs: 2.12.3 Release Notes
Kathy Lussier [Wed, 21 Jun 2017 18:08:29 +0000 (14:08 -0400)]
Docs: 2.12.3 Release Notes

Signed-off-by: Kathy Lussier <klussier@masslnc.org>
8 years agoDocs: 2.11.6 Release Notes
Kathy Lussier [Wed, 21 Jun 2017 17:13:46 +0000 (13:13 -0400)]
Docs: 2.11.6 Release Notes

Signed-off-by: Kathy Lussier <klussier@masslnc.org>
8 years agoLP#1665465 - Fix Print receipt on payment cbox not bound to model
Cesar Velez [Mon, 5 Jun 2017 21:50:18 +0000 (17:50 -0400)]
LP#1665465 - Fix Print receipt on payment cbox not bound to model

Seems that Angular for some reason has issues binding to literals...
According to the interwebs it's likely due to scope nesting via ng-include

Signed-off by: Cesar Velez <cesar.velez@equinoxinitiative.org>

Signed-off-by: Jason Etheridge <jason@equinoxinitiative.org>
Signed-off-by: Kathy Lussier <klussier@masslnc.org>
8 years agoLP#1665115-WebStaff add longoverdue items count to Items Out
Cesar Velez [Thu, 15 Jun 2017 19:56:48 +0000 (15:56 -0400)]
LP#1665115-WebStaff add longoverdue items count to Items Out

Longover due items should always, be reflected in total tally count
Which is what displays in the ItemsOut tab and Patron summary area.

Signed-off by: Cesar Velez <cesar.velez@equinoxinitiative.org>

Signed-off-by: Jason Etheridge <jason@equinoxinitiative.org>
Signed-off-by: Kathy Lussier <klussier@masslnc.org>
8 years agoLP#1642035-Small DRY refactor to regctl.js compress_hold_notify()
Cesar Velez [Fri, 2 Jun 2017 19:20:14 +0000 (15:20 -0400)]
LP#1642035-Small DRY refactor to regctl.js compress_hold_notify()

Signed-off by: Cesar Velez <cesar.velez@equinoxinitiative.org>

Signed-off-by: Kathy Lussier <klussier@masslnc.org>
8 years agolp1642035: Replace SMS Carrier Dropdown
Jason Boyer [Thu, 1 Jun 2017 12:28:45 +0000 (08:28 -0400)]
lp1642035: Replace SMS Carrier Dropdown

Signed-off-by: Jason Boyer <jboyer@library.in.gov>
Signed-off-by: Cesar Velez <cesar.velez@equinoxinitiative.org>
Signed-off-by: Kathy Lussier <klussier@masslnc.org>
8 years agolp1642035: Editing User Hold Preferences
Jason Boyer [Wed, 31 May 2017 19:29:46 +0000 (15:29 -0400)]
lp1642035: Editing User Hold Preferences

The JS for hold notification values was replacing rather
than concatenating so only the furthest-right true value
would be saved. And because an ng-if directive creates
a child scope[1], the hold_notify_sms primitive could
never be true. Changed hold_notify_* to an object to
avoid this.

An ng-model directive was added to enable
opac.default_sms_notify but opac.default_sms_carrier
will still require some work to enable / replace.

[1]:https://github.com/angular/angular.js/wiki/Understanding-Scopes

Testing:

pre-patch:
Try to do anything with default sms number, fail.
Try to set more than one of phone + email notification, fail.
Try to set sms notification to anything, fail.

post-patch:
Default sms notify value is populated and can be changed.
All 8 possible combinations of hold notify options can be set.

Still can't set opac.default_sms_carrier value, needs additional work.

Signed-off-by: Jason Boyer <jboyer@library.in.gov>
Signed-off-by: Kathy Lussier <klussier@masslnc.org>
8 years agoLP#1696495-WebStaff fix user_settings data caching between patron views
Cesar Velez [Mon, 19 Jun 2017 21:40:38 +0000 (17:40 -0400)]
LP#1696495-WebStaff fix user_settings data caching between patron views

Appends a few promises to make sure that the user_settings are refreshed
each time a user is loaded from within patron app.
Note that testing this requires that LP1642035's fix be in place...
Otherwise you can't properly add user_settings inputs in Webstaff.

Signed-off by: Cesar Velez <cesar.velez@equinoxinitiative.org>

Signed-off-by: Kathy Lussier <klussier@masslnc.org>
8 years agoLP#1679309: Don't persist advanced search format filters in searchbar
Jeff Davis [Mon, 3 Apr 2017 21:21:33 +0000 (14:21 -0700)]
LP#1679309: Don't persist advanced search format filters in searchbar

Signed-off-by: Jeff Davis <jdavis@sitka.bclibraries.ca>
Signed-off-by: Kathy Lussier <klussier@masslnc.org>
8 years agoLP#1693560: Remove permission check for retrieve tag table function
Kathy Lussier [Tue, 20 Jun 2017 20:31:43 +0000 (16:31 -0400)]
LP#1693560: Remove permission check for retrieve tag table function

The permission check for the retrieve tag table function was preventing
users who don't have the UPDATE_MARC permssion from performing searches
in the staff catalog. Since there's nothing confidential in the table,
this commit removes that permission check. Thanks to Jason Boyer for
finding the source of the problem.

Signed-off-by: Kathy Lussier <klussier@masslnc.org>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
8 years agoLP#1691473 Internal Apache HTTP port configuration
Bill Erickson [Wed, 24 May 2017 20:00:09 +0000 (16:00 -0400)]
LP#1691473 Internal Apache HTTP port configuration

Adds an optional new Apache/mod_perl configuration variable for defining
the port Apache listens on for HTTP traffic.  This resolves an issue
where added content lookups attempting HTTP requests on the local Apache
instance on port 80 failed because Apache was using non-standard ports.

To test:

[1] Set a value for OILSWebInternalHTTPPort that's not "80".
[2] Restart/reload Apache
[3] Load a record detail in the catalog
[4] Confirm opensrf logs show:

"tpac: added content connecting to <ip-address>:<new-port> / <hostname>

<new-port> should be the value configured for OILSWebInternalHTTPPort.

Signed-off-by: Bill Erickson <berickxx@gmail.com>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
8 years agoLP#1694696: add some unit tests for A/T helpers
Galen Charlton [Tue, 20 Jun 2017 18:56:43 +0000 (14:56 -0400)]
LP#1694696: add some unit tests for A/T helpers

In particular, start with get_sms_gateway_email().

Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
8 years agoLP#1642042 Webstaff noncat real-time display
Bill Erickson [Fri, 19 May 2017 16:05:47 +0000 (12:05 -0400)]
LP#1642042 Webstaff noncat real-time display

Update non-cat counts in the patron summary side bar and show the full
set of non-cat circs in the Non-Cataloged Circulations tab as non-cat
circs occur in the patron checkout interface.

Consistent with the XUL client, avoid updating tab-level 'items out'
counts with non-cat circs.

Adds a new work log action for 'noncat_checkout' so the correct data can
be extracted.  As with the XUL client, this appears in the work log as a
'checkout' with no copy.

Signed-off-by: Bill Erickson <berickxx@gmail.com>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
8 years agoLP#1686194 Account for adjustments when generating fines
Dan Wells [Mon, 24 Apr 2017 18:29:04 +0000 (14:29 -0400)]
LP#1686194 Account for adjustments when generating fines

Fine generation stops at a predetermined 'max fines' amount, but this
does not account for possible adjustments which lower the effective
fine amount.  This situation is common in cases where lost items are
returned, and the library wants to generate additional overdues upon
that event.

With this commit, fine generation will pull in any adjustments applied
to overdue fines, and use those to offset the current total fine when
checking for max fines.

Also includes test for this condition.

Signed-off-by: Dan Wells <dbw2@calvin.edu>
Signed-off-by: Jeff Davis <jdavis@sitka.bclibraries.ca>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
8 years agolp1686459 webstaff: item editor form validation
Jason Etheridge [Thu, 8 Jun 2017 05:02:17 +0000 (01:02 -0400)]
lp1686459 webstaff: item editor form validation

Specifically for stat cats, we mark the select statements as required if the
corresponding stat cat is required, but we can also start using HTML5 validation
tests elsewhere in the form now as well.

I also fixed the <NONE> entries so that they display instead of blank entries,
and forced the Price, Cost, and Deposit Amount fields to be of input type number,
though you could still enter invalid numbers here from the database's POV, so
better validation tests are still needed there.

Signed-off-by: Jason Etheridge <jason@equinoxinitiative.org>
Signed-off-by: Andrea Neiman <abneiman@equinoxinitiative.org>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
8 years agolp1671603 webstaff: add confirm step for voiding billings
Jason Etheridge [Mon, 12 Jun 2017 15:07:59 +0000 (11:07 -0400)]
lp1671603 webstaff: add confirm step for voiding billings

This patch adds a confirmation step for  both Void All Bills
in the main billing UI, and Void Billings in the Full Details UI

Signed-off-by: Jason Etheridge <jason@equinoxinitiative.org>
Signed-off-by: Andrea Neiman <abneiman@equinoxinitiative.org>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
Conflicts:
Open-ILS/src/templates/staff/circ/patron/index.tt2

8 years agoLP#1616980 webstaff: protect "magic statuses" when editing copies
Jason Etheridge [Fri, 2 Jun 2017 16:59:24 +0000 (12:59 -0400)]
LP#1616980 webstaff: protect "magic statuses" when editing copies

This patch fixes a bug where the web staff volume/copy editor
could be used to put items in or out of the following status:

1 - Checked out
3 - Lost
6 - In transit
8 - On holds shelf
16 - Long Overdue
18 - Canceled Transit

To test
-------
1. Choose to "Edit Items" on an Available copy.
2. Status field is fully editable. Click to open the dropdown
3. Click "Checked out"
4. Click "Save & Exit"
5. Result is that the item status changes to 'checked out',
   which should not happen.
6. Choose to "Edit Items" on an Checked out copy.
7. Status field is fully editable. Click to open the dropdown
8. Click "Available"
9. Click "Save & Exit"
10. Result is that the item status changes to 'available'.
11. Apply the patch and repeat steps 1-10. This time, the magic
    status are marked as disabled in the copy status selector.
    If the item is already in one of the magic statuses, if the
    user attempts to change the status, the interface will appear
    to allow it, but the change will be silently ignored.

Signed-off-by: Jason Etheridge <jason@equinoxinitiative.org>
Signed-off-by: Andrea Neiman <abneiman@equinoxinitiative.org>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
8 years agoLP#1681943: show all list fields in mobile view
Galen Charlton [Thu, 25 May 2017 01:22:11 +0000 (21:22 -0400)]
LP#1681943: show all list fields in mobile view

In mobile view, "rotate" the temporary and permanent list
tables 90 degrees and put the column headings on the left/right
side.  data-label attributes are used to stash copies of the
column labels; the end result is similar to how the current
circulations table is displayed on narrow screens.

Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
8 years agoLP#1681943: Tweak for RTL handling for responsive my lists
Ben Shum [Tue, 2 May 2017 02:42:11 +0000 (22:42 -0400)]
LP#1681943: Tweak for RTL handling for responsive my lists

Needs some additional changes to support RTL for responsive my lists.

Signed-off-by: Ben Shum <ben@evergreener.net>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
8 years agoLP#1681943: Use variables for CSS colors
Ben Shum [Tue, 2 May 2017 02:27:10 +0000 (22:27 -0400)]
LP#1681943: Use variables for CSS colors

There were some hardcoded references to #ccc in the stylesheet, and
those should be variables like [% css_colors.accent_light %] instead.

Signed-off-by: Ben Shum <ben@evergreener.net>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
8 years agoLP#1681943: tweak background color of edit list description box
Galen Charlton [Wed, 26 Apr 2017 13:21:06 +0000 (09:21 -0400)]
LP#1681943: tweak background color of edit list description box

This makes it consistent with the 'create new list' box
and improves the contrast of the inputs.

Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
Signed-off-by: Ben Shum <ben@evergreener.net>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
8 years agoLP#1681943 Improve Responsive Design in My Lists
Terran McCanna [Tue, 11 Apr 2017 21:42:54 +0000 (17:42 -0400)]
LP#1681943 Improve Responsive Design in My Lists

- Moved action dropdown out of header row so that it is no longer
hidden on mobile view.
- Hid less essential columns on mobile view, leaving only title / author.
- Sized and lined up buttons more neatly on both mobile and normal view.
- Added a title to the section for editing a list title and description.

Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
Conflicts:
Open-ILS/src/templates/opac/css/style.css.tt2
Open-ILS/src/templates/opac/parts/anon_list.tt2

Signed-off-by: Ben Shum <ben@evergreener.net>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
8 years agoLP#169787 High contrast text in patron summary alert buttons
Dan Scott [Thu, 8 Jun 2017 15:32:36 +0000 (11:32 -0400)]
LP#169787 High contrast text in patron summary alert buttons

Rather than displaying red text on the default blue background for alert text
on an active button, display the alert text as a much higher contrast
red-on-white.

Signed-off-by: Dan Scott <dan@coffeecode.net>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
8 years agoLP1690434: Date Comparisons in the Reporter
Jason Boyer [Fri, 12 May 2017 19:14:54 +0000 (15:14 -0400)]
LP1690434: Date Comparisons in the Reporter

Because of the way the where clause is constructed
in queries using the Year + Month Transform reports
using some types of operators could produce invalid
SQL.

To test:
put together a simple report template with a date
in the Basic Filters section, using the Year + Month
transform and the On or After operator. (a count of
circs with an xact_start filter is a simple way to
set this up.) Schedule it with a relative date
such as 1 month ago and run it.

Pre Patch: the report will fail and the error text
will reference a missing text >= double precision
comparison function.

Post Patch: you'll get a count of how many circs
were opened last month (or whatever report you
wrote).

Signed-off-by: Jason Boyer <jboyer@library.in.gov>
Signed-off-by: Mike Rylander <mrylander@gmail.com>
8 years agoLP#1694497: fix record links on 2nd+ page of grouped results
Galen Charlton [Tue, 30 May 2017 19:51:23 +0000 (15:51 -0400)]
LP#1694497: fix record links on 2nd+ page of grouped results

This patch fixes a bug wherein the second (and subsequent)
pages of search results in the public catalog (when group
formats and editions is in effect) does not correctly generate
links to hits that are not part of of a multi-bib metarecords.

To test
-------
1. Keyword search concerto for "piano"
2. Check the box for "Group formats and Editions"
3. Click Page 2
4. Click any result that is not a group (missing the parentheses after
   the title). You will get redirected to the my account page.
5. Apply the patch and do steps #1-4 again. This time, you should
   end up on the record details page.

Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
Signed-off-by: Jason Boyer <jboyer@library.in.gov>
Signed-off-by: Dan Wells <dbw2@calvin.edu>
8 years agoLP#1312824: follow-up to fix whitespace
Galen Charlton [Tue, 30 May 2017 14:05:57 +0000 (10:05 -0400)]
LP#1312824: follow-up to fix whitespace

Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
8 years agoLP#1312824: Change success message for transferred holds
Kathy Lussier [Fri, 19 May 2017 15:38:53 +0000 (11:38 -0400)]
LP#1312824: Change success message for transferred holds

The holds transferred success message should clarify which holds were
transferred to mitigate potential confusion.

Signed-off-by: Kathy Lussier <klussier@masslnc.org>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
8 years agoLP1312824 open-ils.circ.hold.change_title fix
Jason Boyer [Fri, 25 Apr 2014 16:45:34 +0000 (12:45 -0400)]
LP1312824 open-ils.circ.hold.change_title fix

Add a capture_time => undef limit to both change_title
APIs to prevent currently captured holds from being reset
when moving holds from one title to another.
More work is needed to prevent items currently in transit
from having their transits canceled.

Test plan
---------
1. Create a bib with multiple holdings
2. Add multiple holds to this title and capture one of them - Item
   will have a status of On Holds Shelf
3. Open another bib record, open Actions for this Record menu,
   Mark as Hold Transfer Destination
4. Return to the record that has a captured hold, open Actions for
   this Record, Transfer all Title Holds
5. Check Captured hold, Item status is Available, hold has been reset
   and now points to the new bib record.

With the patch applied, steps 2-5 above should be repeated, but this
time in step 5 the hold will still be on the original record and the
item's status will still be On Holds Shelf.

Signed-off-by: Jason Boyer <JBoyer1@library.in.gov>
Signed-off-by: Kathy Lussier <klussier@masslnc.org>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
8 years agoLP#1691284 alpha sort circ modifiers on the copy editor
Cesar Velez [Thu, 18 May 2017 22:10:03 +0000 (18:10 -0400)]
LP#1691284 alpha sort circ modifiers on the copy editor

Alphabetically sort circ modifiers on webstaff, so large lists
are easier to use.

Signed-off by: Cesar Velez <cesar.velez@equinoxinitiative.org>

Signed-off-by: Kathy Lussier <klussier@masslnc.org>
8 years agoDocs: Fix buggy AsciiDoc rendering of backticks
Remington Steed [Thu, 25 May 2017 18:32:57 +0000 (14:32 -0400)]
Docs: Fix buggy AsciiDoc rendering of backticks

Apparently, AsciiDoc matches backticks (`) with single quotes (') as a
valid quote pair, and this happens before matching a pair of backticks.
So in cases where a pair of backticks is followed by only one single
quote (not within a word), the first backtick is treated as a single
quote, thus breaking the backtick pair and not applying the intended
monospace formatting.

This commit fixes two such cases by escaping the backticks. This doesn't
prevent the same problem in the future, but I haven't found any way to
change this parsing behavior.

Signed-off-by: Remington Steed <rjs7@calvin.edu>
8 years agoforward-port 2.11.4-2.11.5 schema update
Galen Charlton [Wed, 24 May 2017 20:04:37 +0000 (16:04 -0400)]
forward-port 2.11.4-2.11.5 schema update

Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
8 years agoForward-port 2.11.4 upgrade script
Dan Wells [Wed, 19 Apr 2017 21:37:56 +0000 (17:37 -0400)]
Forward-port 2.11.4 upgrade script

Signed-off-by: Dan Wells <dbw2@calvin.edu>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
8 years agoLP#1708485 - Add courier code variable to transit slips. rel_2_12_2
Chris Sharp [Wed, 9 Aug 2017 18:30:43 +0000 (14:30 -0400)]
LP#1708485 - Add courier code variable to transit slips.

This code, developed by Bill Erickson, creates a variable/macro
for {{dest_courier_code}} for receipt templates in the web client.

Signed-off-by: Chris Sharp <csharp@georgialibraries.org>
8 years agoDefault Print Templates - PINES Customizations
Terran McCanna [Wed, 9 Aug 2017 18:05:16 +0000 (14:05 -0400)]
Default Print Templates - PINES Customizations

Customized default print templates for PINES so that each library
will have a good starting point to work from.

Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
8 years agoDefault Print Templates - PINES Customizations
Terran McCanna [Thu, 3 Aug 2017 17:40:26 +0000 (13:40 -0400)]
Default Print Templates - PINES Customizations

Customized default print templates for PINES so that each library
will have a good starting point to work from.

Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
8 years agoSplit bib re-fingerprinting into separate post upgrade file;
Chris Sharp [Fri, 14 Jul 2017 16:29:37 +0000 (12:29 -0400)]
Split bib re-fingerprinting into separate post upgrade file;

Comment out reingest so we can use pingest.pl instead.

8 years agoLP#1702489 - Wrong join type on Acq Lineitem Detail
Chris Sharp [Wed, 5 Jul 2017 14:24:32 +0000 (10:24 -0400)]
LP#1702489 - Wrong join type on Acq Lineitem Detail

The Line Item Detail reporting source offers the wrong
type of nullability when nullability selection is
enabled and the user selects the Evergreen Copy ID
link (offers "Parent" but should be "Child"). This is
because the fieldmapper assumes a "has_a" relationship
between acqlid and acp when it should be a "might_have".

Signed-off-by: Chris Sharp <csharp@georgialibraries.org>
8 years agoPINES Customization: Hide FAST Subject Headings
Terran McCanna [Thu, 13 Apr 2017 16:25:33 +0000 (12:25 -0400)]
PINES Customization: Hide FAST Subject Headings

See help desk ticket 4655.

Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
8 years agoPINES Customization: NoveList Added Content Attempt 2
Terran McCanna [Wed, 24 May 2017 18:03:46 +0000 (14:03 -0400)]
PINES Customization: NoveList Added Content Attempt 2

Taking a different approach to displaying the NoveList
content upon loading.

Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
8 years agoPINES Customization: Mobile view for fines payment form
Terran McCanna [Tue, 23 May 2017 18:23:54 +0000 (14:23 -0400)]
PINES Customization: Mobile view for fines payment form

Modified table so that the form design doesn't go off the side
of the screen in mobile view.

Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
8 years agoLP#1694696 - Check for blank SMS Carriers in A/T reactor
Chris Sharp [Wed, 31 May 2017 12:22:58 +0000 (08:22 -0400)]
LP#1694696 - Check for blank SMS Carriers in A/T reactor

Currently, the get_sms_gateway_email subroutine does not check
for the truthiness of sms_carrier, which can result in catastrophic
failure for a running server.  This adds that check.

Signed-off-by: Chris Sharp <csharp@georgialibraries.org>
8 years agoTemp fix for Broken Hold Links
Terran McCanna [Wed, 24 May 2017 20:22:02 +0000 (16:22 -0400)]
Temp fix for Broken Hold Links

Temporary fix for https://bugs.launchpad.net/evergreen/+bug/1687319

Not an ideal fix because it requires javascript, but it'll do for now.

Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
8 years agoAdding PINES pre-upgrade script for 2.11-2.12
Chris Sharp [Fri, 23 Jun 2017 01:16:09 +0000 (21:16 -0400)]
Adding PINES pre-upgrade script for 2.11-2.12

8 years agoPINES already added this setting.
Chris Sharp [Fri, 23 Jun 2017 00:28:17 +0000 (20:28 -0400)]
PINES already added this setting.

8 years agoPINES already has 1009.
Chris Sharp [Fri, 23 Jun 2017 00:19:34 +0000 (20:19 -0400)]
PINES already has 1009.

8 years agoAdding IF NOT EXISTS to index creation.
Chris Sharp [Fri, 23 Jun 2017 00:18:17 +0000 (20:18 -0400)]
Adding IF NOT EXISTS to index creation.

8 years agoMissed some git merge HEAD tags.
Chris Sharp [Thu, 1 Jun 2017 12:33:06 +0000 (08:33 -0400)]
Missed some git merge HEAD tags.

8 years agoRemoving duplicate 2.12.2 line in 002.schema.config.sql
Chris Sharp [Thu, 1 Jun 2017 12:31:03 +0000 (08:31 -0400)]
Removing duplicate 2.12.2 line in 002.schema.config.sql

8 years agoPINES Customization: Self-check - add note about online catalog
Terran McCanna [Tue, 23 May 2017 21:21:32 +0000 (17:21 -0400)]
PINES Customization: Self-check - add note about online catalog

Added note to screen referring people to online catalog if they
wish to perform functions not available in self-check such as
paying fines and handling renewals.

Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
8 years agoPINES Customization: Self-check text changes
Terran McCanna [Tue, 23 May 2017 21:54:31 +0000 (17:54 -0400)]
PINES Customization: Self-check text changes

Modified login text to make it more user friendly.

Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
8 years agoKPAC Updates: Summer Reading Program 2017
Terran McCanna [Mon, 15 May 2017 16:43:45 +0000 (12:43 -0400)]
KPAC Updates: Summer Reading Program 2017

Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
8 years agoPINES Customization: Add IMLS logo to footer
Terran McCanna [Thu, 4 May 2017 21:17:50 +0000 (17:17 -0400)]
PINES Customization: Add IMLS logo to footer

Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
8 years agoupdating PINES survey display
Chris Sharp [Mon, 10 Apr 2017 11:01:17 +0000 (07:01 -0400)]
updating PINES survey display

8 years agoPINES Customization: Adding menu link to Android App download.
Terran McCanna [Tue, 21 Mar 2017 14:06:50 +0000 (10:06 -0400)]
PINES Customization: Adding menu link to Android App download.

Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
8 years agoLP#1672346 - Copy Statistics View
Chris Sharp [Thu, 16 Mar 2017 18:34:16 +0000 (14:34 -0400)]
LP#1672346 - Copy Statistics View

Certain third-party products such as collection development
management providers require copy statistics that are not
readily available in a single report.  This view adds those,
which will also benefit library staff reports generally.

Signed-off-by: Chris Sharp <csharp@georgialibraries.org>
8 years agoRevert "LP#1661346 - Add User Setting Type View reporter source"
Chris Sharp [Thu, 16 Mar 2017 19:35:09 +0000 (15:35 -0400)]
Revert "LP#1661346 - Add User Setting Type View reporter source"

This reverts commit 92e3f4615465ce56cbe9ba9f1963a412f1c1aed2.

8 years agoRevert "LP#1661346 - trim quotes from setting value"
Chris Sharp [Thu, 16 Mar 2017 19:34:51 +0000 (15:34 -0400)]
Revert "LP#1661346 - trim quotes from setting value"

This reverts commit d1b90073b092247705f12584adda689535fab71c.

8 years agoPINES Customization - Hide shelf expire time in OPAC because it doesn't
Terran McCanna [Mon, 6 Mar 2017 21:34:49 +0000 (16:34 -0500)]
PINES Customization - Hide shelf expire time in OPAC because it doesn't
always match how long the libraries actually keep the items on the shelves
due to local policy.

Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
8 years agoNew Book List Selector
Terran McCanna [Mon, 20 Feb 2017 20:38:24 +0000 (15:38 -0500)]
New Book List Selector

I created a new library dropdown based on the existing org selector
dropdown which dynamically creates the library list for the new book
selector. This replaces the manually-coded new book list selector I
originally put in place in order to get the feature rolled out.

Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
8 years agoTemporary Lists: Modifying code to re-show temporary list links
Terran McCanna [Thu, 16 Feb 2017 21:49:07 +0000 (16:49 -0500)]
Temporary Lists: Modifying code to re-show temporary list links
that were disabled due to bug 1639236.

Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
8 years agoPINES Customization: Hide queue order from My Account Holds Screen
Terran McCanna [Tue, 28 Feb 2017 17:56:52 +0000 (12:56 -0500)]
PINES Customization: Hide queue order from My Account Holds Screen
in OPAC.

Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
8 years agoLP#1661346 - trim quotes from setting value
Chris Sharp [Tue, 7 Feb 2017 14:29:58 +0000 (09:29 -0500)]
LP#1661346 - trim quotes from setting value

Signed-off-by: Chris Sharp <csharp@georgialibraries.org>
8 years agoLP#1661346 - Add User Setting Type View reporter source
Chris Sharp [Thu, 2 Feb 2017 18:07:44 +0000 (13:07 -0500)]
LP#1661346 - Add User Setting Type View reporter source

With our newly-implemented action_trigger.event_definitions
running, it is now desirable to have easier access to the SMS
settings selected by users. This is best accomplished with a
new view that will be linked from the actor.usr object.

Signed-off-by: Chris Sharp <csharp@georgialibraries.org>
8 years agoLP#1596595 AOUS lookup batch by org id
Bill Erickson [Tue, 7 Feb 2017 17:25:01 +0000 (12:25 -0500)]
LP#1596595 AOUS lookup batch by org id

Org unit setting value lookup for batches of org units, instead of the
traditional batches by setting name.

Perl live test included.

Signed-off-by: Bill Erickson <berickxx@gmail.com>
8 years agoRevert "LP#1596595 AOUS lookup batch by org id"
Chris Sharp [Wed, 8 Feb 2017 17:03:17 +0000 (12:03 -0500)]
Revert "LP#1596595 AOUS lookup batch by org id"

This reverts commit 9b2126e90d75de8e30e381c65c78af7fca46dcb0.

8 years agoLP#1596595 AOUS lookup batch by org id
Bill Erickson [Tue, 7 Feb 2017 17:25:01 +0000 (12:25 -0500)]
LP#1596595 AOUS lookup batch by org id

Org unit setting value lookup for batches of org units, instead of the
traditional batches by setting name.

Perl live test included.

Signed-off-by: Bill Erickson <berickxx@gmail.com>
8 years agoRevert "LP#1596595 AOUS lookup batch by org id"
Chris Sharp [Tue, 7 Feb 2017 23:03:50 +0000 (18:03 -0500)]
Revert "LP#1596595 AOUS lookup batch by org id"

This reverts commit 483d641d4292f73e0473dd9be9bfc29b7d294958.

8 years agoRevert "LP#1596595 Targeter leverages batch AOUS lookups"
Chris Sharp [Tue, 7 Feb 2017 23:03:27 +0000 (18:03 -0500)]
Revert "LP#1596595 Targeter leverages batch AOUS lookups"

This reverts commit 410f75107d8689cd2174bf6f029da5738dfa82b9.

8 years agoLP#1596595 AOUS lookup batch by org id
Bill Erickson [Tue, 7 Feb 2017 17:25:01 +0000 (12:25 -0500)]
LP#1596595 AOUS lookup batch by org id

Org unit setting value lookup for batches of org units, instead of the
traditional batches by setting name.

Perl live test included.

Signed-off-by: Bill Erickson <berickxx@gmail.com>
8 years agoRevert "Adding Bill Erickson's fix for endless open cstore transactions"
Chris Sharp [Tue, 31 Jan 2017 20:43:05 +0000 (15:43 -0500)]
Revert "Adding Bill Erickson's fix for endless open cstore transactions"

This reverts commit c585bfdedac4f2e35bcb0be2daae4a892f413f39.

8 years agoAdding Bill Erickson's fix for endless open cstore transactions
Chris Sharp [Tue, 31 Jan 2017 16:18:21 +0000 (11:18 -0500)]
Adding Bill Erickson's fix for endless open cstore transactions

After applying the fix to LP#1660059, the server running A/T notices
generated multiple cstore processes without closing them.  Changing
xact_commit to commit closes the cstore process after each event is
evaluated.

8 years agoNew Book Lists: Final correction to title links
Terran McCanna [Wed, 18 Jan 2017 16:06:15 +0000 (11:06 -0500)]
New Book Lists: Final correction to title links

This was already applied to production during the upgrade process -
adding to GIT here for future reference.

Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
Conflicts:
Open-ILS/xsl/ATOM2XHTML.xsl

8 years agoAdding create date and active date to holdings maintenance interface
Chris Sharp [Wed, 18 Jan 2017 18:44:45 +0000 (13:44 -0500)]
Adding create date and active date to holdings maintenance interface

8 years agoRevert "New Book Lists - Title Links"
Chris Sharp [Sun, 15 Jan 2017 21:12:34 +0000 (16:12 -0500)]
Revert "New Book Lists - Title Links"

This reverts commit bd0b61a767a69e42cfa8f69615926878802a3b58.

8 years agoNew Book Lists - Title Links
Terran McCanna [Thu, 12 Jan 2017 16:59:46 +0000 (11:59 -0500)]
New Book Lists - Title Links

Improved title link to go to standard record page that the current
OPAC uses.

Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
8 years agoAdding usrname index to upgrade script
Chris Sharp [Wed, 11 Jan 2017 15:15:28 +0000 (10:15 -0500)]
Adding usrname index to upgrade script

8 years agoAdding post-upgrade file.
Chris Sharp [Tue, 10 Jan 2017 23:06:30 +0000 (18:06 -0500)]
Adding post-upgrade file.

8 years agoModify upgrade scripts since we're doing the reingest separately.
Chris Sharp [Tue, 10 Jan 2017 15:24:12 +0000 (10:24 -0500)]
Modify upgrade scripts since we're doing the reingest separately.

8 years agoOPAC Mobile View Display customizations
Terran McCanna [Mon, 9 Jan 2017 17:45:20 +0000 (12:45 -0500)]
OPAC Mobile View Display customizations
Mainly to Lists page and Holds page in My Accounts

Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
8 years agoLP#1596595 Hold targeter perl live tests
Bill Erickson [Mon, 15 Aug 2016 16:27:51 +0000 (12:27 -0400)]
LP#1596595 Hold targeter perl live tests

1. Batch of tests for concerto hold 1 / title hold
2. Batch of tests for concerto hold 265 / metarecord hold with
   holdable_formats restriction.
3. --skip-viable test

Signed-off-by: Bill Erickson <berickxx@gmail.com>
8 years agoLP#1596595 Hold targeter refactoring and optimization.
Bill Erickson [Tue, 7 Jun 2016 21:32:14 +0000 (17:32 -0400)]
LP#1596595 Hold targeter refactoring and optimization.

* New open-ils.hold-targeter service

* Ports hold targeter code to a Perl utility function, communicating w/
  the DB via cstore instead of storage.

* Adds a new global flag 'circ.holds.retarget_interval' for configuring
  the hold retarget interval in the database.

* Adds a new DB function to regenerating hold copy maps to make map
  deletion and creation more efficient.

* Adds an option for targeting holds in newest to oldest order.

* Caches all org unit settings per targeter run.

* Adds support for "skip_viable" option.  This tells the hold targeter
  to avoid modifying any holds that target viable copies.  AKA "fix
  broken" mode.

  For example, you might run in skip_viable mode with a retarget
  interval of 24hr once a day to repair non-viable holds, then also run
  the targeter in regular mode once a day with a retarget interval of 48
  hours to give staff 2 days to process viable holds.

* Hold target loops logic changes:

 ** Org units with fewer target attempts are prioritized during loop
    processing.  So, instead of segregating org units into 2 categetories,
    those attempted in the current loop and those not attempted, sort those
    not attempted by the number number of times they have been attempted.
    Within each grouping, prioritize by target weight/proximity as before.

 ** All org units that have been attempted less than the max configured
    amount are on the table for targeting, not just those that have been
    targeted less than the current loop max.  If no orgs with
    less-than-current-max attempts are found, try orgs that match the
    current max (but are still less than the configured max).

 ** When activated, target looping treats the pickup lib like any
    other org unit.  If a targeted copy at the pickup lib remains
    un-captured, at re-target time, a copy at a different branch is
    chosen (if one is available) even if other copies at the pickup
    lib are targetable.

* Parallel targeting support baked into service.

  Teach the targeter to process a subset of holds based on the number of
  parallel targeters at play and the parallel targeting slot each targeter
  instance occupies.

  As with the existing hold targeter, group holds by their metarecord to
  avoid multiple targeter processes targeting the same sets of potential
  copies.

* Logging / code refactoring and clean up.

* New hold_targeter_v2.pl script for batch hold targeting.  Existing
  targeter remains for backwards-compat.

hold_targeter_v2.pl options:

--verbose
    Print process counts

--parallel <parallel-process-count>
    Number of parallel hold processors to run.  This overrides any
    value found in opensrf.xml

--target-all
    Target all active holds, regardless of when they were last targeted.

--skip-viable
    Avoid modifying holds that currently target viable copies.
    In other words, only (re)target holds in a non-viable state.

--retarget-interval
    Override the 'circ.holds.retarget_interval' global_flag value.

--parallel-init-sleep
    Time to wait between starting each parallel instance.  Useful for
    avoiding dog-piling the DB.

Signed-off-by: Bill Erickson <berickxx@gmail.com>
8 years agoNew Book Lists: More fixes
Terran McCanna [Mon, 9 Jan 2017 14:33:02 +0000 (09:33 -0500)]
New Book Lists: More fixes
Changed title and added 'On Order' message for new records that aren't
available for holds or checkout yet.

Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
8 years agoChanging hard-coded string to allow locale to work.
Chris Sharp [Mon, 9 Jan 2017 12:30:45 +0000 (07:30 -0500)]
Changing hard-coded string to allow locale to work.

8 years agoNew Book Lists: Additional tweaks for author and image display
Terran McCanna [Thu, 5 Jan 2017 20:42:50 +0000 (15:42 -0500)]
New Book Lists: Additional tweaks for author and image display

Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
8 years agoNew Book Lists
Terran McCanna [Thu, 5 Jan 2017 19:03:41 +0000 (14:03 -0500)]
New Book Lists
Adding functionality to PINES home page so that patrons can select
a library and see a list of new materials.

Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
8 years agoAdd Invoice Summary Reporting View.
Chris Sharp [Thu, 15 Dec 2016 19:20:36 +0000 (14:20 -0500)]
Add Invoice Summary Reporting View.

Before now, there have been no easy ways to gather acq
receiving totals from reports.  Here is an attempt to remedy
that situation.

Signed-off-by: Chris Sharp <csharp@georgialibraries.org>
8 years agoDriver's license guidelines
Terran McCanna [Tue, 3 Jan 2017 23:27:44 +0000 (18:27 -0500)]
Driver's license guidelines
Added on-screen tip to remind staff how driver's licenses should be
entered in PINES.

Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>