The lines mentioned in the errors don't match the script you pasted. If you encounter any further errors, please share the actual barcode.pl as an attachment or via pastebin. Here is an example:

https://pastebin.com/k2dGC1Wf

--Ere

[email protected] kirjoitti 20.2.2021 klo 18.28:

When I tried to run barcode.pl


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;

}





This is the error messages that I got:

No method biblioitem! at barcode.pl line 8

Can't call method "itemtype" on an undefined value at barcode.pl line 10

Any help will be nice.


_______________________________________________

Koha mailing list  http://koha-community.org
[email protected]
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha

--
Ere Maijala
Kansalliskirjasto / The National Library of Finland
_______________________________________________

Koha mailing list  http://koha-community.org
[email protected]
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha

Reply via email to