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

(-)a/installer/data/mysql/sysprefs.sql (-2 / +1 lines)
Lines 408-419 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
408
('TrackClicks','0',NULL,'Track links clicked','Integer'),
408
('TrackClicks','0',NULL,'Track links clicked','Integer'),
409
('TransfersMaxDaysWarning','3',NULL,'Define the days before a transfer is suspected of having a problem','Integer'),
409
('TransfersMaxDaysWarning','3',NULL,'Define the days before a transfer is suspected of having a problem','Integer'),
410
('TransferWhenCancelAllWaitingHolds','0',NULL,'Transfer items when cancelling all waiting holds','YesNo'),
410
('TransferWhenCancelAllWaitingHolds','0',NULL,'Transfer items when cancelling all waiting holds','YesNo'),
411
('UpdateNotForLoanStatusOnCheckin', '', 'NULL', 'This is a list of value pairs. When an item is checked in, if the not for loan value on the left matches the items not for loan value it will be updated to the right-hand value. E.g. ''-1: 0'' will cause an item that was set to ''Ordered'' to now be available for loan. Each pair of values should be on a separate line.', 'Free'),
412
('UNIMARCAuthorityField100','afrey50      ba0',NULL,'Define the contents of UNIMARC authority control field 100 position 08-35','Textarea'),
411
('UNIMARCAuthorityField100','afrey50      ba0',NULL,'Define the contents of UNIMARC authority control field 100 position 08-35','Textarea'),
413
('UNIMARCAuthorityField100','afrey50      ba0',NULL,NULL,'Textarea'),
414
('UNIMARCAuthorsFacetsSeparator',', ',NULL,'UNIMARC authors facets separator','short'),
412
('UNIMARCAuthorsFacetsSeparator',', ',NULL,'UNIMARC authors facets separator','short'),
415
('UNIMARCField100Language','fre',NULL,'UNIMARC field 100 default language','short'),
413
('UNIMARCField100Language','fre',NULL,'UNIMARC field 100 default language','short'),
416
('UniqueItemFields','barcode','','Space-separated list of fields that should be unique (used in acquisition module for item creation). Fields must be valid SQL column names of items table','Free'),
414
('UniqueItemFields','barcode','','Space-separated list of fields that should be unique (used in acquisition module for item creation). Fields must be valid SQL column names of items table','Free'),
415
('UpdateNotForLoanStatusOnCheckin', '', 'NULL', 'This is a list of value pairs. When an item is checked in, if the not for loan value on the left matches the items not for loan value it will be updated to the right-hand value. E.g. ''-1: 0'' will cause an item that was set to ''Ordered'' to now be available for loan. Each pair of values should be on a separate line.', 'Free'),
417
('UpdateTotalIssuesOnCirc','0',NULL,'Whether to update the totalissues field in the biblio on each circ.','YesNo'),
416
('UpdateTotalIssuesOnCirc','0',NULL,'Whether to update the totalissues field in the biblio on each circ.','YesNo'),
418
('uppercasesurnames','0',NULL,'If ON, surnames are converted to upper case in patron entry form','YesNo'),
417
('uppercasesurnames','0',NULL,'If ON, surnames are converted to upper case in patron entry form','YesNo'),
419
('URLLinkText','',NULL,'Text to display as the link anchor in the OPAC','free'),
418
('URLLinkText','',NULL,'Text to display as the link anchor in the OPAC','free'),
(-)a/t/db_dependent/Circulation_issue.t (-2 / +2 lines)
Lines 342-348 AddReturn('barcode_1', undef, undef, undef, '2014-04-01 23:42'); Link Here
342
$return = $dbh->selectrow_hashref("SELECT * FROM old_issues LIMIT 1" );
342
$return = $dbh->selectrow_hashref("SELECT * FROM old_issues LIMIT 1" );
343
ok( $return->{returndate} eq '2014-04-01 23:42:00', "Item returned with a return date of '2014-04-01 23:42' has that return date" );
343
ok( $return->{returndate} eq '2014-04-01 23:42:00', "Item returned with a return date of '2014-04-01 23:42' has that return date" );
344
344
345
my ($biblionumber, $biblioitemnumber, $itemnumber) = C4::Items::AddItem(
345
my $itemnumber;
346
($biblionumber, $biblioitemnumber, $itemnumber) = C4::Items::AddItem(
346
    {
347
    {
347
        barcode        => 'barcode_3',
348
        barcode        => 'barcode_3',
348
        itemcallnumber => 'callnumber3',
349
        itemcallnumber => 'callnumber3',
349
- 

Return to bug 11629