]>
git.koha-community.org Git - koha.git/log
Paul Poulain [Tue, 10 Nov 2009 20:32:21 +0000 (21:32 +0100)]
subscription enddate is not mandatory + add a small hint on the right
Henri-Damien LAURENT [Tue, 10 Nov 2009 21:19:51 +0000 (22:19 +0100)]
UpdateDatabase more fixes
Matthias Meusburger [Tue, 10 Nov 2009 14:55:52 +0000 (15:55 +0100)]
MT 2269 : Granular permissions for items batch modification and deletion
Notes :
Permissions themselves were already added in commit
50ef9288606077dfc2b457db490f6fc2a5461c6c : (bug #3396) This add batch deletion of items and fixes permissions for batch modification by Jean-André Santoni
Javascript for bolding currently selected page in tools-menu.inc enhanced to support url with parameters
Paul Poulain [Tue, 10 Nov 2009 19:55:22 +0000 (20:55 +0100)]
adding SUDOC history to XSLT (fields 955$r and $9)
Paul Poulain [Tue, 10 Nov 2009 17:32:07 +0000 (18:32 +0100)]
oups, sorry, fixing mistake in previous patch
(reverting a not related and probably bogus change)
Paul Poulain [Tue, 10 Nov 2009 17:28:53 +0000 (18:28 +0100)]
revamping a little opac-detail for subscription (adding more history information)
Jane Wagner [Fri, 9 Oct 2009 15:06:17 +0000 (11:06 -0400)]
Bug 3702 add branch description as primary sort for items in staff mode
The default sort order for items attached to a title in staff mode is
items.dateaccessioned desc. This means that a particular library's holdings
will be scattered through the list -- a special problem when it comes to serial
issues. I've done a change to Items.pm that makes the sort order branch
description followed by dateaccessioned. Thus, a library's holdings will be
grouped together in the display.
Paul Poulain [Tue, 10 Nov 2009 16:07:44 +0000 (17:07 +0100)]
typo fix in XSLT
Paul Poulain [Tue, 10 Nov 2009 16:00:37 +0000 (17:00 +0100)]
adding XSLT for intranet (UNIMARC only, MARC21 will be done by kf)
- the XSLTParse4Display sub now has a new parameter : the interface (intranet or opac)
- the XSLTdisplay sysprefs is common to staff & opac (Auth.pm)
- added UNIMARC xslt in intranet templates (modified to deal with staff/opac differences)
Paul Poulain [Mon, 9 Nov 2009 18:35:02 +0000 (19:35 +0100)]
Displaying serial call-number on receive.
when the subscription has item creation, the callnumber is inside the item creation.
But when it doesn't have, the callnumber is not displayed, but is useful to be put on physical item.
This patch display the callnumber after the title
Paul Poulain [Mon, 9 Nov 2009 17:49:17 +0000 (18:49 +0100)]
2 translation fixes
Matthias Meusburger [Mon, 9 Nov 2009 14:45:00 +0000 (15:45 +0100)]
MT 2048 : Clickable fields for biblios are now in blue, just like clickable fields for authorities
Paul Poulain [Mon, 9 Nov 2009 14:44:14 +0000 (15:44 +0100)]
overdue performance restored (INCOMPLETE FIX)
The performances of this script felt back. Investigating, it's due to the extended attribute filtering improvement
when there are ext attributes, the script does a:
SELECT borrowernumber AS bn, b.code, attribute AS val, category AS avcategory, lib AS avdescription
FROM borrower_attributes b
JOIN borrower_attribute_types bt ON (b.code = bt.code)
LEFT JOIN authorised_values a ON (a.category = bt.authorised_value_category AND a.authorised_value = b.attribute)
that returns a LOT of datas when you have 10 000 patrons and 5 attributes.
That results in the page needing something like 10 seconds to be loaded.
There are some other caveats. I've commented a few lines that remove the extended attr option. The best solution would be to fix it better, but I can't find how to do that now.
(note : i also have commented some lines that are unused)
Paul Poulain [Mon, 9 Nov 2009 10:57:42 +0000 (11:57 +0100)]
subs declared twice
Paul Poulain [Mon, 9 Nov 2009 10:57:28 +0000 (11:57 +0100)]
fixing some errors in updatedatabase
Matthias Meusburger [Mon, 9 Nov 2009 09:30:08 +0000 (10:30 +0100)]
MT 2040, Follow-up : Dropdown list for languages in opac
Henri-Damien LAURENT [Mon, 9 Nov 2009 09:11:28 +0000 (10:11 +0100)]
Adding some missing Status
Claimed and Not Available was not managed for display
Henri-Damien LAURENT [Mon, 9 Nov 2009 08:56:10 +0000 (09:56 +0100)]
Editing copynumber to stocknumber
Updating updatedatabase.pl
Updating value_builder
Henri-Damien LAURENT [Mon, 9 Nov 2009 08:28:30 +0000 (09:28 +0100)]
MT 2167 : orders of firstname surname
In result lists, the order was not the same as everywhere else
in Koha.
Henri-Damien LAURENT [Fri, 6 Nov 2009 16:31:28 +0000 (17:31 +0100)]
Fixing Merge on shelves Adding Print and send List
Paul Poulain [Fri, 6 Nov 2009 14:16:07 +0000 (15:16 +0100)]
fixing overdue checking (today is not late)
NOW() returns minuts and seconds. date_due is just YYYY-MM-DD
Thus date_due < now() is wrong if date_due is today, and the patron is considered as late.
With curdate(), the patron is late only the day after the overdue limit
Jean-André Santoni [Fri, 6 Nov 2009 12:30:28 +0000 (13:30 +0100)]
Fixed wrong SQL syntax in updatedatabase.
Henri-Damien LAURENT [Fri, 6 Nov 2009 11:37:01 +0000 (12:37 +0100)]
Adding userid to search in member.pl
Henri-Damien LAURENT [Thu, 5 Nov 2009 14:37:42 +0000 (15:37 +0100)]
Adding SpecifyDueDate
Henri-Damien LAURENT [Thu, 5 Nov 2009 14:58:38 +0000 (15:58 +0100)]
enhancement C4::Members.pm Improving POD
Adding a function to output field as xml
Henri-Damien LAURENT [Wed, 4 Nov 2009 16:02:25 +0000 (17:02 +0100)]
SQLHelper Enhancement Adding contain as searchtype
Henri-Damien LAURENT [Wed, 4 Nov 2009 15:58:12 +0000 (16:58 +0100)]
Removing default selection of userbranch for research
Henri-Damien LAURENT [Wed, 4 Nov 2009 09:02:17 +0000 (10:02 +0100)]
removing database revision 124
Revisions 124 and 123 were the same
Henri-Damien LAURENT [Tue, 3 Nov 2009 21:19:13 +0000 (22:19 +0100)]
enh Serials-collection Checking claimed late and expected issues
Could be better handled with jquery
Jean-André Santoni [Wed, 4 Nov 2009 12:17:09 +0000 (13:17 +0100)]
Adds billing address support in the basketgroup.
Also fixes a bug in ModBasketgroup, and renames the PDF uploaded to the client.
Matthias Meusburger [Wed, 4 Nov 2009 08:19:36 +0000 (09:19 +0100)]
MT 2134 : Adds a tab for subscriptions in intranet's record detail
Paul Poulain [Tue, 3 Nov 2009 15:58:47 +0000 (16:58 +0100)]
fixing basket in staff, some wrong links
Paul Poulain [Mon, 2 Nov 2009 16:26:03 +0000 (17:26 +0100)]
reindenting + typo fix (MAJOR : missing s in permission checking)
Jean-André Santoni [Tue, 3 Nov 2009 15:23:37 +0000 (16:23 +0100)]
[3.2.x](bug #3623) PDF printing enhancements
Renamed pdfformat to OrderPdfFormat and created OrderPdfTemplate to stock the PDF in the database.
Added a new type of syspref nammed "Upload".
Rewritte, translation and cleaning of the PDF template.
Henri-Damien LAURENT [Tue, 3 Nov 2009 13:35:49 +0000 (14:35 +0100)]
Adding stocknumber field to items table
Jean-André Santoni [Sun, 1 Nov 2009 13:03:09 +0000 (14:03 +0100)]
[3.2.x](bug #3624) Per-basketgroup delivery place
Librarian are now able to select a different delivery place for each basketgroup. They can choose one from the branch list or manualy using a textarea.
Database schema and PDF generation have been modified to reflect these changes.
Jean-André Santoni [Sun, 1 Nov 2009 13:03:09 +0000 (14:03 +0100)]
[3.2.x](bug #3624) Per-basketgroup delivery place
Librarian are now able to select a different delivery place for each basketgroup. They can choose one from the branch list or manualy using a textarea.
Database schema and PDF generation have been modified to reflect these changes.
Matthias Meusburger [Tue, 3 Nov 2009 14:43:19 +0000 (15:43 +0100)]
MT 2067, Follow-up : Description for CSV export not mandatory anymore
Matthias Meusburger [Tue, 3 Nov 2009 09:52:34 +0000 (10:52 +0100)]
MT 2040, Follow-up : Broken language search
Jean-André Santoni [Sun, 1 Nov 2009 13:03:09 +0000 (14:03 +0100)]
[3.2.x](bug #3624) Per-basketgroup delivery place
Librarian are now able to select a different delivery place for each basketgroup. They can choose one from the branch list or manualy using a textarea.
Database schema and PDF generation have been modified to reflect these changes.
Henri-Damien LAURENT [Mon, 2 Nov 2009 15:37:53 +0000 (16:37 +0100)]
3.01.038 was missed and replaced by other code
Henri-Damien LAURENT [Mon, 2 Nov 2009 10:16:05 +0000 (11:16 +0100)]
POD improvement
Paul Poulain [Fri, 30 Oct 2009 16:38:55 +0000 (17:38 +0100)]
fixing updatedatabase msg
Paul Poulain [Fri, 30 Oct 2009 12:39:10 +0000 (13:39 +0100)]
fixing "close basket and create basket group" feature
the checkbox was not functional, now it is.
Paul Poulain [Fri, 30 Oct 2009 12:38:41 +0000 (13:38 +0100)]
some reindenting & XHTML compliance
Henri-Damien LAURENT [Fri, 30 Oct 2009 00:52:44 +0000 (01:52 +0100)]
Acquisition : Fixing
neworderempty : problems with data updates
booksellers.tmpl : TMPL_VAR not in comments
list_price becomes listprice in neworderempty script as in acq.js
Henri-Damien LAURENT [Thu, 29 Oct 2009 16:44:59 +0000 (17:44 +0100)]
Change in API : ordnum becomes ordernumber
Paul Poulain [Thu, 29 Oct 2009 16:56:38 +0000 (17:56 +0100)]
xhtml improvement
Paul Poulain [Thu, 29 Oct 2009 16:56:22 +0000 (17:56 +0100)]
removing hardcoded value
Paul Poulain [Thu, 29 Oct 2009 14:12:25 +0000 (15:12 +0100)]
suggestions improvements and fixes
- reindenting Suggestions.pm
- removing useless code in acqui-home.pl & fixing # of pending suggestion display
- add suggestion to order : displaying for selection suggestions accepted by the librarian (and reindenting)
- XHTMLing acqui-home (& removed useless parts)
NOTE ABOUT XHTML (could be useful) : <tfoot> must be BEFORE <tbody> in a <table>, even if, of course, it is displayed after.
Henri-Damien LAURENT [Thu, 29 Oct 2009 15:41:50 +0000 (16:41 +0100)]
MT 2146 :Adding index on issn
updateversion incremented
Henri-Damien LAURENT [Thu, 29 Oct 2009 14:29:04 +0000 (15:29 +0100)]
3736 enh : Adding syspref RoutingListAddReserves
Adding syspref RoutingListAddReserves
Using it in routing-preview
Henri-Damien LAURENT [Thu, 29 Oct 2009 14:12:53 +0000 (15:12 +0100)]
MT 1902 : routing lists presence should be shown
in serials-home, when showing the list of serials,
display is changed in order to display the presence of a routing list
for a subscription
Henri-Damien LAURENT [Thu, 29 Oct 2009 10:56:08 +0000 (11:56 +0100)]
Improving patron search in serials routing
Adding category and library search
Unifying with central member search
Henri-Damien LAURENT [Wed, 28 Oct 2009 17:41:19 +0000 (18:41 +0100)]
Using sans-serif rather than serif font
Henri-Damien LAURENT [Wed, 28 Oct 2009 17:38:52 +0000 (18:38 +0100)]
Reintroducing submit value buttons in po files
Submit values need to be translated.
Paul Poulain [Wed, 28 Oct 2009 18:21:14 +0000 (19:21 +0100)]
removing useless files & fixing broken link
Paul Poulain [Wed, 28 Oct 2009 18:02:31 +0000 (19:02 +0100)]
fixing SQL error (' is the string separator, and must be doubled when in the string)
Paul Poulain [Wed, 28 Oct 2009 17:28:34 +0000 (18:28 +0100)]
fixing SQL builded if there is no where_strings
Paul Poulain [Wed, 28 Oct 2009 17:03:03 +0000 (18:03 +0100)]
removing useless template (aqbudgets is the right one now)
Paul Poulain [Wed, 28 Oct 2009 16:51:56 +0000 (17:51 +0100)]
fixing currency.pl
if active not set, mySQL complains for a missing argument
Paul Poulain [Wed, 28 Oct 2009 16:51:20 +0000 (17:51 +0100)]
removing warn and reindenting
+ \\n fixes (for error message better display)
Henri-Damien LAURENT [Tue, 27 Oct 2009 22:42:42 +0000 (23:42 +0100)]
Bug Fix MT2104 : Edit authorities problem on multiple field
When editing a field 500 linked to an authority, when duplicate
field, all the 500 fields were replaced.
Henri-Damien LAURENT [Tue, 27 Oct 2009 08:44:47 +0000 (09:44 +0100)]
C4/Biblio.pm Perltidy
Henri-Damien LAURENT [Tue, 27 Oct 2009 08:41:48 +0000 (09:41 +0100)]
Javascript translatability addbiblio.tmpl
Matthias Meusburger [Tue, 27 Oct 2009 08:58:35 +0000 (09:58 +0100)]
MT 2073 : Allow to have non-editable fields for item batch modification
Henri-Damien LAURENT [Mon, 26 Oct 2009 16:31:27 +0000 (17:31 +0100)]
Followup bfffa5 TransformHTMLToXML bug fix
_default_ind_to_space had problems
Henri-Damien LAURENT [Fri, 23 Oct 2009 10:12:36 +0000 (12:12 +0200)]
Adding toggle of subscriptionhistory information
Henri-Damien LAURENT [Fri, 23 Oct 2009 14:05:33 +0000 (16:05 +0200)]
MT 2168 : Logical AND between multiple words strings
C4::SQLHelper was doing an implicit OR of multiple words strings
It is now fixed and does an AND
Henri-Damien LAURENT [Sun, 25 Oct 2009 05:28:37 +0000 (06:28 +0100)]
Adding logging DBI errors if in Debug Mode
Nahuel ANGELINETTI [Thu, 22 Oct 2009 10:26:12 +0000 (12:26 +0200)]
(bug #3726) fix ISBD url translation
Henri-Damien LAURENT [Thu, 22 Oct 2009 20:37:39 +0000 (22:37 +0200)]
MT 2206 addorder crashing
Henri-Damien LAURENT [Thu, 22 Oct 2009 20:21:18 +0000 (22:21 +0200)]
Adding claimed to quick receiving
Henri-Damien LAURENT [Wed, 21 Oct 2009 14:39:35 +0000 (16:39 +0200)]
Performance improvement authorities-list.pl
CountUsage in Authorities has a performance problem.
We now rely on SimpleSarch for that purpose and it should be better
Matthias Meusburger [Mon, 26 Oct 2009 13:40:39 +0000 (14:40 +0100)]
MT 2071, 2072 : Check that barcodes are found and that items are allowed to be deleted
Matthias Meusburger [Fri, 23 Oct 2009 15:13:43 +0000 (17:13 +0200)]
Batch deletion of items enhancements
Separate templates
Status message after deletion
Matthias Meusburger [Thu, 22 Oct 2009 10:30:10 +0000 (12:30 +0200)]
MT 2037, Follow-up : fixed updatedatabase
Matthias Meusburger [Thu, 22 Oct 2009 09:45:38 +0000 (11:45 +0200)]
MT 2037 : Update ISBD
Matthias Meusburger [Wed, 21 Oct 2009 14:13:11 +0000 (16:13 +0200)]
MT 2069 : MoveItemFromBiblio now checks for orders
Henri-Damien LAURENT [Tue, 22 Sep 2009 13:16:21 +0000 (15:16 +0200)]
Fixing translation process
Removing checkbox values from po generation
Signed-off-by: Henri-Damien LAURENT <henridamien.laurent@biblibre.com>
Henri-Damien LAURENT [Mon, 21 Sep 2009 21:47:59 +0000 (23:47 +0200)]
Followup updating translation process
Signed-off-by: Henri-Damien LAURENT <henridamien.laurent@biblibre.com>
Chris Cormack [Mon, 14 Sep 2009 21:32:18 +0000 (09:32 +1200)]
Fixing record.abs for authorities and MARC21
Nahuel ANGELINETTI [Thu, 1 Oct 2009 15:24:53 +0000 (17:24 +0200)]
(bug #3688) add index for acqdate in unimarc and fix maintenance script
This patch add the support of acqdate in unimarc, and fix maintenance script for brokend records.
Henri-Damien LAURENT [Tue, 20 Oct 2009 20:00:28 +0000 (22:00 +0200)]
AddBiblio Workflow edition
When in Edit Mode, when save is clicked, get back to the MARCdetail.pl and not to additem.pl
Matthias Meusburger [Tue, 20 Oct 2009 14:45:12 +0000 (16:45 +0200)]
MT 1713, follow-up : fixed updatedatabase.pl
Henri-Damien LAURENT [Tue, 20 Oct 2009 13:09:51 +0000 (15:09 +0200)]
3.0.x:
ce353e7 bug #3674 allow users creation with disabled password
Henri-Damien LAURENT [Mon, 19 Oct 2009 15:00:03 +0000 (17:00 +0200)]
Bug Fixing addorder.pl
root [Fri, 16 Oct 2009 21:40:13 +0000 (23:40 +0200)]
Bug Fixing MT 2095 : Add_excepti.al Search broken on QueryStemming
Matthias Meusburger [Mon, 19 Oct 2009 15:52:51 +0000 (17:52 +0200)]
MT 1713 : Do not display the items at first if there are too many of them in opac-detail
Matthias Meusburger [Mon, 19 Oct 2009 15:23:53 +0000 (17:23 +0200)]
MT 1713 : Updated opacSerialDefaultTab syspref
Henri-Damien LAURENT [Fri, 16 Oct 2009 21:59:24 +0000 (23:59 +0200)]
Bug Fixing : Search Broken with stemming
Stemming can't use exceptions
Removing exceptions management
Matthias Meusburger [Fri, 16 Oct 2009 15:43:56 +0000 (17:43 +0200)]
MT 2051 : granular permissions for guided reports
Matthias Meusburger [Fri, 16 Oct 2009 09:03:27 +0000 (11:03 +0200)]
MT 2068 : Fixed scheduling guided reports
Matthias Meusburger [Thu, 15 Oct 2009 13:46:10 +0000 (15:46 +0200)]
Add missing opac authorised values column
Matthias Meusburger [Thu, 15 Oct 2009 10:12:45 +0000 (12:12 +0200)]
MT
0002070 : Batch item deletion
Matthias Meusburger [Thu, 15 Oct 2009 09:06:55 +0000 (11:06 +0200)]
MT 2040 : Broken language search
Henri-Damien LAURENT [Tue, 13 Oct 2009 11:49:09 +0000 (13:49 +0200)]
removing unconditional warning
Henri-Damien LAURENT [Tue, 13 Oct 2009 10:12:46 +0000 (12:12 +0200)]
Henri-Damien LAURENT [Fri, 9 Oct 2009 09:48:14 +0000 (11:48 +0200)]
Remove Stopwords bug fixing
in french, les is a stopword
Modèles would match because of the combining and \P{IsAlnum} would not detect that.
Henri-Damien LAURENT [Thu, 8 Oct 2009 09:44:31 +0000 (11:44 +0200)]
Bug Fixing : C4::Charset source_encoding always set to iso-8859-1