X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=svc%2Fnew_bib;h=435d8378313ccb94cca644e5dc5078e4ff15f927;hb=84825be42adf4a50b77360cf016cd5bfee15c072;hp=32748fbc420aee9623a1f41503bc65539489d112;hpb=8ad2c7d7acc3cb0033426bd78928214a22ad9dd1;p=koha.git diff --git a/svc/new_bib b/svc/new_bib index 32748fbc42..435d837831 100755 --- a/svc/new_bib +++ b/svc/new_bib @@ -13,9 +13,9 @@ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License along with -# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, -# Suite 330, Boston, MA 02111-1307 USA +# You should have received a copy of the GNU General Public License along +# with Koha; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # use strict; @@ -24,11 +24,12 @@ use warnings; use CGI; use C4::Auth qw/check_api_auth/; use C4::Biblio; +use C4::Items; use XML::Simple; use C4::Charset; my $query = new CGI; -binmode STDOUT, ":utf8"; +binmode STDOUT, ':encoding(UTF-8)'; my ($status, $cookie, $sessionID) = check_api_auth($query, { editcatalogue => 'edit_catalogue'} ); unless ($status eq "ok") { @@ -65,13 +66,26 @@ sub add_bib { ($record, $guessed_charset, $charset_errors) = MarcToUTF8Record($record, $marcflavour); } + my $fullrecord = $record->clone(); + # delete any item tags - my ( $itemtag, $itemsubfield ) = GetMarcFromKohaField("items.itemnumber", ''); - foreach my $field ($record->field($itemtag)) { + my ( $itemtag, $itemsubfield ) = + GetMarcFromKohaField( "items.itemnumber", '' ); + foreach my $field ( $record->field($itemtag) ) { $record->delete_field($field); } - my ($biblionumber, $biblioitemnumber) = AddBiblio($record, ''); + my ( $biblionumber, $biblioitemnumber ) = AddBiblio( $record, '' ); my $new_record = GetMarcBiblio($biblionumber); + if ( $query->url_param('items') ) { + foreach my $field ( $fullrecord->field($itemtag) ) { + my $one_item_record = $new_record->clone(); + $one_item_record->add_fields($field); + AddItemFromMarc( $one_item_record, $biblionumber ); + } + } + + $new_record = + GetMarcBiblio( $biblionumber, $query->url_param('items') ); $result->{'status'} = "ok"; $result->{'biblionumber'} = $biblionumber; my $xml = $new_record->as_xml_record();