]> git.koha-community.org Git - koha.git/commit
Bug 7485 - Cannot edit barcode on Fast Add
authorKyle M Hall <kyle@bywatersolutions.com>
Tue, 27 Mar 2012 16:01:33 +0000 (12:01 -0400)
committerJared Camins-Esakov <jcamins@cpbibliography.com>
Sat, 5 May 2012 12:15:22 +0000 (08:15 -0400)
commit840ef25a9b88a6a60225df96b40db4a600c43de4
treecd03d89eb695c5461771baadc2acadde9235f87d
parentf9ac69f610a45589692f8dac5dbf7e275bddbea9
Bug 7485 - Cannot edit barcode on Fast Add

Simple fix, a special case was added for the fast add framework
in the case that an item was being checked out that had not been
catalogued. In that case, the barcode was being passed as a parameter
through addbiblio.pl to additem.pl.

This barcode param was used to overwrite the existing value, so if
no barcode param was passed ( which is only the case with fast adds
from the circ screen ), the barcode field would appear empty in the
items editor.

This commit causes that special case code to check for an existing
barcode value first, and only use the cgi parameter 'branch' in the
case that there is no existing barcode value.

Signed-off-by: Liz Rea <wizzyrea@gmail.com>
Editing barcode of fast added item now works. Passes t xt

Recommend this for 3.6 release.

Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
cataloguing/additem.pl