oleonard [Wed, 19 Jan 2005 21:45:56 +0000 (21:45 +0000)]
Updated to show items as waiting only if destination branch matches holding branch. Otherwise waiting items will be shown as "in transit" between holding branch and destination branch.
oleonard [Wed, 19 Jan 2005 21:39:25 +0000 (21:39 +0000)]
Comparing reserves' destination branch to the current holding branch to determine actual waiting status. If destination branch is equal to holding branch, the item has been checked in at its destination and can be accurately shown as waiting. If not, the item is still in transit and should display that information.
oleonard [Wed, 19 Jan 2005 21:21:59 +0000 (21:21 +0000)]
Updated to show items as waiting only if destination branch matches holding branch. Reserves table is also updated to show 'waiting' if item is at its destination branch, or 'in-transit' if item has been allocated but hasn't arrived yet.
oleonard [Wed, 19 Jan 2005 21:18:06 +0000 (21:18 +0000)]
Comparing reserves' destination branch to the current holding branch to determine actual waiting status. If destination branch is equal to holding branch, the item has been checked in at its destination and can be accurately shown as waiting. If not, the item is still in transit and should not be shown as waiting.
oleonard [Thu, 13 Jan 2005 22:41:03 +0000 (22:41 +0000)]
Adding quick search link. This opens a pop-up to allow for searching for member card number. Choosing a member from the search results list closes the window and populates the card number field in request.pl template.
oleonard [Thu, 13 Jan 2005 21:53:03 +0000 (21:53 +0000)]
Adding quick search link. This opens a pop-up to allow for searching for member card number. Choosing a member from the search results list closes the window and populates the card number field in request.pl template.
oleonard [Thu, 13 Jan 2005 21:48:49 +0000 (21:48 +0000)]
Adding option to output using quicksearch template if the quicksearch parameter is present (uses member-quicksearch.tmpl and member-quicksearch-results.tmpl)
tipaul [Thu, 6 Jan 2005 14:32:17 +0000 (14:32 +0000)]
improvement of speed for bulkmarcimport.
A sub had been forgotten to use the C4::Context->marcfromkohafield array, that caches DB datas.
this is only a little improvement for normal DB modif, but almost x2 the speed of bulkmarcimport... from 6records/seconds to more than 10.
tipaul [Mon, 3 Jan 2005 12:56:30 +0000 (12:56 +0000)]
* partial support of the "linkage" MARC feature : if you enter a "link" on a MARC subfield, the magnifying glass won't search on the field, but on the linked field. I agree it's a partial support. Will be improved, but I need to investigate MARC21 & UNIMARC diffs on this topic.
tipaul [Mon, 3 Jan 2005 10:58:46 +0000 (10:58 +0000)]
adding "opacstylesheet" systempreference.
if this parameter is defined, the url is used instead of the default one.
So, you can have your own stylesheet somewhere, and use it instead of the official Koha one.
tipaul [Mon, 3 Jan 2005 10:48:33 +0000 (10:48 +0000)]
* bugfix for the search on a MARC detail, when you clic on the magnifying glass (caused an internal server error)
* partial support of the "linkage" MARC feature : if you enter a "link" on a MARC subfield, the magnifying glass won't search on the field, but on the linked field. I agree it's a partial support. Will be improved, but I need to investigate MARC21 & UNIMARC diffs on this topic.
tipaul [Thu, 23 Dec 2004 08:43:43 +0000 (08:43 +0000)]
bugfix : when modifying a biblio, on a repeated field with many subfields, the test to show empty subfields in X>1 was wrong : the missing subfields of the 1st field were repeated.
Example :
606 has $a$x$z
1st is 606$a (so $x$z empty)
2nd is 606$a$x
The marc editor in the 2nd field showed before this fix :
606 $a a_value
$x another_value
$x
$z
(the 2nd $x being useless
tipaul [Wed, 15 Dec 2004 10:47:09 +0000 (10:47 +0000)]
fix for :
http://bugs.koha.org/cgi-bin/bugzilla/show_bug.cgi?id=858
* added a button to cancel issue
* adding checkbox to cancel reserve on the book (checked by default)
* the cancelation reserve is done on reserves done for a given item or for any item
rangi [Wed, 15 Dec 2004 06:08:06 +0000 (06:08 +0000)]
Making the version number reflect the cvs version, to allow for easier
debugging.
If we can ask people what version of a module they are running it makes
error checking easier
tipaul [Tue, 14 Dec 2004 15:48:34 +0000 (15:48 +0000)]
an improvement has been done in DB calls that needs a new index. It's automatically added in fresh installs, but for updates, run the following SQL command :
ALTER TABLE `marc_subfield_structure` ADD INDEX ( `kohafield` )
tipaul [Fri, 10 Dec 2004 16:27:53 +0000 (16:27 +0000)]
limiting the number of search term to 8. There was no limit before, but 8 words seems to be the upper limit mySQL can deal with (in less than a second. tested on a DB with 13 000 items)
In 2.4, a new DB structure will highly speed things and this limit will be removed.
FindDuplicate is activated again, the perf problems were due to this problem.
tipaul [Fri, 10 Dec 2004 16:11:29 +0000 (16:11 +0000)]
Improvement : adding a systempref to define default view in OPAC (either normal, MARC or ISBD). Created automatically during install or update. Check that you have a Koha >> parameters >> systempreferences >> BiblioDefaultView, Variable type : Choice, Variable options : normal|marc|isbd