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

(-)a/circ/returns.pl (+5 lines)
Lines 343-348 if ($barcode) { Link Here
343
                );
343
                );
344
            }
344
            }
345
        }
345
        }
346
    } elsif ( C4::Context->preference('ShowAllCheckins') and !$messages->{'BadBarcode'} ) {
347
        $input{duedate}   = 0;
348
        $returneditems{0} = $barcode;
349
        $riduedate{0}     = 0;
350
        push( @inputloop, \%input );
346
    }
351
    }
347
    $template->param( privacy => $borrower->{privacy} );
352
    $template->param( privacy => $borrower->{privacy} );
348
}
353
}
(-)a/installer/data/mysql/atomicupdate/bug_15736.sql (+1 lines)
Line 0 Link Here
1
INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES ('ShowAllCheckins', '0', '', 'Show all checkins', 'YesNo');
(-)a/installer/data/mysql/sysprefs.sql (+1 lines)
Lines 418-423 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
418
('ShelfBrowserUsesCcode','1','0','Use the item collection code when finding items for the shelf browser.','YesNo'),
418
('ShelfBrowserUsesCcode','1','0','Use the item collection code when finding items for the shelf browser.','YesNo'),
419
('ShelfBrowserUsesHomeBranch','1','1','Use the item home branch when finding items for the shelf browser.','YesNo'),
419
('ShelfBrowserUsesHomeBranch','1','1','Use the item home branch when finding items for the shelf browser.','YesNo'),
420
('ShelfBrowserUsesLocation','1','1','Use the item location when finding items for the shelf browser.','YesNo'),
420
('ShelfBrowserUsesLocation','1','1','Use the item location when finding items for the shelf browser.','YesNo'),
421
('ShowAllCheckins', '0', '', 'Show all checkins', 'YesNo'),
421
('ShowPatronImageInWebBasedSelfCheck','0','','If ON, displays patron image when a patron uses web-based self-checkout','YesNo'),
422
('ShowPatronImageInWebBasedSelfCheck','0','','If ON, displays patron image when a patron uses web-based self-checkout','YesNo'),
422
('ShowReviewer','full','none|full|first|surname|firstandinitial|username','Choose how a commenter\'s identity is presented alongside comments in the OPAC','Choice'),
423
('ShowReviewer','full','none|full|first|surname|firstandinitial|username','Choose how a commenter\'s identity is presented alongside comments in the OPAC','Choice'),
423
('ShowReviewerPhoto','1','','If ON, photo of reviewer will be shown beside comments in OPAC','YesNo'),
424
('ShowReviewerPhoto','1','','If ON, photo of reviewer will be shown beside comments in OPAC','YesNo'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-1 / +6 lines)
Lines 130-135 Circulation: Link Here
130
                  yes: Enable
130
                  yes: Enable
131
                  no: "Do not enable"
131
                  no: "Do not enable"
132
            - "offline circulation on regular circulation computers. (NOTE: This system preference does not affect the Firefox plugin or the desktop application)"
132
            - "offline circulation on regular circulation computers. (NOTE: This system preference does not affect the Firefox plugin or the desktop application)"
133
        -
134
            - pref: ShowAllCheckins
135
              choices:
136
                  yes: Show
137
                  no: "Do not show"
138
            - all checkins, even items that were not checked out.
133
139
134
    Checkout Policy:
140
    Checkout Policy:
135
        -
141
        -
136
- 

Return to bug 15736