[Koha] Barcode's continued part two
Jonathan Druart
jonathan.druart at bugs.koha-community.org
Sat Feb 20 02:17:20 NZDT 2021
Don't include the quotes, it was to delimit the code.
Le ven. 19 févr. 2021 à 14:05, <library at princeofpeaceabbey.org> a écrit :
>
>
> Trying to run this:
>
> """
>
> use Modern::Perl;
> use Koha::Biblios;
> use Koha::Items;
>
> my $biblios = Koha::Biblios->search;
> my $branchcode='ppa';
> while ( my $biblio=$biblios->next) {
>
>
> Koha::Item->new(
> {
> biblionumber => $biblio->biblionumber,
> homebranch => $branchcode,
> holdingbranch =>$branchcode,
> barcode =>"barcode_".$biblio->biblionumber,
> itype =>$biblio->biblioitem->itemtype,
> }
> )->store;
> }
>
> """
>
> But get this instead:
>
> String found where operator expected at barcode.pl line 22, near “””
> (Might be a runaway multi-line “” string starting on line 1)
> (Missing semicolon on previous line?)
> syntax error at barcode.pl line 22, near “””
> execution of barcode.pl aborted due to compilation errors.
>
> As you can tell I do not know Perl. So any help will be nice.
>
> Raphael
>
>
> _______________________________________________
>
> Koha mailing list http://koha-community.org
> Koha at lists.katipo.co.nz
> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
More information about the Koha
mailing list