tipaul [Mon, 30 May 2005 11:24:15 +0000 (11:24 +0000)]
fixing a bug : when a field was repeated, the last field was also repeated. (Was due to the "empty" field in html between fields : to separate fields, in html, an empty field is automatically added. in AUTHhtml2marc, this empty field was not discarded correctly)
tipaul [Mon, 30 May 2005 11:22:41 +0000 (11:22 +0000)]
fixing a bug : when a field was repeated, the last field was also repeated. (Was due to the "empty" field in html between fields : to separate fields, in html, an empty field is automatically added. in MARChtml2marc, this empty field was not discarded correctly)
hdl [Wed, 25 May 2005 09:34:40 +0000 (09:34 +0000)]
Fixing :
- Enabling Selection of Default Framework, event though it wasnot the framework of the biblio.
Adding
- Saving Framework Changes when editing a biblio.
Display improvements
joshferraro [Fri, 20 May 2005 19:06:02 +0000 (19:06 +0000)]
Fix to Bug 844: renewstatus subroutine should check for reserves -- now it does.
Note that I'm assuming that all libraries don't want items reserved for others
+to be renewalable.
joshferraro [Fri, 20 May 2005 18:55:08 +0000 (18:55 +0000)]
Fix to Bug 844: renewstatus subroutine should check for reserves -- now it does.
Note that I'm assuming that all libraries don't want items reserved for others to be renewalable.
tipaul [Thu, 19 May 2005 22:12:00 +0000 (22:12 +0000)]
* better management of joining & expiry dates :
- dates can be manually typed when adding a borrower.
- Empty fields are automatically calculated (joining = today & expiry date calculated from borrower category)
- Expiry date can be modified
* checking expiry date when trying to issue a book & forbidding issuing when expiry date reached. ** IMPORTANT ** This check was not done before. Thus, you may be unable to issue books where you could before. You can update your database borrower by borrower or with the following SQL command on the server : "update borrowers set expiry='2005-31-12'". You can limit the update to a borrower category with "update borrowers set expiry='2005-31-12' where categorycode='A'" (all SQL commands must be typed without any ")
tipaul [Thu, 19 May 2005 21:52:45 +0000 (21:52 +0000)]
* better management of joining & expiry dates :
- dates can be manually typed when adding a borrower.
- Empty fields are automatically calculated (joining = today & expiry date calculated from borrower category)
- Expiry date can be modified
* checking expiry date when trying to issue a book & forbidding issuing when expiry date reached. ** IMPORTANT ** This check was not done before. Thus, you may be unable to issue books where you could before. You can update your database borrower by borrower or with the following SQL command on the server : "update borrowers set expiry='2005-31-12'". You can limit the update to a borrower category with "update borrowers set expiry='2005-31-12' where categorycode='A'" (all SQL commands must be typed without any ")
Adding:
- 'page loading' div which is hidden on body onload();
- error-checking in z39.50 function to warn that required fields must be filled in for z39.50 search
- improvements to duplicate-check interface to allow for single-click confirmation of non-duplicate record
Adding link to marc-editor.css and removing body onload() function left over from previous version. Forgot to commit this change with other addbiblio updates on Saturday.
Complete re-write of NPL's addbiblio template, using default template as a strict model. Most changes are in the CSS, hopefully making maintenance easier. Should fix bug 978. Update requires additional marc-editor.css file.
The link back to the supplier comes up with no supplier id in the URL, so I'm guessing $input->param('supplierid') needs to be changed to $input->param('id').