tipaul [Tue, 27 Feb 2007 20:51:34 +0000 (20:51 +0000)]
BUGFIX (minor) : when itemcallnumber systempref is set, after adding/modifying an item, the default automatic itemcallnumber was not calculated, due to multiple use of $temp variable.
Quick & dirty fix, should probably be better to rewrite this code...
tipaul [Tue, 27 Feb 2007 20:13:33 +0000 (20:13 +0000)]
BUGFIX : removing "biblionumber and biblioitemnumber MUST be in the same MARC tag", as it's no more true (since koha 2.2.4 iirc) : you can have biblionumber mapped to a MARC field and biblioitemnumber mapped to another.
However, the other needs are still valid (they must be mapped and in tab -1)
tipaul [Fri, 23 Feb 2007 08:25:47 +0000 (08:25 +0000)]
BUGFIX : the date calculations for subscription were wrong. Seems it is a long lasting bug, bug why nobody had it before ???
* The DateCalc returns YYYYMMDDHH:MM:SS, and format_date_in_iso can't handle that
* the ParseDate, when getting a nn-mm-YYYY date handle it as US by default (MM-DD-YYYY), making a big problem for franch libraries. Thus, I use the date to iso (YYYY-MM-DD) that don't have this problem
HDL : please review. A last error => seems the subscription end calculation don't work.
toins [Mon, 12 Feb 2007 10:40:44 +0000 (10:40 +0000)]
Commiting BUG FIX for 2.2.7.1.
(fix or partial fix for bug 1024 - http://bugs.koha.org/cgi-bin/bugzilla/show_bug.cgi?id=1024
reset breedingid so that records missing isbn & issn can be imported.)
toins [Mon, 12 Feb 2007 10:32:58 +0000 (10:32 +0000)]
Commiting BUG FIX for 2.2.7.1.
(marc_subfield_structure - seealso field was too short, clipping over half of the subfield '650a', consiquently, breaking searching by subject as it would not execute, mysql syntax error. changed field type to text.)
toins [Mon, 12 Feb 2007 10:26:26 +0000 (10:26 +0000)]
Commiting BUG FIX for 2.2.7.1.
(bug 1276 - cannot find surname with apostriphe in it. Fixed in rel_2_2
&
Fix for 1169, issuedate wasn't formatted properly, to compare with today's date. Fixed in rel_2_2
)
toins [Mon, 12 Feb 2007 10:24:08 +0000 (10:24 +0000)]
Commiting BUG FIX for 2.2.7.1.
(Bug 1201 fixed by changing transferbook.
Books will no longer be returned by transferbook. Thus, breaking the loop. Transfer book should be used when transfering books from branch to branch. if a book is returned at a branch, transfer the book there. if a book is transfered to a branch, while its on loan, set holding to the new branch. Useful if a borrower moves branches, while borrowing books.)
toins [Mon, 12 Feb 2007 09:42:12 +0000 (09:42 +0000)]
Commiting BUG FIX for 2.2.7.1.
Previous log was :
- adding edit currencies link to acqui-home (even if one or more currencies are configured)
- re-synching acquire.tmpl and recieve.tmpl to try to iron out bugs
tipaul [Thu, 8 Feb 2007 09:54:46 +0000 (09:54 +0000)]
Removing DateTime dependancy (+ so many sub packages)
I have replaced by DateCalc dependancy, that is realy easy to use. I think it's harmless (removed subs are not used anywhere)
However, please, don't add major dependancies on the stable branch without saying it on koha-devel 1st.
tipaul [Thu, 8 Feb 2007 09:53:02 +0000 (09:53 +0000)]
BUGFIX : 2 errors that are risen during compilation.
This should NEVER happend. Please check that what you commit works, when you play with unstable branch it's important, when you play with stable branch, it's MANDATORY !
genji [Sat, 3 Feb 2007 08:42:10 +0000 (08:42 +0000)]
PhysicalBookShelves code added, to support an offshoot of virtual bookshelves. The idea, each physical shelf has a unique barcode. any one item can only exist in one shelf. Potential augmentation to item.location.
rych [Mon, 29 Jan 2007 23:41:36 +0000 (23:41 +0000)]
fix or partial fix for bug 1024 - http://bugs.koha.org/cgi-bin/bugzilla/show_bug.cgi?id=1024
reset breedingid so that records missing isbn & issn can be imported.
genji [Sun, 28 Jan 2007 07:23:39 +0000 (07:23 +0000)]
marc_subfield_structure - seealso field was too short, clipping over half of the subfield '650a', consiquently, breaking searching by subject as it would not execute, mysql syntax error. changed field type to text.
genji [Sun, 28 Jan 2007 01:29:28 +0000 (01:29 +0000)]
Bug 1201 fixed by changing transferbook. Books will no longer be returned by transferbook. Thus, breaking the loop. Transfer book should be used when transfering books from branch to branch. if a book is returned at a branch, transfer the book there. if a book is transfered to a branch, while its on loan, set holding to the new branch. Useful if a borrower moves branches, while borrowing books.