Bill Erickson [Thu, 11 Dec 2014 23:10:31 +0000 (18:10 -0500)]
EDI avoid canceling backorder items (from bradley patch)
Quoth Bradley:
I did a quick and dirty hack to the perl file EDI.pm to get around this
temporarily. (version 2.4.5)
Normally, the EDI response read would interpret a 400 response as
back-ordererd and assign a cancel reason(and cancel the line item and
its copies). I just tried changing it to 401 instead, causing a 400 to
be ignored.
If there IS a legitimate 401 returned, that might cause trouble! And, I
don't have a way in the client to see back ordered items, although our
staff has other ways to determine that from the vendors.
snippet changed (400 changed to 401):
if ($stat = $li_hash->{order_status}) { $logger->info("EDI: lineitem has
order status $stat");
if ($stat eq '200') { $reason_id = 1007; # not
accepted
} elsif ($stat eq '401') { $reason_id = 1283; #
back-order }
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Bill Erickson [Thu, 20 Nov 2014 17:31:32 +0000 (12:31 -0500)]
remove zips.txt, which now lives in config repo
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Bill Erickson [Mon, 8 Dec 2014 17:06:27 +0000 (12:06 -0500)]
cross-porting jbas-149 and jbas-228 SQL for reference
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Bill Erickson [Mon, 8 Dec 2014 15:34:26 +0000 (10:34 -0500)]
LP#
1380709 fund_debit.invoice_entry INDEX
Adds index on new acq.fund_debit.invoice_entry column, since fund_debit
can get quite large.
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Bill Erickson [Thu, 16 Oct 2014 20:17:16 +0000 (16:17 -0400)]
LP#
1380709 Fund debit links to invoice entry
Fund debits created by lineitem_details (copies) now track which invoice
entry last touched the fund debit. With this, it's possible to say with
certainty which invoice a fund_debit "belongs" to, which is particularly
useful for reporting fund summary information on an invoice.
Note this has no affect fund_debit's linked to invoice_item's, since
they already link to the fund debits.
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Bill Erickson [Thu, 15 Jan 2015 20:55:39 +0000 (15:55 -0500)]
JBAS-408 delete copy maps at fulfillment time
Revert part of the change introduced by JBAS-149, which caused hold copy
maps to be deleted at capture time instead of fulfillment time. That
part of the change (which has no real benefit) had unexpected side
effects. We now return to deleting copy maps at fulfillment time.
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Mike Rylander [Wed, 29 Oct 2014 14:37:29 +0000 (10:37 -0400)]
LP#
1386347: Clear hold-copy-map efficiently
When capturing or canceling a hold, we can clear the hold-copy-map
with a trigger, saving the time of the user, and making the business
logic simpler.
LP#
1386347 copy map trigger wants a RETURN
Signed-off-by: Mike Rylander <mrylander@gmail.com>
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Conflicts:
Open-ILS/src/sql/Pg/090.schema.action.sql
Bill Erickson [Thu, 30 Oct 2014 21:09:04 +0000 (17:09 -0400)]
JBAS-149 reduce clear hold shelf chatter
Change the client notification update batch size from 25 to 50 to reduce
the overall number of update messages sent to the client in half. This
reduces the likelihood of communication failures between server/XUL for
long running, streaming requests.
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Conflicts:
Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Holds.pm
Mike Rylander [Sun, 2 Mar 2014 21:32:20 +0000 (16:32 -0500)]
Stamping upgrade script for pre-calculate-prox-adjustment for backport
Signed-off-by: Mike Rylander <mrylander@gmail.com>
Conflicts:
Open-ILS/src/sql/Pg/002.schema.config.sql
Conflicts:
Open-ILS/src/sql/Pg/002.schema.config.sql
Mike Rylander [Sun, 2 Mar 2014 21:29:27 +0000 (16:29 -0500)]
Calculate proximity in the DB for speed
We need to calculate and store a (potenially adjusted) proxmity for
each hold and copy for use in targetting and optimization of op
capture. Before this commit, we do that within the hold target
code itself. Now we'll do it when the hold-copy map is inserted,
because we have the same information available at that time as we
have in the targeter. This will both speed up the apparent cost of
the calculation, because it avoids the cost of a network round-trip,
and the total number of SELECTs we must issue, because the proximity
value will now be cached for use by the proximity map function.
Backward compatability is retained for the create_prox_map() function
in case any other code is depending on that.
Signed-off-by: Mike Rylander <mrylander@gmail.com>
Signed-off-by: Chris Sharp <csharp@georgialibraries.org>
Conflicts:
Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Publisher/action.pm
Bill Erickson [Thu, 23 Oct 2014 16:03:31 +0000 (12:03 -0400)]
JBAS-234 sort patron event rows descending
Due to how the event rows are inserted, the server side "desc" sort
becomes in effect an "asc" sort. To achieve a final sort of descending,
this patch makes the server-side sort ascending.
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Bill Erickson [Thu, 16 Oct 2014 22:23:14 +0000 (18:23 -0400)]
JBAS-224 add date limit support to user event log UI
Backporting support for the library setting
'circ.staff.max_visible_event_age' to limit the number of events
displayed in the patron event log interface by date.
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Bill Erickson [Wed, 29 Oct 2014 21:10:47 +0000 (17:10 -0400)]
kmain-1403: Send focus back to top after scanning barcode
Cross-port:
555a899
Bill Erickson [Wed, 29 Oct 2014 21:10:43 +0000 (17:10 -0400)]
KMAIN-269: Order records transfer to new bib record merge updated
Cross-port:
e8815e7
Bill Erickson [Wed, 29 Oct 2014 21:10:41 +0000 (17:10 -0400)]
KMAIN-1400: Call Number Reverting Changed code in update_items.js to ensure that all call number changes are being applied and saved correctly. The Print Labels screen now displays the correct labels.
Cross-port:
efaad27
Bill Erickson [Wed, 29 Oct 2014 21:10:40 +0000 (17:10 -0400)]
Script to add notes is called twice, not sure why but added a check to both accounts
Cross-port:
ebc59e3
Bill Erickson [Wed, 29 Oct 2014 21:10:38 +0000 (17:10 -0400)]
Added a check on the keepOpen variable when saving on whether or not to populate notes
Cross-port:
9e80302
Bill Erickson [Wed, 29 Oct 2014 21:10:36 +0000 (17:10 -0400)]
adding update_items.xul
Cross-port:
09e4536
Bill Erickson [Wed, 29 Oct 2014 21:10:34 +0000 (17:10 -0400)]
Added cat.properties
Cross-port:
893905f
Bill Erickson [Wed, 29 Oct 2014 21:10:32 +0000 (17:10 -0400)]
KMAIN-1346: Adjust column width to match data Added code to update_items.js to remove '# of' from headers on Update Items screen and changed column width. Signed-off-by: Victoria Lewis <vlewis@catalystitservices.com>
Cross-port:
15144be
Bill Erickson [Wed, 29 Oct 2014 21:10:30 +0000 (17:10 -0400)]
added a boolean check to g.stash_and_close in update_items.js, added the boolean to be passed by the save button, and added some localization to cat.properties
Cross-port:
1c2cd32
Bill Erickson [Wed, 29 Oct 2014 21:10:28 +0000 (17:10 -0400)]
Added a listener to the NotesCheckbox that checks whether or not the the box is checked before the checkbox's state is altered, then stashes the boolean. Also added a line of code to pre-check the notescheckbox if the stashed boolean returns true
Cross-port:
e46144c
Bill Erickson [Wed, 29 Oct 2014 21:10:26 +0000 (17:10 -0400)]
KMAIN-1345: Remove Copy Note column from left pane
Cross-port:
a82839c
Bill Erickson [Wed, 29 Oct 2014 21:10:24 +0000 (17:10 -0400)]
KMAIN-1328 Cursor at Bottom of Update Items Added code to update_items.js to reset g.first_focus to null when a new lineitem is chosen. The cursor now focuses on the topmost line item copy barcode field when a different line item is chosen from the drop-down results. Signed-off-by: Victoria Lewis <vlewis@catalystitservices.com>
Cross-port:
09cee90
Bill Erickson [Wed, 29 Oct 2014 21:10:22 +0000 (17:10 -0400)]
KMAIN 1347: Switched PO and LI values as per card instructions
Cross-port:
1f94bdd
Bill Erickson [Wed, 29 Oct 2014 21:10:20 +0000 (17:10 -0400)]
KMain 1347: Widened the Call Number column and the Barcode/Lineitem dropdown column from 100 to 140
Cross-port:
26f2459
Bill Erickson [Wed, 29 Oct 2014 21:10:18 +0000 (17:10 -0400)]
Added .trim to the Call Number to remove any whitespace
Cross-port:
61325a7
Bill Erickson [Wed, 29 Oct 2014 21:10:17 +0000 (17:10 -0400)]
KMAIN-1348: Text Changes
Cross-port:
75a4fa2
Bill Erickson [Wed, 29 Oct 2014 21:10:15 +0000 (17:10 -0400)]
KMAIN-1330 modified update_items.js to pull the copy's call number (aka label) to prepopulate the call number text box in update items
Cross-port:
7582b9e
Bill Erickson [Wed, 29 Oct 2014 21:10:13 +0000 (17:10 -0400)]
KMAIN-1317 Line Item Note Display Part 2
Cross-port:
aab8f7b
Bill Erickson [Wed, 29 Oct 2014 21:10:11 +0000 (17:10 -0400)]
KMAIN-1317 Line Item Note Display
Cross-port:
edb4fe8
Bill Erickson [Wed, 29 Oct 2014 21:10:09 +0000 (17:10 -0400)]
Signed-off-by: Victoria Lewis <vlewis@catalystitservices.com> KMAIN-1316: Print page button not showing Branch name kmain1316-print_button Refer to code changes on bitbucket Code has been added to allow the user to print Lineitem Worksheet in Update Items modified: openils/var/templates/acq/lineitem/worksheet.tt2 (cherry picked from commit 42bafb0036dfe044e42c8a30b607db1a99a11f14)
Cross-port:
147cbae
Bill Erickson [Wed, 29 Oct 2014 21:10:07 +0000 (17:10 -0400)]
Changed Regexp in update_items.js for g.callnumber_label to account for different 09X call numbers (cherry picked from commit
9e41f8e5b9be32d673a4fc80e5df333f49b84b64)
Cross-port:
355712a
Bill Erickson [Wed, 29 Oct 2014 21:10:05 +0000 (17:10 -0400)]
KMain-808 CHS report missing holds where pickup location has been changed. Modified Holds.pm and circ.properties so that the CHS report run daily by staff includes holds with a changed pickup location. In addition to the cancelled/expired holds it also shows a hold that has been moved so that staffknow to pull it and send it on to the changed pickup location. Signed-off-by: Victoria Lewis <vlewis@catalystitservices.com>
Cross-port:
6095afa
Bill Erickson [Wed, 29 Oct 2014 21:10:03 +0000 (17:10 -0400)]
kmain1001 - Base Edit Items Location/Collection on Workstation Branch
Cross-port:
faadf3b
Conflicts:
Open-ILS/xul/staff_client/server/cat/copy_editor.js
Bill Erickson [Wed, 29 Oct 2014 21:10:01 +0000 (17:10 -0400)]
KMAIN-954 Make barcode on precat checkout alert more pronounced
Cross-port:
b423b64
Bill Erickson [Wed, 29 Oct 2014 21:09:59 +0000 (17:09 -0400)]
KMAIN-255 - Set Focus to patron barcode text-box
Cross-port:
746aaa4
Bill Erickson [Wed, 29 Oct 2014 21:09:57 +0000 (17:09 -0400)]
KMAIN-938 - Added space to call numbers
Cross-port:
84acaab
Bill Erickson [Wed, 29 Oct 2014 21:09:55 +0000 (17:09 -0400)]
KMAIN-908: Hold Shelf Time Calculation
Cross-port:
8cb3172
Bill Erickson [Wed, 29 Oct 2014 21:09:53 +0000 (17:09 -0400)]
KMAIN-268: Transfer order records on merge
Cross-port:
a5b1044
Bill Erickson [Wed, 29 Oct 2014 21:09:52 +0000 (17:09 -0400)]
KMAIN998 - Location/Collection dropdown shouldn't include branch short name
Cross-port:
56abbc9
Bill Erickson [Wed, 29 Oct 2014 21:09:50 +0000 (17:09 -0400)]
All Update Items Commits In One
Cross-port:
738e031
Conflicts:
Open-ILS/src/perlmods/lib/OpenILS/Application/Circ.pm
Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Publisher/asset.pm
Bill Erickson [Wed, 29 Oct 2014 21:09:48 +0000 (17:09 -0400)]
JBAS-134 patron event log rollback to prev. version
Cross-port:
638c6cd
Conflicts:
Open-ILS/xul/staff_client/server/patron/display.js
Bill Erickson [Wed, 29 Oct 2014 21:09:46 +0000 (17:09 -0400)]
KMAIN-1235 Red Highlighting of fines on titles still checked out missing after update
Cross-port:
ff07a88
Bill Erickson [Wed, 29 Oct 2014 21:09:44 +0000 (17:09 -0400)]
KMAIN-1236-After Aug 5 prod update, CKO screen "done" button printing empty receipts
Cross-port:
35e48ce
Conflicts:
Open-ILS/xul/staff_client/server/circ/checkout.js
Bill Erickson [Wed, 29 Oct 2014 21:09:42 +0000 (17:09 -0400)]
KMAIN-905 - Client speed impacted by error when viewing patron 'grid' displays
Cross-port:
b58ebe2
Bill Erickson [Wed, 29 Oct 2014 21:09:40 +0000 (17:09 -0400)]
Integrate patches from launchpad bug
1086458 related to staff client memory leak.
Cross-port:
f1aee81
Conflicts:
Open-ILS/xul/staff_client/server/circ/checkout.js
Bill Erickson [Wed, 29 Oct 2014 21:09:38 +0000 (17:09 -0400)]
All cataloging date commits in one as of 2014-06-26
Cross-port:
3f22bff
Conflicts:
Open-ILS/xul/staff_client/server/cat/marcedit.js
Conflicts:
Open-ILS/web/opac/locale/en-US/lang.dtd
Bill Erickson [Wed, 29 Oct 2014 21:09:36 +0000 (17:09 -0400)]
KMAIN-879 - Patron Holds not Sorting
Cross-port:
5818227
Conflicts:
Open-ILS/xul/staff_client/server/cat/copy_browser.js
Bill Erickson [Wed, 29 Oct 2014 21:09:35 +0000 (17:09 -0400)]
Holding_Maintenance Attempts to fix refresh issue on pgpooled dbs
Cross-port:
231f1bb
Conflicts:
Open-ILS/xul/staff_client/server/cat/copy_browser.js
Bill Erickson [Wed, 29 Oct 2014 21:09:33 +0000 (17:09 -0400)]
Adding in a change to zips.txt at Brad's request
Cross-port:
7e31277
Bill Erickson [Wed, 29 Oct 2014 21:09:30 +0000 (17:09 -0400)]
Made change to the function volatility as requested by Nierman
Cross-port:
6fec585
Bill Erickson [Wed, 29 Oct 2014 21:09:28 +0000 (17:09 -0400)]
KMAIN-848 - Holding Maintenance - Volumes altered in 'Raplace Barcode' dialo don't work correctly
Cross-port:
8370533
Conflicts:
Open-ILS/xul/staff_client/server/cat/copy_browser.js
Bill Erickson [Wed, 29 Oct 2014 21:09:26 +0000 (17:09 -0400)]
Holding_maintenance - SQL update to exclude deleted volumes
Cross-port:
b1b43f2
Bill Erickson [Wed, 29 Oct 2014 21:09:25 +0000 (17:09 -0400)]
All Holdings Maintenance Code Smashed Together (2014.03.20)
Cross-port:
115c74a
Conflicts:
Open-ILS/src/perlmods/lib/OpenILS/Application/Search/Biblio.pm
Open-ILS/xul/staff_client/server/cat/copy_browser.js
Conflicts:
Open-ILS/src/perlmods/lib/OpenILS/Application/Cat.pm
Open-ILS/xul/staff_client/chrome/content/main/constants.js
Bill Erickson [Wed, 29 Oct 2014 21:09:23 +0000 (17:09 -0400)]
KMAIN-722: Correct Sort order for Patron Standard Messages
Cross-port:
f38c379
Bill Erickson [Wed, 29 Oct 2014 21:09:21 +0000 (17:09 -0400)]
Change wording slightly to work around submit button wording change. (cherry picked from commit
dd5deafe19e47a4604655266b60aba19a6b862dd)
Cross-port:
3637de9
Bill Erickson [Wed, 29 Oct 2014 21:09:19 +0000 (17:09 -0400)]
change multiple_penalties border color to light blue (same as single penalty) (cherry picked from commit
6fb978ac33b9133ffc42b73413c2ae8749fc9fd4)
Cross-port:
8f3ea0f
Bill Erickson [Wed, 29 Oct 2014 21:09:17 +0000 (17:09 -0400)]
Update zips.txt file to include more recent info (cherry picked from commit
b24ddac2247894052e7470c64e9cf0492371b97b)
Cross-port:
a2a97c1
Bill Erickson [Wed, 29 Oct 2014 21:09:15 +0000 (17:09 -0400)]
KMAIN-718: Hide display of Fines information
Cross-port:
cc5bea8
Bill Erickson [Wed, 29 Oct 2014 21:09:13 +0000 (17:09 -0400)]
KMAIN-733: Part 2: KCLS local changes (Feb 04 2014)
Cross-port:
66f6944
Bill Erickson [Wed, 29 Oct 2014 21:09:10 +0000 (17:09 -0400)]
KMAIN-733: KCLS local changes (Feb 04 2014)
Cross-port:
a0e0fd6
Bill Erickson [Wed, 29 Oct 2014 21:09:09 +0000 (17:09 -0400)]
KMAIN-695: Batch record modification to update last edit date
Cross-port:
4bf867d
Bill Erickson [Wed, 29 Oct 2014 21:09:05 +0000 (17:09 -0400)]
reinstate "Mark Received" and "Un-Receive" options to individual line items. This feature was removed in 2.4 but staff requested it to be added back.
Cross-port:
1defb6b
Bill Erickson [Wed, 29 Oct 2014 21:09:03 +0000 (17:09 -0400)]
ISBN Picker enhancements to show picked and add "Apply All" (cherry picked from commit
e37c412e7b9156639bb51021a06893cfee5e4d40)
Cross-port:
b19ece3
Bill Erickson [Wed, 29 Oct 2014 21:09:01 +0000 (17:09 -0400)]
KMAIN-645: Commit Chilifresh removal
Cross-port:
edae1dc
Bill Erickson [Wed, 29 Oct 2014 21:08:59 +0000 (17:08 -0400)]
Fixed "scan as missing pieces" wizard to print slip to receipt printer context. (cherry picked from commit
889abb36d1797f543429c76a3fb196ef14e0babe)
Cross-port:
f69af00
Bill Erickson [Wed, 29 Oct 2014 21:08:57 +0000 (17:08 -0400)]
Hides billing types and credit amount from bills2.xul screen (cherry picked from commit
c2dc23de2385e22a17e67efef1d43f306a445e1c)
Cross-port:
c75b210
Bill Erickson [Wed, 29 Oct 2014 21:08:55 +0000 (17:08 -0400)]
KMAIN-599: Remove/hide feature from KMAIN-332
Cross-port:
3f7ba2b
Bill Erickson [Wed, 29 Oct 2014 21:08:53 +0000 (17:08 -0400)]
added changes made by bradley for BC
Cross-port:
675309f
Bill Erickson [Wed, 29 Oct 2014 21:08:51 +0000 (17:08 -0400)]
removed message saying the online payments are down
Cross-port:
af82c6b
Bill Erickson [Wed, 29 Oct 2014 21:08:47 +0000 (17:08 -0400)]
KMAIN-602: Add Logout link to E-Com
Cross-port:
0dcbd0c
Conflicts:
Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader.pm
Bill Erickson [Wed, 29 Oct 2014 21:08:45 +0000 (17:08 -0400)]
KMAIN-593: Move all BiblioCommons related files to opac/biblio/
Cross-port:
67a95ba
Conflicts:
Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader.pm
Bill Erickson [Wed, 29 Oct 2014 21:08:43 +0000 (17:08 -0400)]
ISBN Picker bug workaround (cherry picked from commit
665b372fd4565a22f2d500c8e8d91a50728156b3)
Cross-port:
15dcea0
Bill Erickson [Wed, 29 Oct 2014 21:08:41 +0000 (17:08 -0400)]
Updates to homesearch.tt2, updating images - Bradley Change 2013.12.11
Cross-port:
1ecb295
Bill Erickson [Wed, 29 Oct 2014 21:08:39 +0000 (17:08 -0400)]
KMAIN-582 : BiblioCommons E-Commerce Receipt Screen
Cross-port:
5edb7ab
Bill Erickson [Wed, 29 Oct 2014 21:08:33 +0000 (17:08 -0400)]
KMAIN-570 part 2 : Ecom Bibliocommons
Cross-port:
7597ac6
Bill Erickson [Wed, 29 Oct 2014 21:08:31 +0000 (17:08 -0400)]
KMAIN-570 : Update Bibliocommons ecom screens
Cross-port:
06162e8
Bill Erickson [Wed, 29 Oct 2014 21:08:29 +0000 (17:08 -0400)]
kmain-331_all_bibliocommons_ecommerce_functionality
Cross-port:
f8c3c9e
Conflicts:
Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader.pm
Bill Erickson [Wed, 29 Oct 2014 21:08:25 +0000 (17:08 -0400)]
KMAIN-583 : OPAC My Account screen - holds tab only showing 15 items max
Cross-port:
92fb51a
Bill Erickson [Wed, 29 Oct 2014 21:08:24 +0000 (17:08 -0400)]
Adds the banner message for catalog, database, and ebooks down during upgrade
Cross-port:
359dd8b
Bill Erickson [Wed, 29 Oct 2014 21:08:22 +0000 (17:08 -0400)]
Manual Changes Bradley Pushed After Go Live 12/9/2013
Cross-port:
4697a49
Bill Erickson [Wed, 29 Oct 2014 21:08:20 +0000 (17:08 -0400)]
Updated the linking config files.
Cross-port:
c10583c
Bill Erickson [Wed, 29 Oct 2014 21:08:16 +0000 (17:08 -0400)]
Correct spelling error for opac.patron.auto_overide_hold_events to opac.patron.auto_override_hold_events
Cross-port:
9c652bc
Bill Erickson [Wed, 29 Oct 2014 21:08:11 +0000 (17:08 -0400)]
KOSU-9
Cross-port:
12d4253
Bill Erickson [Wed, 29 Oct 2014 21:08:09 +0000 (17:08 -0400)]
KOSU-8_printer_context_failed
Cross-port:
22e524d
Bill Erickson [Wed, 29 Oct 2014 21:07:41 +0000 (17:07 -0400)]
KCLS custom multiclass query scrubbing (squashed legacy commits)
kmain-363_fixed_contains_phrase_all_punctuation
Cross-port:
1d8ee0c
Puncuation_search_edge_cases
Cross-port:
8ed3232
KMAIN 115 - Matches exactly exactly searches not working with parenthases
Cross-port:
45dd9f2
kmain-422_sorting_returning_null
Cross-port:
2d6f4eb
Punctuation-Search_Fixed-keyword-contains-phrase
Cross-port:
da1f967
Punctuation keyword exact match
Cross-port:
bcbbe3b
Bill Erickson [Wed, 29 Oct 2014 21:08:02 +0000 (17:08 -0400)]
Setting the self-checkout timer back to 60 after it was changed for development.
Cross-port:
53f8673
Bill Erickson [Wed, 29 Oct 2014 21:07:58 +0000 (17:07 -0400)]
KMAIN-254: TCN display in search results list
Cross-port:
8c81b2f
Bill Erickson [Wed, 29 Oct 2014 21:07:54 +0000 (17:07 -0400)]
KMAIN-418: Hide "Prefix/Title" field from patron reg screen
Cross-port:
fea6b1b
Bill Erickson [Wed, 29 Oct 2014 21:07:53 +0000 (17:07 -0400)]
KMAIN-413 - View Checked Out Details link not updating count - self checkout
Cross-port:
362014f
Bill Erickson [Wed, 29 Oct 2014 21:07:49 +0000 (17:07 -0400)]
KMAIN-205: SCK message if multiple barcode scans
Cross-port:
435f3ee
Bill Erickson [Wed, 29 Oct 2014 21:07:45 +0000 (17:07 -0400)]
KMAIN-421: Staging missing local KCLS changes
Cross-port:
eca548e
Bill Erickson [Wed, 29 Oct 2014 21:07:43 +0000 (17:07 -0400)]
KMAIN-136: Patron Reg form to match KCLS prod
Cross-port:
7369cab
Conflicts:
Open-ILS/web/css/skin/default/register.css
Bill Erickson [Wed, 29 Oct 2014 21:07:37 +0000 (17:07 -0400)]
kmain-163_#_search_again
Cross-port:
4adf71d
Bill Erickson [Wed, 29 Oct 2014 21:07:35 +0000 (17:07 -0400)]
kmain-331_fixed-circ-fine-issue
Cross-port:
b1124f6
Bill Erickson [Wed, 29 Oct 2014 21:07:29 +0000 (17:07 -0400)]
KMAIN-392 - Updating my lists
Cross-port:
02a9b2c
Conflicts:
Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm
Bill Erickson [Wed, 29 Oct 2014 21:07:27 +0000 (17:07 -0400)]
kmain-396 exact search modified: usr/lib/perl5/site_perl/5.8.8/OpenILS/Application/Storage/Driver/Pg/QueryParser.pm (cherry picked from commit
f56f3d61499fc8beac376256117bf22eb9adefc1)
Cross-port:
97d8914
Conflicts:
Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Driver/Pg/QueryParser.pm
Bill Erickson [Wed, 29 Oct 2014 21:07:25 +0000 (17:07 -0400)]
kmain151_replace_dash_with_space
Cross-port:
3b95587
Bill Erickson [Wed, 29 Oct 2014 21:07:23 +0000 (17:07 -0400)]
kmain-74_self_checkout_menus_work
Cross-port:
e95b677