From: erickson Date: Tue, 17 Mar 2009 15:45:06 +0000 (+0000) Subject: set state explicitly so caller will have the state in the retrieved LIs X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=994e38ec1cea48aa3a3314ea912248029dbe24b6;p=Evergreen.git set state explicitly so caller will have the state in the retrieved LIs git-svn-id: svn://svn.open-ils.org/ILS/trunk@12562 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Acq/Picklist.pm b/Open-ILS/src/perlmods/OpenILS/Application/Acq/Picklist.pm index 30b7e040e4..31d58c2e8b 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Acq/Picklist.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Acq/Picklist.pm @@ -466,6 +466,7 @@ sub zsearch { $li->edit_time('now'); $li->create_time('now'); $li->marc($rec->{marcxml}); + $li->state('new'); $li->eg_bib_id($rec->{bibid}) if $rec->{bibid}; $e->create_acq_lineitem($li) or return $e->die_event;