View | Details | Raw Unified | Return to bug 11129
Collapse All | Expand All

(-)a/C4/Items.pm (-17 / +114 lines)
Lines 25-30 use Carp; Link Here
25
use C4::Context;
25
use C4::Context;
26
use C4::Koha;
26
use C4::Koha;
27
use C4::Biblio;
27
use C4::Biblio;
28
use C4::SQLHelper;
28
use C4::Dates qw/format_date format_date_in_iso/;
29
use C4::Dates qw/format_date format_date_in_iso/;
29
use MARC::Record;
30
use MARC::Record;
30
use C4::ClassSource;
31
use C4::ClassSource;
Lines 1169-1174 sub GetItemsByBiblioitemnumber { Link Here
1169
=head2 GetItemsInfo
1170
=head2 GetItemsInfo
1170
1171
1171
  @results = GetItemsInfo($biblionumber);
1172
  @results = GetItemsInfo($biblionumber);
1173
  @results = GetItemsInfo($biblionumber, $filter);
1172
1174
1173
Returns information about items with the given biblionumber.
1175
Returns information about items with the given biblionumber.
1174
1176
Lines 1206-1217 If this is set, it is set to C<One Order>. Link Here
1206
1208
1207
=back
1209
=back
1208
1210
1211
=item C<$filter>
1212
1213
A reference-to-hash. Valid filters are:
1214
$filter->{branch} = 'CPL';          #Branchcode of the library whose items should only be displayed.
1215
$filter->{volume} = '2013';         #The volume of the item from items.enumchron aka. "Numbering formula".
1216
$filter->{number} = '11';           #The number or issue of the item from items.enumchron aka. "Numbering formula".
1217
$filter->{fromDate} = '01/01/2013'; #Filters only serial issues by the serialitems.publisheddate
1218
                                          #The starting date in C4::Context->preference('dateformat') format
1219
$filter->{toDate} = '31/12/2014';   #Filters only serial issues by the serialitems.publisheddate
1220
                                          #The ending date in C4::Context->preference('dateformat') format
1221
                                          
1222
Filters are expected to be validated! If a filter is not defined, that filter is not present in the $filter-HASH
1223
1209
=cut
1224
=cut
1210
1225
1211
sub GetItemsInfo {
1226
sub GetItemsInfo {
1212
    my ( $biblionumber ) = @_;
1227
    my ( $biblionumber, $filter ) = @_;
1213
    my $dbh   = C4::Context->dbh;
1228
    my $dbh   = C4::Context->dbh;
1229
    
1230
    #Prepare the filter
1231
    my $filterEnumchron = 0;
1232
    my $enumchronSQLRegexp;
1233
    if (defined $filter && ref $filter eq 'HASH') {
1234
        
1235
        #Items enumchron can be filtered by volume or number or both.
1236
        #Because the format of enumchron 
1237
        #For performance reasons regexp's need to be as simple as possible.
1238
        ## It is entirely possible to search with just volume or just number or just issue.
1239
        ##  We don't know which filters are used so it is safer and more efficient to just
1240
        ##  prepare the enumeration parsing SQL every time.
1241
        $enumchronSQLRegexp = C4::Context->preference('NumberingFormulaParsingRegexp');
1242
        
1243
        if (exists $filter->{volume}) {
1244
            $filterEnumchron = 1;
1245
            $enumchronSQLRegexp =~ s/volume/$filter->{volume}/;
1246
        }
1247
        else {
1248
            $enumchronSQLRegexp =~ s/volume/[0-9]*/;
1249
        }
1250
        if (exists $filter->{number}) {
1251
            $filterEnumchron = 1;
1252
            $enumchronSQLRegexp =~ s/number/$filter->{number}/;
1253
        }
1254
        else {
1255
            $enumchronSQLRegexp =~ s/number/[0-9]*/;
1256
        }
1257
        if (exists $filter->{issue}) {
1258
            $filterEnumchron = 1;
1259
            $enumchronSQLRegexp =~ s/issue/$filter->{issue}/;
1260
        }
1261
        else {
1262
            $enumchronSQLRegexp =~ s/issue/[0-9]*/;
1263
        }   
1264
    }
1265
    #If we know that this item is a serial, we can better optimize our big SQL.
1266
    # This is especially useful when we want to filter based on the publication date.
1267
    # SELECTing a huge blob of serials just to remove unnecessary ones will be really sloooow.
1268
    my $search = C4::SQLHelper::SearchInTable("biblio",{biblionumber => $biblionumber}, undef, undef, ['serial'], undef, "exact");
1269
    my $serial = $search->[0]->{serial};
1270
    
1214
    # note biblioitems.* must be avoided to prevent large marc and marcxml fields from killing performance.
1271
    # note biblioitems.* must be avoided to prevent large marc and marcxml fields from killing performance.
1272
    #Because it is uncertain how many parameters the SQL query needs, we need to build the parameters dynamically
1273
    # This is because we cannot predict what filters our users use.
1274
    my $queryParams = [$biblionumber];
1215
    my $query = "
1275
    my $query = "
1216
    SELECT items.*,
1276
    SELECT items.*,
1217
           biblio.*,
1277
           biblio.*,
Lines 1231-1237 sub GetItemsInfo { Link Here
1231
           itemtypes.notforloan as notforloan_per_itemtype,
1291
           itemtypes.notforloan as notforloan_per_itemtype,
1232
           holding.branchurl,
1292
           holding.branchurl,
1233
           holding.branchname,
1293
           holding.branchname,
1234
           holding.opac_info as branch_opac_info
1294
           holding.opac_info as branch_opac_info ";
1295
    if ($serial) {
1296
        $query .= ", 
1297
           serial.serialseq, 
1298
           serial.publisheddate ";
1299
    }
1300
    $query .= "
1235
     FROM items
1301
     FROM items
1236
     LEFT JOIN branches AS holding ON items.holdingbranch = holding.branchcode
1302
     LEFT JOIN branches AS holding ON items.holdingbranch = holding.branchcode
1237
     LEFT JOIN branches AS home ON items.homebranch=home.branchcode
1303
     LEFT JOIN branches AS home ON items.homebranch=home.branchcode
Lines 1239-1257 sub GetItemsInfo { Link Here
1239
     LEFT JOIN biblioitems ON biblioitems.biblioitemnumber = items.biblioitemnumber
1305
     LEFT JOIN biblioitems ON biblioitems.biblioitemnumber = items.biblioitemnumber
1240
     LEFT JOIN itemtypes   ON   itemtypes.itemtype         = "
1306
     LEFT JOIN itemtypes   ON   itemtypes.itemtype         = "
1241
     . (C4::Context->preference('item-level_itypes') ? 'items.itype' : 'biblioitems.itemtype');
1307
     . (C4::Context->preference('item-level_itypes') ? 'items.itype' : 'biblioitems.itemtype');
1242
    $query .= " WHERE items.biblionumber = ? ORDER BY home.branchname, items.enumchron, LPAD( items.copynumber, 8, '0' ), items.dateaccessioned DESC" ;
1308
     
1309
    if ($serial) {
1310
        $query .= " 
1311
           LEFT JOIN serialitems ON serialitems.itemnumber = items.itemnumber 
1312
           LEFT JOIN serial ON serialitems.serialid = serial.serialid ";          
1313
    }
1314
    
1315
    $query .= " WHERE items.biblionumber = ? ";
1316
    
1317
    if (exists $filter->{branch}) {
1318
        $query .= " AND items.holdingbranch = ?";
1319
        push @$queryParams, $filter->{branch};
1320
    }
1321
    if ($filterEnumchron) {
1322
        $query .= " AND items.enumchron REGEXP ?";
1323
        push @$queryParams, $enumchronSQLRegexp;
1324
    }
1325
    if (exists $filter->{fromDate}) {
1326
        if ($serial) {
1327
            $query .= " AND serial.publisheddate >= ?";
1328
        }
1329
        else {
1330
            $query .= " AND items.timestamp >= ?";
1331
        }
1332
        push @$queryParams, $filter->{fromDate};
1333
    }
1334
    if (exists $filter->{toDate}) {
1335
        if ($serial) {
1336
            $query .= " AND serial.publisheddate <= ?";
1337
        }
1338
        else {
1339
            $query .= " AND items.timestamp <= ?";
1340
        }
1341
        push @$queryParams, $filter->{toDate};
1342
    }
1343
    
1344
    $query .= "ORDER BY home.branchname, items.enumchron, LPAD( items.copynumber, 8, '0' ), items.dateaccessioned DESC" ;
1243
    my $sth = $dbh->prepare($query);
1345
    my $sth = $dbh->prepare($query);
1244
    $sth->execute($biblionumber);
1346
    $sth->execute(@$queryParams);
1245
    my $i = 0;
1347
    my $i = 0;
1246
    my @results;
1348
    my @results;
1247
    my $serial;
1248
1349
1249
    my $isth    = $dbh->prepare(
1350
    my $isth    = $dbh->prepare(
1250
        "SELECT issues.*,borrowers.cardnumber,borrowers.surname,borrowers.firstname,borrowers.branchcode as bcode
1351
        "SELECT issues.*,borrowers.cardnumber,borrowers.surname,borrowers.firstname,borrowers.branchcode as bcode
1251
        FROM   issues LEFT JOIN borrowers ON issues.borrowernumber=borrowers.borrowernumber
1352
        FROM   issues LEFT JOIN borrowers ON issues.borrowernumber=borrowers.borrowernumber
1252
        WHERE  itemnumber = ?"
1353
        WHERE  itemnumber = ?"
1253
       );
1354
       );
1254
	my $ssth = $dbh->prepare("SELECT serialseq,publisheddate from serialitems left join serial on serialitems.serialid=serial.serialid where serialitems.itemnumber=? "); 
1355
1356
    
1255
	while ( my $data = $sth->fetchrow_hashref ) {
1357
	while ( my $data = $sth->fetchrow_hashref ) {
1256
        my $datedue = '';
1358
        my $datedue = '';
1257
        $isth->execute( $data->{'itemnumber'} );
1359
        $isth->execute( $data->{'itemnumber'} );
Lines 1262-1278 sub GetItemsInfo { Link Here
1262
            $data->{firstname}     = $idata->{firstname};
1364
            $data->{firstname}     = $idata->{firstname};
1263
            $data->{lastreneweddate} = $idata->{lastreneweddate};
1365
            $data->{lastreneweddate} = $idata->{lastreneweddate};
1264
            $datedue                = $idata->{'date_due'};
1366
            $datedue                = $idata->{'date_due'};
1265
        if (C4::Context->preference("IndependentBranches")){
1367
            if (C4::Context->preference("IndependentBranches")){
1266
        my $userenv = C4::Context->userenv;
1368
                my $userenv = C4::Context->userenv;
1267
        if ( ($userenv) && ( $userenv->{flags} % 2 != 1 ) ) { 
1369
                if ( ($userenv) && ( $userenv->{flags} % 2 != 1 ) ) { 
1268
            $data->{'NOTSAMEBRANCH'} = 1 if ($idata->{'bcode'} ne $userenv->{branch});
1370
                    $data->{'NOTSAMEBRANCH'} = 1 if ($idata->{'bcode'} ne $userenv->{branch});
1269
        }
1371
                }
1270
        }
1372
            }
1271
        }
1272
		if ( $data->{'serial'}) {	
1273
			$ssth->execute($data->{'itemnumber'}) ;
1274
			($data->{'serialseq'} , $data->{'publisheddate'}) = $ssth->fetchrow_array();
1275
			$serial = 1;
1276
        }
1373
        }
1277
        #get branch information.....
1374
        #get branch information.....
1278
        my $bsth = $dbh->prepare(
1375
        my $bsth = $dbh->prepare(
(-)a/installer/data/mysql/sysprefs.sql (+2 lines)
Lines 108-113 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
108
('ExtendedPatronAttributes','0',NULL,'Use extended patron IDs and attributes','YesNo'),
108
('ExtendedPatronAttributes','0',NULL,'Use extended patron IDs and attributes','YesNo'),
109
('FacetLabelTruncationLength','20',NULL,'Specify the facet max length in OPAC','Integer'),
109
('FacetLabelTruncationLength','20',NULL,'Specify the facet max length in OPAC','Integer'),
110
('FilterBeforeOverdueReport','0','','Do not run overdue report until filter selected','YesNo'),
110
('FilterBeforeOverdueReport','0','','Do not run overdue report until filter selected','YesNo'),
111
('FilterSerialsByIssue','0',NULL,'Use issue-field when filtering serial issues in addition to the volume- and number-fields? This relates to NumberingFormulaParsingRegexp system preference.','YesNo'),
111
('FineNotifyAtCheckin','0',NULL,'If ON notify librarians of overdue fines on the items they are checking in.','YesNo'),
112
('FineNotifyAtCheckin','0',NULL,'If ON notify librarians of overdue fines on the items they are checking in.','YesNo'),
112
('finesCalendar','noFinesWhenClosed','ignoreCalendar|noFinesWhenClosed','Specify whether to use the Calendar in calculating duedates and fines','Choice'),
113
('finesCalendar','noFinesWhenClosed','ignoreCalendar|noFinesWhenClosed','Specify whether to use the Calendar in calculating duedates and fines','Choice'),
113
('FinesIncludeGracePeriod','1',NULL,'If enabled, fines calculations will include the grace period.','YesNo'),
114
('FinesIncludeGracePeriod','1',NULL,'If enabled, fines calculations will include the grace period.','YesNo'),
Lines 190-195 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
190
('NovelistSelectPassword',NULL,NULL,'Enable Novelist user Profile','free'),
191
('NovelistSelectPassword',NULL,NULL,'Enable Novelist user Profile','free'),
191
('NovelistSelectProfile',NULL,NULL,'Novelist Select user Password','free'),
192
('NovelistSelectProfile',NULL,NULL,'Novelist Select user Password','free'),
192
('NovelistSelectView','tab','tab|above|below|right','Where to display Novelist Select content','Choice'),
193
('NovelistSelectView','tab','tab|above|below|right','Where to display Novelist Select content','Choice'),
194
('NumberingFormulaParsingRegexp','','','Explanation','free')
193
('numReturnedItemsToShow','20',NULL,'Number of returned items to show on the check-in page','Integer'),
195
('numReturnedItemsToShow','20',NULL,'Number of returned items to show on the check-in page','Integer'),
194
('numSearchResults','20',NULL,'Specify the maximum number of results to display on a page of results','Integer'),
196
('numSearchResults','20',NULL,'Specify the maximum number of results to display on a page of results','Integer'),
195
('numSearchRSSResults','50',NULL,'Specify the maximum number of results to display on a RSS page of results','Integer'),
197
('numSearchRSSResults','50',NULL,'Specify the maximum number of results to display on a RSS page of results','Integer'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/serials.pref (+12 lines)
Lines 50-52 Serials: Link Here
50
    -
50
    -
51
        - List of fields which must not be rewritten when a subscription is duplicated (Separated by pipe |)
51
        - List of fields which must not be rewritten when a subscription is duplicated (Separated by pipe |)
52
        - pref: SubscriptionDuplicateDroppedInput
52
        - pref: SubscriptionDuplicateDroppedInput
53
    -
54
        - "When dealing with a large number of Serial items, there is a need to filter the a large number of serial issues in OPAC and staff client Numbering formula"
55
        - pref: NumberingFormulaParsingRegexp
56
          class: long
57
        - for lists of browsable letters. This should be a space separated list of uppercase letters.
58
    -
59
        - pref: FilterSerialsByIssue
60
          choices:
61
              yes: "Use"
62
              no: "Don't use"
63
        - issue-field when filtering serial issues in addition to the volume- and number-fields. This relates to NumberingFormulaParsingRegexp system preference.
64
        
(-)a/koha-tmpl/opac-tmpl/prog/en/css/opac-detail.css (+41 lines)
Line 0 Link Here
1
/* Lots of stuff copied from opac.css since it shouldn't be modified. The button elements should be generalized for maintainability reasons! */
2
3
#filterIssuesButton {
4
    z-index: 1001; /* Make sure this element is always over the #filterIssuesFormContainer */
5
	background-repeat: no-repeat;
6
	-webkit-border-radius: 5px;
7
	-moz-border-radius: 5px;
8
	border-radius: 5px;
9
	text-decoration : none;
10
	cursor : pointer;
11
	font-weight : bold;
12
	padding : .3em .7em;
13
14
	background : #151515;
15
    background: url("../../images/desc.gif"),-moz-linear-gradient(top, #eeeeee 0%, #e0e0e0 50%, #d9d9d9 100%); /* FF3.6+ */
16
    background: url("../../images/desc.gif"),-webkit-gradient(linear, left top, left bottom, color-stop(0%,#eeeeee), color-stop(50%,#e0e0e0), color-stop(100%,#d9d9d9)); /* Chrome,Safari4+ */
17
    background: url("../../images/desc.gif"),-webkit-linear-gradient(top, #eeeeee 0%,#e0e0e0 50%,#d9d9d9 100%); /* Chrome10+,Safari5.1+ */
18
    background: url("../../images/desc.gif"),-o-linear-gradient(top, #eeeeee 0%,#e0e0e0 50%,#d9d9d9 100%); /* Opera 11.10+ */
19
    background: url("../../images/desc.gif"),-ms-linear-gradient(top, #eeeeee 0%,#e0e0e0 50%,#d9d9d9 100%); /* IE10+ */
20
    background: url("../../images/desc.gif"),linear-gradient(top, #eeeeee 0%,#e0e0e0 50%,#d9d9d9 100%); /* W3C */
21
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#d9d9d9',GradientType=0 ); /* IE6-9 */
22
    background-position:  center right;
23
	background-repeat: no-repeat;
24
	border: 1px solid #c3c3c3;
25
	
26
	padding-right: 20px;
27
    margin-right: 6px;
28
}
29
30
31
32
/* IE 6 & 7  don't do multiple backgrounds, so remove extra padding */
33
* html #filterIssuesButton,
34
*+html #filterIssuesButton {
35
	padding-right : .7em;
36
}
37
38
/* IE 8 doesn't do multiple backgrounds, so remove extra padding */
39
#filterIssuesButton {
40
  padding-right: .7em\0/;
41
}
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tt (-24 / +150 lines)
Lines 19-24 Link Here
19
19
20
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Details for: [% title |html %][% FOREACH subtitl IN subtitle %], [% subtitl.subfield |html %][% END %]
20
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Details for: [% title |html %][% FOREACH subtitl IN subtitle %], [% subtitl.subfield |html %][% END %]
21
[% INCLUDE 'doc-head-close.inc' %]
21
[% INCLUDE 'doc-head-close.inc' %]
22
[% INCLUDE 'calendar.inc' %]
22
[% INCLUDE 'datatables.inc' %]
23
[% INCLUDE 'datatables.inc' %]
23
[% IF ( SocialNetworks ) %]
24
[% IF ( SocialNetworks ) %]
24
    <script type="text/javascript" src="https://apis.google.com/js/plusone.js">
25
    <script type="text/javascript" src="https://apis.google.com/js/plusone.js">
Lines 35-40 Link Here
35
[% IF ( bidi ) %]
36
[% IF ( bidi ) %]
36
  <link rel="stylesheet" type="text/css" href="[% themelang %]/css/right-to-left.css" />
37
  <link rel="stylesheet" type="text/css" href="[% themelang %]/css/right-to-left.css" />
37
[% END %]
38
[% END %]
39
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/opac-detail.css" />
38
<script type="text/javascript">
40
<script type="text/javascript">
39
//<![CDATA[
41
//<![CDATA[
40
42
Lines 66-72 Link Here
66
            $(".highlight_toggle").toggle();
68
            $(".highlight_toggle").toggle();
67
        }
69
        }
68
    [% END %]
70
    [% END %]
69
71
// ------------------------------ //    
72
//>>> Document READY starts here! //
73
// ------------------------------ //    
70
     $(document).ready(function() { 
74
     $(document).ready(function() { 
71
        $('#bibliodescriptions').tabs();
75
        $('#bibliodescriptions').tabs();
72
        $(".branch-info-tooltip-trigger").tooltip({
76
        $(".branch-info-tooltip-trigger").tooltip({
Lines 109-136 Link Here
109
        });
113
        });
110
[% END %]
114
[% END %]
111
115
112
            $(".holdingst").dataTable($.extend(true, {}, dataTablesDefaults, {
116
        $(".holdingst").dataTable($.extend(true, {}, dataTablesDefaults, {
113
                "aoColumns": [
117
            "aoColumns": [
114
                    [% IF ( item_level_itypes ) %]null,[% END %]
118
                [% IF ( item_level_itypes ) %]null,[% END %]
115
                    null,
119
                null,
116
                    [% IF ( itemdata_ccode ) %]null,[% END %]
120
                [% IF ( itemdata_ccode ) %]null,[% END %]
121
                null,
122
                [% IF ( itemdata_enumchron ) %]null,[% END %]
123
                [% IF ( itemdata_uri ) %]null,[% END %]
124
                [% IF ( itemdata_copynumber ) %]null,[% END %]
125
                null,
126
                [% IF ( itemdata_itemnotes ) %]null,[% END %]
127
                { "sType": "title-string" },
128
                [% IF ( OPACShowBarcode ) %]null,[% END %]
129
                [% IF holds_count.defined %]
117
                    null,
130
                    null,
118
                    [% IF ( itemdata_enumchron ) %]null,[% END %]
131
                [% ELSIF show_priority %]
119
                    [% IF ( itemdata_uri ) %]null,[% END %]
120
                    [% IF ( itemdata_copynumber ) %]null,[% END %]
121
                    null,
132
                    null,
122
                    [% IF ( itemdata_itemnotes ) %]null,[% END %]
133
                [% END %]
123
                    { "sType": "title-string" },
134
                [% IF ( ShowCourseReservesHeader ) %]null,[% END %]
124
                    [% IF ( OPACShowBarcode ) %]null,[% END %]
135
            ]
125
                    [% IF holds_count.defined %]
136
        }));
126
                        null,
127
                    [% ELSIF show_priority %]
128
                        null,
129
                    [% END %]
130
                    [% IF ( ShowCourseReservesHeader ) %]null,[% END %]
131
                ]
132
            }));
133
137
138
        //Bind the datepicker
139
        $('.datepicker').datepicker();
140
        
134
        [% IF ( query_desc ) %][% IF ( OpacHighlightedWords ) %]var query_desc = "[% query_desc |replace("'", "\'") |replace('\n', '\\n') |replace('\r', '\\r') |html %]";
141
        [% IF ( query_desc ) %][% IF ( OpacHighlightedWords ) %]var query_desc = "[% query_desc |replace("'", "\'") |replace('\n', '\\n') |replace('\r', '\\r') |html %]";
135
            q_array = query_desc.split(" ");
142
            q_array = query_desc.split(" ");
136
            highlightOn();
143
            highlightOn();
Lines 248-254 $(function () { Link Here
248
    }
255
    }
249
256
250
[% END %]
257
[% END %]
251
});
258
259
        $('#filterIssuesFormContainer').hide(); /* Making this element unobtrusive for javascript consumers */
260
        $('#filterIssuesButton').click(function() {
261
            $('#filterIssuesFormContainer').toggle();
262
        });
263
    });
264
// --------------------------- //
265
//<<< Document READY ends here //
266
// --------------------------- //
252
[% IF ( IDreamBooksReviews || IDreamBooksReadometer ) %]
267
[% IF ( IDreamBooksReviews || IDreamBooksReadometer ) %]
253
function parseIDBJSON( json ) {
268
function parseIDBJSON( json ) {
254
    if(json.total_results > 0 && json.book.rating > 0){
269
    if(json.total_results > 0 && json.book.rating > 0){
Lines 1038-1046 YAHOO.util.Event.onContentReady("furtherm", function () { Link Here
1038
1053
1039
1054
1040
<div id="holdings">
1055
<div id="holdings">
1041
[% IF ( itemloop.size ) %]
1056
    
1057
    [% IF ( lotsofitems ) %]
1058
        [%# Display the items filtering form used to filter the shown items. See the end of this file! %]
1059
        [% INCLUDE filter_form tab="holdings" %]
1060
    [% END %]
1061
    
1062
[% IF ( itemloop.size ) %]    
1063
    
1042
    [% IF ( lotsofitems ) %]
1064
    [% IF ( lotsofitems ) %]
1043
	<p>This record has many physical items. <a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblionumber %]&amp;viewallitems=1#holdings">Click here to view them all.</a></p>
1065
	<p>This record has many physical items. <a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblionumber %]&amp;viewallitems=1#holdings">Click here to view them all.</a> Or use the filter above to limit your selection</p>
1044
    [% ELSE %]
1066
    [% ELSE %]
1045
        [% INCLUDE items_table items=itemloop tab="holdings" %]
1067
        [% INCLUDE items_table items=itemloop tab="holdings" %]
1046
    [% END %]
1068
    [% END %]
Lines 1064-1070 YAHOO.util.Event.onContentReady("furtherm", function () { Link Here
1064
        <div id="alternateholdings"><span class="holdings_label">Holdings:</span> [% ALTERNATEHOLDING.holding %]</div>
1086
        <div id="alternateholdings"><span class="holdings_label">Holdings:</span> [% ALTERNATEHOLDING.holding %]</div>
1065
    [% END %]
1087
    [% END %]
1066
    [% ELSE %]
1088
    [% ELSE %]
1067
    <div id="noitems">No physical items for this record</div>
1089
    <h4 id="noitems">
1090
        No physical items for this record.
1091
        [% IF filter %]
1092
            <br/> Try clearing the filter.
1093
        [% END %]
1094
    </h4>
1068
    [% END %]
1095
    [% END %]
1069
[% END %]
1096
[% END %]
1070
1097
Lines 1600-1602 YAHOO.util.Event.onContentReady("furtherm", function () { Link Here
1600
	    [% END %]</tbody>
1627
	    [% END %]</tbody>
1601
	</table>
1628
	</table>
1602
[% END %][%# end of items_table block %]
1629
[% END %][%# end of items_table block %]
1630
1631
[% BLOCK filter_form %]
1632
    [% IF ( notDefined_NumberingFormulaParsingRegexp ) %]
1633
        <div class="dialog alert">
1634
            You must define the NumberingFormulaParsingRegexp system preference to filter items by enumeration!
1635
        </div>
1636
    [% END %]
1637
1638
    <div id="filterIssuesParentContainer">
1639
    <a id="filterIssuesButton" >Limit issues</a>
1640
    [% IF filter %]
1641
        <form id="issuesFilter" method="get" action="/cgi-bin/koha/opac-detail.pl">
1642
            <input type="hidden" name="biblionumber" id="biblionumber" value="[% biblionumber %]"/>
1643
            <input type="submit" name="clearFilter" value="Clear filter" class="submit"/>
1644
        </form>
1645
    [% END %]
1646
    <div id="filterIssuesFormContainer">
1647
    <form id="issuesFilter" method="get" action="/cgi-bin/koha/opac-detail.pl">
1648
        <input type="hidden" name="biblionumber" id="biblionumber" value="[% biblionumber %]"/>
1649
        <input type="hidden" name="viewallitems" id="viewallitems" value="1"/>
1650
        
1651
        <fieldset>
1652
            <table>
1653
                <tr><td>
1654
                        <label for="filterBranchLimiter">
1655
                            Library:
1656
                        </label>
1657
                    </td><td>
1658
                        <select name="filterBranchLimiter" size="1" id="filterBranchLimiter">
1659
                        [%- FOREACH branchloo IN branchloop %]
1660
                            [% IF ( branchloo.selected ) -%]
1661
                                <option value="[% branchloo.branchcode %]" selected="selected">
1662
                            [%- ELSE -%]
1663
                                <option value="[% branchloo.branchcode %]">
1664
                            [%- END -%]
1665
                            [% IF ( branchloo.branchcode ) == '_ShowAll' -%]
1666
                                Show from any library</option>
1667
                            [%- ELSE -%]
1668
                                [% branchloo.branchname %]</option>
1669
                            [%- END -%]
1670
                        [%- END %]
1671
                        </select>
1672
                    </td>
1673
                </tr>
1674
                [% IF isSerial %]
1675
                    <tr>
1676
                        <td>
1677
                            <label for="filterVolume">
1678
                                Issue volume:
1679
                            </label>
1680
                        </td><td>
1681
                            <input type="number" id="filterVolume" name="filterVolume" min="0" max="9999" maxlength="4" value="[% filter.volume %]">
1682
                        </td>   
1683
                    </tr><tr>
1684
                        <td>
1685
                            <label for="filterNumber">
1686
                                Issue number:
1687
                            </label>
1688
                        </td><td>
1689
                            <input type="number" id="filterNumber" name="filterNumber" min="0" max="99" maxlength="2" value="[% filter.number %]">
1690
                        </td>
1691
                    </tr>
1692
                    [% IF useFilterIssueInput %]
1693
                    <tr>
1694
                        <td>
1695
                            <label for="filterIssue">
1696
                                Issue issue:
1697
                            </label>
1698
                        </td><td>
1699
                            <input type="number" id="filterIssue" name="filterIssue" min="0" max="99" maxlength="2" value="[% filter.issue %]">
1700
                        </td>
1701
                    </tr>
1702
                    [% END %]
1703
                [% END %][%# End of IF isSerial %]
1704
                <tr>
1705
                    <td>
1706
                        <label for="filterFrom">
1707
                            From date:
1708
                        </label>
1709
                    </td><td>
1710
                        <input type="text" size="10" id="filterFrom" name="filterFrom" value="[% filter.serialFromDate %]" class="datepicker" />
1711
                    </td>
1712
                </tr><tr>
1713
                    <td>
1714
                        <label for="filterTo">
1715
                            To date:
1716
                        </label>
1717
                    </td><td>
1718
                        <input type="text" size="10" id="filterTo" name="filterTo" value="[% filter.serialToDate %]" class="datepicker" />
1719
                    </td>
1720
                </tr>
1721
            </table>
1722
1723
            <input type="submit" name="filterIssues" value="Submit" class="submit"/>
1724
        </fieldset>
1725
    </form>
1726
    </div>
1727
    </div>
1728
[% END %][%# end of filter_form block %]
(-)a/opac/opac-detail.pl (-1 / +113 lines)
Lines 73-79 my ( $template, $borrowernumber, $cookie ) = get_template_and_user( Link Here
73
my $biblionumber = $query->param('biblionumber') || $query->param('bib') || 0;
73
my $biblionumber = $query->param('biblionumber') || $query->param('bib') || 0;
74
$biblionumber = int($biblionumber);
74
$biblionumber = int($biblionumber);
75
75
76
my @all_items = GetItemsInfo($biblionumber);
76
##
77
##>> Handling the Serial issue filter parameters from the user
78
##
79
# We can filter issues based on these five values.
80
my $filterBranchLimiter = $query->param('filterBranchLimiter') ? $query->param('filterBranchLimiter') : '_ShowAll';
81
my $filterVolume = $query->param('filterVolume') ? $query->param('filterVolume') : undef;
82
my $filterNumber = $query->param('filterNumber') ? $query->param('filterNumber') : undef;
83
my $filterIssue = $query->param('filterIssue') ? $query->param('filterIssue') : undef;
84
my $filterFromDate = $query->param('filterFrom') ? $query->param('filterFrom') : undef;
85
my $filterToDate = $query->param('filterTo') ? $query->param('filterTo') : undef;
86
87
my $filter; #a HASH! Collect the filters here, so they can be more conveniently moved around.
88
89
#We filter by the branch only if a valid branch is given.
90
if (defined $filterBranchLimiter && $filterBranchLimiter ne '_ShowAll') {
91
    $filter->{branch} = $filterBranchLimiter;
92
}
93
if (defined $filterVolume && length $filterVolume > 0) {
94
    if (!($filterVolume =~ /\d{1,4}/)) {
95
        print $query->header(); #bad data goddamnit!
96
        print "Invalid volume. Please try again. \n";
97
        exit;
98
    }
99
    else {
100
        $filter->{volume} = $filterVolume;
101
    }
102
}
103
if (defined $filterNumber && length $filterNumber > 0) {
104
    if (!($filterNumber =~ /\d{1,2}/)) {
105
        print $query->header(); #stop spamming bad data!
106
        print "Invalid number. Please try again. \n";
107
        exit;
108
    }
109
    else {
110
        $filter->{number} = $filterNumber;
111
    }
112
}
113
if (defined $filterIssue && length $filterIssue > 0) {
114
    if (!($filterIssue =~ /\d{1,2}/) ) {
115
        print $query->header(); #stop spamming bad data!
116
        print "Invalid issue. Please try again. \n";
117
        exit;
118
    }
119
    else {
120
        $filter->{issue} = $filterIssue;
121
    }
122
}
123
if (defined $filterFromDate && length $filterFromDate > 0) {
124
    if (!($filterFromDate =~ C4::Dates->regexp( C4::Context->preference('dateformat') )) ) {
125
        print $query->header(); #noo not anymore noo!
126
        print "Invalid starting date. Please try again. \n";
127
        exit;
128
    }
129
    else {
130
        $filter->{fromDate} = C4::Dates::format_date_in_iso( $filterFromDate );
131
    }
132
}
133
if (defined $filterToDate && length $filterToDate > 0) {
134
    if (!($filterToDate =~ C4::Dates->regexp( C4::Context->preference('dateformat') )) ) {
135
        print $query->header(); #take your bad data away!
136
        print "Invalid ending date. Please try again. \n";
137
        exit;
138
    }
139
    else {
140
        $filter->{toDate} = C4::Dates::format_date_in_iso( $filterToDate );
141
    }
142
}
143
144
145
##Prepare the custom branches loop containing the _ShowAll entry to show issues from all libraries.
146
my $branchloop;
147
if ( $filterBranchLimiter eq '_ShowAll' || !(defined $filterBranchLimiter) ) {
148
    $branchloop = C4::Branch::GetBranchesLoop('0'); #Using '0' to disable reverting to the users home branch
149
    unshift @$branchloop, { branchcode => '_ShowAll', branchname => 'Show from any library', selected => '1', value => '_ShowAll'};
150
}
151
else {
152
    $branchloop = C4::Branch::GetBranchesLoop($filterBranchLimiter);
153
    unshift @$branchloop, { branchcode => '_ShowAll', branchname => 'Show from any library', selected => '0', value => '_ShowAll'};
154
}
155
$template->param( branchloop => $branchloop );
156
$template->param( filter => $filter ) if defined $filter;
157
158
##
159
##<< Serial issues filter parameters handled! ##
160
##
161
162
163
my @all_items = GetItemsInfo($biblionumber, $filter);
164
165
# Now that the filter is no longer needed, we can reuse it to keep the filter modifications in the UI,
166
#  by reverting the dates to the same format as in the UI layer.
167
$filter->{fromDate} = $filterFromDate;
168
$filter->{toDate} = $filterToDate;
169
77
my @hiddenitems;
170
my @hiddenitems;
78
if (scalar @all_items >= 1) {
171
if (scalar @all_items >= 1) {
79
    push @hiddenitems, GetHiddenItemnumbers(@all_items);
172
    push @hiddenitems, GetHiddenItemnumbers(@all_items);
Lines 91-96 if ( ! $record ) { Link Here
91
}
184
}
92
$template->param( biblionumber => $biblionumber );
185
$template->param( biblionumber => $biblionumber );
93
186
187
#Figure out if we are dealing with a serial! This affects the filter fields in UI
188
if (scalar @all_items > 0) {
189
    $template->param( isSerial => $all_items[0]->{serial} );
190
}
191
else {
192
    #It could be that a serial has no items to be displayed. This could be because there are none or the filters filter all items
193
    my $search = C4::SQLHelper::SearchInTable("biblio",{biblionumber => $biblionumber}, undef, undef, ['serial'], undef, "exact");
194
    $template->param( isSerial => $search->[0]->{serial} );
195
}
196
197
198
199
94
# get biblionumbers stored in the cart
200
# get biblionumbers stored in the cart
95
my @cart_list;
201
my @cart_list;
96
202
Lines 1064-1068 if ( C4::Context->preference('UseCourseReserves') ) { Link Here
1064
        $i->{'course_reserves'} = GetItemCourseReservesInfo( itemnumber => $i->{'itemnumber'} );
1170
        $i->{'course_reserves'} = GetItemCourseReservesInfo( itemnumber => $i->{'itemnumber'} );
1065
    }
1171
    }
1066
}
1172
}
1173
## Defining general Serial issue filter related system preferences
1174
#Making sure the NumberingFormulaParsingRegexp preference is set!
1175
if ( length C4::Context->preference('NumberingFormulaParsingRegexp') < 3 ) {
1176
    $template->{VARS}->{notDefined_NumberingFormulaParsingRegexp} = 1;
1177
}
1178
$template->{VARS}->{useFilterIssueInput} = 1 if (C4::Context->preference('FilterSerialsByIssue'));
1067
1179
1068
output_html_with_http_headers $query, $cookie, $template->output;
1180
output_html_with_http_headers $query, $cookie, $template->output;
(-)a/t/db_dependent/Items.t (-1 / +34 lines)
Lines 21-27 use Modern::Perl; Link Here
21
use MARC::Record;
21
use MARC::Record;
22
use C4::Biblio;
22
use C4::Biblio;
23
23
24
use Test::More tests => 3;
24
use Test::More tests => 4;
25
25
26
BEGIN {
26
BEGIN {
27
    use_ok('C4::Items');
27
    use_ok('C4::Items');
Lines 142-147 subtest 'GetHiddenItemnumbers tests' => sub { Link Here
142
    $dbh->rollback;
142
    $dbh->rollback;
143
};
143
};
144
144
145
146
subtest 'Filter items tests' => sub {
147
    
148
    plan tests => 2;
149
150
    # Start transaction
151
    $dbh->{AutoCommit} = 0;
152
    $dbh->{RaiseError} = 1;
153
154
    # Create a new biblio
155
    my ($biblionumber, $biblioitemnumber) = get_biblio();
156
157
    # Add two items
158
    my ($item1_bibnum, $item1_bibitemnum, $item1_itemnumber) = AddItem(
159
            { homebranch => 'CPL',
160
              holdingbranch => 'CPL', },
161
            $biblionumber
162
    );
163
    my ($item2_bibnum, $item2_bibitemnum, $item2_itemnumber) = AddItem(
164
            { homebranch => 'MPL',
165
              holdingbranch => 'MPL', },
166
            $biblionumber
167
    );
168
    
169
    # Testing the branch filter
170
    my @shouldBeItem2 = C4::Items::GetItemsInfo($biblionumber, {branch => 'MPL'});
171
    is( $shouldBeItem2[0]->{itemnumber}, $item2_itemnumber, "Filtering by branch");
172
    
173
    # Testing the dates filter
174
    my @shouldBeEmpty = C4::Items::GetItemsInfo($biblionumber, {toDate => '01/01/1933'});
175
    is( scalar(@shouldBeEmpty), 0, "Filtering by date");
176
};
177
145
# Helper method to set up a Biblio.
178
# Helper method to set up a Biblio.
146
sub get_biblio {
179
sub get_biblio {
147
    my $bib = MARC::Record->new();
180
    my $bib = MARC::Record->new();
(-)a/t/db_dependent/Serials.t (-2 / +87 lines)
Lines 9-20 use YAML; Link Here
9
9
10
use C4::Serials;
10
use C4::Serials;
11
use C4::Debug;
11
use C4::Debug;
12
use Test::More tests => 34;
12
use C4::Biblio;
13
use C4::Items;
14
use Test::More tests => 35;
13
15
14
BEGIN {
16
BEGIN {
15
    use_ok('C4::Serials');
17
    use_ok('C4::Serials');
16
}
18
}
17
19
20
my $dbh = C4::Context->dbh;
21
22
18
my $subscriptionid = 1;
23
my $subscriptionid = 1;
19
my $subscriptioninformation = GetSubscription( $subscriptionid );
24
my $subscriptioninformation = GetSubscription( $subscriptionid );
20
$debug && warn Dump($subscriptioninformation);
25
$debug && warn Dump($subscriptioninformation);
Lines 97-99 is(C4::Serials::getsupplierbyserialid(),undef, 'test getting supplier idea'); Link Here
97
is(C4::Serials::check_routing(),"0", 'test checking route');
102
is(C4::Serials::check_routing(),"0", 'test checking route');
98
103
99
is(C4::Serials::addroutingmember(),undef, 'test adding route member');
104
is(C4::Serials::addroutingmember(),undef, 'test adding route member');
100
- 
105
106
107
subtest 'Filter items tests' => sub {
108
    
109
    plan tests => 4;
110
111
112
    # Start transaction
113
    $dbh->{AutoCommit} = 0;
114
    $dbh->{RaiseError} = 1;
115
116
    # Create a new biblio
117
    my ($biblionumber, $biblioitemnumber) = get_biblio();
118
119
    # Add items
120
	my ($item0_bibnum, $item0_bibitemnum, $item0_itemnumber) = AddItem(
121
            { homebranch => 'CPL',
122
              holdingbranch => 'CPL',
123
			  enumchron => 'Vol 2012 : No 1, Issuezz 1'},
124
            $biblionumber
125
    );
126
    my ($item1_bibnum, $item1_bibitemnum, $item1_itemnumber) = AddItem(
127
            { homebranch => 'CPL',
128
              holdingbranch => 'CPL',
129
			  enumchron => 'Vol 2013 : No 11, Issuezz 1'},
130
            $biblionumber
131
    );
132
    my ($item2_bibnum, $item2_bibitemnum, $item2_itemnumber) = AddItem(
133
            { homebranch => 'MPL',
134
              holdingbranch => 'MPL',
135
			  enumchron => 'Vol 2013 : No 11, Issuezz 2'},
136
            $biblionumber
137
    );
138
	my ($item3_bibnum, $item3_bibitemnum, $item3_itemnumber) = AddItem(
139
            { homebranch => 'CPL',
140
              holdingbranch => 'CPL',
141
			  enumchron => 'Vol 2013 : No 12, Issuezz 1'},
142
            $biblionumber
143
    );
144
    my ($item4_bibnum, $item4_bibitemnum, $item4_itemnumber) = AddItem(
145
            { homebranch => 'MPL',
146
              holdingbranch => 'MPL',
147
			  enumchron => 'Vol 2013 : No 12, Issuezz 2'},
148
            $biblionumber
149
    );
150
	my ($item5_bibnum, $item5_bibitemnum, $item5_itemnumber) = AddItem(
151
            { homebranch => 'MPL',
152
              holdingbranch => 'MPL',
153
			  enumchron => 'Vol 2014 : No 12, Issuezz 3'},
154
            $biblionumber
155
    );
156
    
157
	C4::Context->set_preference('NumberingFormulaParsingRegexp', '^[^0-9]*volume[^0-9]*number[^0-9]*issue[^0-9]*$');
158
	
159
    # Testing the volume filter
160
    my @shouldBe4Items = C4::Items::GetItemsInfo($biblionumber, {volume => '2013'});
161
    is( scalar(@shouldBe4Items), 4, "Filtering by volume");
162
    
163
    # Testing the number filter
164
    my @shouldBe3Items = C4::Items::GetItemsInfo($biblionumber, {number => '12'});
165
    is( scalar(@shouldBe3Items), 3, "Filtering by number");
166
	
167
	# Testing the issue filter
168
    my @shouldBe2Items = C4::Items::GetItemsInfo($biblionumber, {issue => '2'});
169
    is( scalar(@shouldBe2Items), 2, "Filtering by issue");
170
	
171
	# Testing the volume + number + issue filter
172
    my @shouldBeItem4 = C4::Items::GetItemsInfo($biblionumber, {volume => 2013, number => 12, issue => '2'});
173
    is( $shouldBeItem4[0]->{itemnumber}, $item4_itemnumber, "Filtering by volume + number + issue");
174
};
175
176
# Helper method to set up a Biblio.
177
sub get_biblio {
178
    my $bib = MARC::Record->new();
179
    $bib->append_fields(
180
        MARC::Field->new('100', ' ', ' ', a => 'Moffat, Steven'),
181
        MARC::Field->new('245', ' ', ' ', a => 'Silence in the library'),
182
    );
183
    my ($bibnum, $bibitemnum) = C4::Biblio::AddBiblio($bib, '');
184
    return ($bibnum, $bibitemnum);
185
}

Return to bug 11129