[Koha-patches] [PATCH] Fix for acquisitions - Series title was not saving when adding new record

Chris Cormack chrisc at catalyst.net.nz
Sun Mar 28 23:32:27 CEST 2010


---
 acqui/addorder.pl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/acqui/addorder.pl b/acqui/addorder.pl
index 48ae874..2ab5252 100755
--- a/acqui/addorder.pl
+++ b/acqui/addorder.pl
@@ -195,7 +195,7 @@ if ( $orderinfo->{quantity} ne '0' ) {
             {
                 "biblio.title"                => "$$orderinfo{title}",
                 "biblio.author"               => "$$orderinfo{author}",
-                "biblio.series"               => $$orderinfo{series}          ? $$orderinfo{series}        : "",
+                "biblio.seriestitle"          => $$orderinfo{series}          ? $$orderinfo{series}        : "",
                 "biblioitems.isbn"            => $$orderinfo{isbn}            ? $$orderinfo{isbn}          : "",
                 "biblioitems.publishercode"   => $$orderinfo{publishercode}   ? $$orderinfo{publishercode} : "",
                 "biblioitems.publicationyear" => $$orderinfo{publicationyear} ? $$orderinfo{publicationyear}: "",
-- 
1.6.3.3




More information about the Koha-patches mailing list