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

(-)a/C4/Circulation.pm (-8 / +14 lines)
Lines 3062-3068 sub ReturnLostItem{ Link Here
3062
3062
3063
3063
3064
sub LostItem{
3064
sub LostItem{
3065
    my ($itemnumber, $mark_returned, $charge_fee) = @_;
3065
    my ($itemnumber, $mark_returned ) = @_;
3066
3066
3067
    my $dbh = C4::Context->dbh();
3067
    my $dbh = C4::Context->dbh();
3068
    my $sth=$dbh->prepare("SELECT issues.*,items.*,biblio.title 
3068
    my $sth=$dbh->prepare("SELECT issues.*,items.*,biblio.title 
Lines 3076-3088 sub LostItem{ Link Here
3076
3076
3077
    # if a borrower lost the item, add a replacement cost to the their record
3077
    # if a borrower lost the item, add a replacement cost to the their record
3078
    if ( my $borrowernumber = $issues->{borrowernumber} ){
3078
    if ( my $borrowernumber = $issues->{borrowernumber} ){
3079
3079
		if (C4::Context->preference('ForgiveFineWhenLost')){
3080
        C4::Accounts::chargelostitem($borrowernumber, $itemnumber, $issues->{'replacementprice'}, "Lost Item $issues->{'title'} $issues->{'barcode'}")
3080
			my $exemptfine=1;
3081
          if $charge_fee;
3081
			my $dropbox=0;
3082
        #FIXME : Should probably have a way to distinguish this from an item that really was returned.
3082
			my $fix = _FixOverduesOnReturn($borrowernumber, $itemnumber, $exemptfine, $dropbox);
3083
        #warn " $issues->{'borrowernumber'}  /  $itemnumber ";
3083
			defined($fix) or warn "_FixOverduesOnReturn($borrowernumber, $itemnumber...) failed!";  # zero is OK, check defined
3084
        MarkIssueReturned($borrowernumber,$itemnumber) if $mark_returned;
3084
		}
3085
    }
3085
		if (C4::Context->preference('ChargeReplFeeWhenLost')){
3086
			C4::Accounts::chargelostitem($borrowernumber, $itemnumber, $issues->{'replacementprice'}, "Lost Item $issues->{'title'} $issues->{'barcode'}");
3087
			#FIXME : Should probably have a way to distinguish this from an item that really was returned.
3088
			#warn " $issues->{'borrowernumber'}  /  $itemnumber ";
3089
		}
3090
		MarkIssueReturned($borrowernumber,$itemnumber) if $mark_returned;
3091
	}
3086
}
3092
}
3087
3093
3088
sub GetOfflineOperations {
3094
sub GetOfflineOperations {
(-)a/catalogue/updateitem.pl (-1 / +1 lines)
Lines 74-79 if (defined $itemnotes) { # i.e., itemnotes parameter passed from form Link Here
74
74
75
ModItem($item_changes, $biblionumber, $itemnumber);
75
ModItem($item_changes, $biblionumber, $itemnumber);
76
76
77
LostItem($itemnumber, 'MARK RETURNED', 'CHARGE FEE') if $itemlost;
77
LostItem($itemnumber, 'MARK RETURNED') if $itemlost;
78
78
79
print $cgi->redirect("moredetail.pl?biblionumber=$biblionumber&itemnumber=$itemnumber#item$itemnumber");
79
print $cgi->redirect("moredetail.pl?biblionumber=$biblionumber&itemnumber=$itemnumber#item$itemnumber");
(-)a/cataloguing/additem.pl (+7 lines)
Lines 27-32 use C4::Output; Link Here
27
use C4::Biblio;
27
use C4::Biblio;
28
use C4::Items;
28
use C4::Items;
29
use C4::Context;
29
use C4::Context;
30
use C4::Circulation;
30
use C4::Koha; # XXX subfield_is_koha_internal_p
31
use C4::Koha; # XXX subfield_is_koha_internal_p
31
use C4::Branch; # XXX subfield_is_koha_internal_p
32
use C4::Branch; # XXX subfield_is_koha_internal_p
32
use C4::ClassSource;
33
use C4::ClassSource;
Lines 519-524 if ($op eq "additem") { Link Here
519
        ModItemFromMarc($itemtosave,$biblionumber,$itemnumber);
520
        ModItemFromMarc($itemtosave,$biblionumber,$itemnumber);
520
        $itemnumber="";
521
        $itemnumber="";
521
    }
522
    }
523
	my $item = GetItem( $itemnumber );
524
    my $olditemlost =  $item->{'itemlost'};
525
    my $newitemlost = $itemtosave->subfield('952','1');  
526
    if (($olditemlost eq '0' or $olditemlost eq '' ) and $newitemlost ge '1'){
527
	LostItem($itemnumber,'MARK RETURNED');
528
    }
522
    $nextop="additem";
529
    $nextop="additem";
523
} elsif ($op eq "delinkitem"){
530
} elsif ($op eq "delinkitem"){
524
    my $analyticfield = '773';
531
    my $analyticfield = '773';
(-)a/installer/data/mysql/sysprefs.sql (+2 lines)
Lines 34-39 INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES Link Here
34
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('expandedSearchOption',0,'If ON, set advanced search to be expanded by default',NULL,'YesNo');
34
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('expandedSearchOption',0,'If ON, set advanced search to be expanded by default',NULL,'YesNo');
35
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('FineNotifyAtCheckin',0,'If ON notify librarians of overdue fines on the items they are checking in.',NULL,'YesNo');
35
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('FineNotifyAtCheckin',0,'If ON notify librarians of overdue fines on the items they are checking in.',NULL,'YesNo');
36
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('FinesLog',1,'If ON, log fines',NULL,'YesNo');
36
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('FinesLog',1,'If ON, log fines',NULL,'YesNo');
37
INSERT INTO `systempreferences` (variable,value,options,explanation,type) VALUES('ForgiveFineWhenLost','0',NULL,'If ON, Forgives the fines on an item when it is lost.','YesNo');
38
INSERT INTO `systempreferences` (variable,value,options,explanation,type) VALUES('ChargeReplFeeWhenLost','0',NULL,'If ON, Charge the replacement price when a patron loses an item.','YesNo');
37
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('hidelostitems',0,'If ON, disables display of\"lost\" items in OPAC.','','YesNo');
39
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('hidelostitems',0,'If ON, disables display of\"lost\" items in OPAC.','','YesNo');
38
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('hide_marc',0,'If ON, disables display of MARC fields, subfield codes & indicators (still shows data)',NULL,'YesNo');
40
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('hide_marc',0,'If ON, disables display of MARC fields, subfield codes & indicators (still shows data)',NULL,'YesNo');
39
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('WaitingNotifyAtCheckin',0,'If ON, notify librarians of waiting holds for the patron whose items they are checking in.',NULL,'YesNo');
41
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('WaitingNotifyAtCheckin',0,'If ON, notify librarians of waiting holds for the patron whose items they are checking in.',NULL,'YesNo');
(-)a/installer/data/mysql/updatedatabase.pl (+8 lines)
Lines 5198-5203 if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { Link Here
5198
    SetVersion($DBversion);
5198
    SetVersion($DBversion);
5199
}
5199
}
5200
5200
5201
$DBversion = "3.07.00.50";
5202
if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
5203
    $dbh->do("INSERT INTO systempreferences (variable,value,options,explanation,type) VALUES('ForgiveFineWhenLost','0',NULL,'If ON, Forgives the fines on an item when it is lost.','YesNo')");
5204
    $dbh->do("INSERT INTO systempreferences (variable,value,options,explanation,type) VALUES('ChargeReplFeeWhenLost','0',NULL,'If ON, Charge the replacement price when a patron loses an item.','YesNo')");
5205
    print "Upgrade to $DBversion done (Added sysprefs ForgiveFineWhenLost and ChargeReplFeeWhenLost)\n";
5206
    SetVersion ($DBversion);
5207
}
5208
5201
5209
5202
=head1 FUNCTIONS
5210
=head1 FUNCTIONS
5203
5211
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (+12 lines)
Lines 367-372 Circulation: Link Here
367
                  test: Calculate (but only for mailing to the admin)
367
                  test: Calculate (but only for mailing to the admin)
368
                  production: Calculate and charge
368
                  production: Calculate and charge
369
            - fines (when <code>misc/cronjobs/fines.pl</code> is being run).
369
            - fines (when <code>misc/cronjobs/fines.pl</code> is being run).
370
        -
371
            - pref: ForgiveFineWhenLost
372
              choices:
373
                  yes: Forgive
374
                  no: "Don't Forgive"
375
            - the fines on an item when it is lost.
376
        -
377
            - pref: ChargeReplFeeWhenLost
378
              choices:
379
                  yes: Charge
380
                  no: "Don't Charge"
381
            - the replacement price when a patron loses an item.
370
    Self Checkout:
382
    Self Checkout:
371
        -
383
        -
372
            - pref: ShowPatronImageInWebBasedSelfCheck
384
            - pref: ShowPatronImageInWebBasedSelfCheck
(-)a/tools/batchMod.pl (-2 / +1 lines)
Lines 188-194 if ($op eq "action") { Link Here
188
			UpdateMarcWith( $marcitem, $localmarcitem );
188
			UpdateMarcWith( $marcitem, $localmarcitem );
189
			eval{
189
			eval{
190
                            if ( my $item = ModItemFromMarc( $localmarcitem, $itemdata->{biblionumber}, $itemnumber ) ) {
190
                            if ( my $item = ModItemFromMarc( $localmarcitem, $itemdata->{biblionumber}, $itemnumber ) ) {
191
                                LostItem($itemnumber, 'MARK RETURNED', 'CHARGE FEE') if $item->{itemlost};
191
                                LostItem($itemnumber, 'MARK RETURNED') if $item->{itemlost};
192
                            }
192
                            }
193
                        };
193
                        };
194
		    }
194
		    }
195
- 

Return to bug 7639