| Summary: | item's subfields (952|995) must be displayed on tab 10 | ||
|---|---|---|---|
| Product: | Koha | Reporter: | Jonathan Druart <jonathan.druart> |
| Component: | Architecture, internals, and plumbing | Assignee: | Jonathan Druart <jonathan.druart> |
| Status: | ASSIGNED --- | QA Contact: | Testopia <testopia> |
| Severity: | normal | ||
| Priority: | P5 - low | ||
| Version: | unspecified | ||
| Hardware: | All | ||
| OS: | All | ||
| See Also: | https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23282 | ||
| GIT URL: | Initiative type: | --- | |
| Sponsorship status: | --- | Comma delimited list of Sponsors: | |
| Crowdfunding goal: | 0 | Patch complexity: | --- |
| Documentation contact: | Documentation submission: | ||
| Text to go in the release notes: | Version(s) released in: | ||
| Circulation function: | |||
|
Description
Jonathan Druart
2019-11-22 10:33:47 UTC
For instance, to build the list of item's fields in tools/batchMod.pl
332 foreach my $tag (sort keys %{$tagslib}) {
333 # loop through each subfield
334 foreach my $subfield (sort keys %{$tagslib->{$tag}}) {
335 next if IsMarcStructureInternal( $tagslib->{$tag}{$subfield} );
336 next if (not $allowAllSubfields and $restrictededition && !grep { $tag . '$' . $subfield eq $_ } @subfieldsToAllow );
337 next if ($tagslib->{$tag}->{$subfield}->{'tab'} ne "10");
|