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

(-)a/installer/data/mysql/atomicupdate/bug_23916_add_RecordIssuer_syspref.perl (+8 lines)
Line 0 Link Here
1
$DBversion = 'XXX'; # will be replaced by the RM
2
if( CheckVersion( $DBversion ) ) {
3
4
    $dbh->do( q| INSERT IGNORE INTO systempreferences (variable, value, explanation, options, type) VALUES ('RecordIssuer', '0', 'If enabled, when an item is issued, the user who issued the item is recorded', '', 'YesNo'); | );
5
6
    SetVersion( $DBversion );
7
    print "Upgrade to $DBversion done (Bug 23916 - Add RecordIssuer syspref)\n";
8
}
(-)a/installer/data/mysql/sysprefs.sql (+1 lines)
Lines 511-516 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
511
('QueryWeightFields','1',NULL,'If ON, enables field weighting','YesNo'),
511
('QueryWeightFields','1',NULL,'If ON, enables field weighting','YesNo'),
512
('QuoteOfTheDay','0',NULL,'Enable or disable display of Quote of the Day on the OPAC home page','YesNo'),
512
('QuoteOfTheDay','0',NULL,'Enable or disable display of Quote of the Day on the OPAC home page','YesNo'),
513
('RandomizeHoldsQueueWeight','0',NULL,'if ON, the holds queue in circulation will be randomized, either based on all location codes, or by the location codes specified in StaticHoldsQueueWeight','YesNo'),
513
('RandomizeHoldsQueueWeight','0',NULL,'if ON, the holds queue in circulation will be randomized, either based on all location codes, or by the location codes specified in StaticHoldsQueueWeight','YesNo'),
514
('RecordIssuer','0',NULL,'If ON, when an item is issued, the user who issued the item is recorded','YesNo'),
514
('RecordLocalUseOnReturn','0',NULL,'If ON, statistically record returns of unissued items as local use, instead of return','YesNo'),
515
('RecordLocalUseOnReturn','0',NULL,'If ON, statistically record returns of unissued items as local use, instead of return','YesNo'),
515
('RefundLostOnReturnControl','CheckinLibrary','CheckinLibrary|ItemHomeBranch|ItemHoldingBranch','If a lost item is returned, choose which branch to pick rules for refunding.','Choice'),
516
('RefundLostOnReturnControl','CheckinLibrary','CheckinLibrary|ItemHomeBranch|ItemHoldingBranch','If a lost item is returned, choose which branch to pick rules for refunding.','Choice'),
516
('RenewalLog','0','','If ON, log information about renewals','YesNo'),
517
('RenewalLog','0','','If ON, log information about renewals','YesNo'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-1 / +7 lines)
Lines 424-429 Circulation: Link Here
424
                  nothing : "do nothing"
424
                  nothing : "do nothing"
425
            - .
425
            - .
426
        -
426
        -
427
            - "When issuing an item, "
428
            - pref: RecordIssuer
429
              choices:
430
                  yes: "record"
431
                  no: "don't record"
432
            - "the user who issued the item."
433
        -
427
            - "Mark items as returned when flagged as lost "
434
            - "Mark items as returned when flagged as lost "
428
            - pref: MarkLostItemsAsReturned
435
            - pref: MarkLostItemsAsReturned
429
              multiple:
436
              multiple:
430
- 

Return to bug 23916