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

(-)a/acqui/finishreceive.pl (-2 / +1 lines)
Lines 69-75 if ($quantityrec > $origquantityrec ) { Link Here
69
            for my $in ( @received_items ) {
69
            for my $in ( @received_items ) {
70
                my $item = C4::Items::GetMarcItem( $biblionumber, $in );
70
                my $item = C4::Items::GetMarcItem( $biblionumber, $in );
71
                for my $affect ( @affects ) {
71
                for my $affect ( @affects ) {
72
                    my ( $sf, $v ) = split q{=}, $affect;
72
                    my ( $sf, $v ) = split q{=}, $affect, 2;
73
                    foreach ( $item->field($itemfield) ) {
73
                    foreach ( $item->field($itemfield) ) {
74
                        $_->update( $sf => $v );
74
                        $_->update( $sf => $v );
75
                    }
75
                    }
76
- 

Return to bug 8307