Lines 17-23
Link Here
|
17 |
|
17 |
|
18 |
use Modern::Perl; |
18 |
use Modern::Perl; |
19 |
|
19 |
|
20 |
use Test::More tests => 32; |
20 |
use Test::More tests => 44; |
21 |
use DateTime::Duration; |
21 |
use DateTime::Duration; |
22 |
|
22 |
|
23 |
use t::lib::Mocks; |
23 |
use t::lib::Mocks; |
Lines 370-375
AddReturn( 'barcode_3', $branchcode_1 );
Link Here
|
370 |
$item = GetItem( $itemnumber ); |
370 |
$item = GetItem( $itemnumber ); |
371 |
ok( $item->{notforloan} eq 9, q{UpdateNotForLoanStatusOnCheckin does not update notforloan value from 9 with setting "1: 9"} ); |
371 |
ok( $item->{notforloan} eq 9, q{UpdateNotForLoanStatusOnCheckin does not update notforloan value from 9 with setting "1: 9"} ); |
372 |
|
372 |
|
|
|
373 |
my $itemnumber2; |
374 |
($biblionumber, $biblioitemnumber, $itemnumber2) = C4::Items::AddItem( |
375 |
{ |
376 |
barcode => 'barcode_4', |
377 |
itemcallnumber => 'callnumber4', |
378 |
homebranch => $branchcode_1, |
379 |
holdingbranch => $branchcode_1, |
380 |
location => 'FIC', |
381 |
itype => $itemtype |
382 |
}, |
383 |
$biblionumber |
384 |
); |
385 |
|
386 |
t::lib::Mocks::mock_preference( 'UpdateItemLocationOnCheckin', q{} ); |
387 |
AddReturn( 'barcode_4', $branchcode_1 ); |
388 |
my $item2 = GetItem( $itemnumber2 ); |
389 |
ok( $item2->{location} eq 'FIC', 'UpdateItemLocationOnCheckin does not modify value when not enabled' ); |
390 |
|
391 |
t::lib::Mocks::mock_preference( 'UpdateItemLocationOnCheckin', 'FIC: GEN' ); |
392 |
AddReturn( 'barcode_4', $branchcode_1 ); |
393 |
$item2 = GetItem( $itemnumber2 ); |
394 |
ok( $item2->{location} eq 'GEN', q{UpdateItemLocationOnCheckin updates location value from 'FIC' to 'GEN' with setting "FIC: GEN"} ); |
395 |
ok( $item2->{permanent_location} eq 'GEN', q{UpdateItemLocationOnCheckin updates permanent_location value from 'FIC' to 'GEN' with setting "FIC: GEN"} ); |
396 |
AddReturn( 'barcode_4', $branchcode_1 ); |
397 |
$item2 = GetItem( $itemnumber2 ); |
398 |
ok( $item2->{location} eq 'GEN', q{UpdateItemLocationOnCheckin does not update location value from 'GEN' with setting "FIC: GEN"} ); |
399 |
|
400 |
t::lib::Mocks::mock_preference( 'UpdateItemLocationOnCheckin', '_ALL_: CART' ); |
401 |
AddReturn( 'barcode_4', $branchcode_1 ); |
402 |
$item2 = GetItem( $itemnumber2 ); |
403 |
ok( $item2->{location} eq 'CART', q{UpdateItemLocationOnCheckin updates location value from 'GEN' with setting "_ALL_: CART"} ); |
404 |
ok( $item2->{permanent_location} eq 'GEN', q{UpdateItemLocationOnCheckin does not update permanent_location value from 'GEN' with setting "_ALL_: CART"} ); |
405 |
AddIssue( $borrower_1, 'barcode_4', $daysago10,0, $today, '' ); |
406 |
$item2 = GetItem( $itemnumber2 ); |
407 |
ok( $item2->{location} eq 'GEN', q{Location updates from 'CART' to permanent location on issue} ); |
408 |
|
409 |
t::lib::Mocks::mock_preference( 'UpdateItemLocationOnCheckin', "GEN: _BLANK_\n_BLANK_: PROC\nPROC: _PERM_" ); |
410 |
AddReturn( 'barcode_4', $branchcode_1 ); |
411 |
$item2 = GetItem( $itemnumber2 ); |
412 |
ok( $item2->{location} eq '', q{UpdateItemLocationOnCheckin updates location value from 'GEN' to '' with setting "GEN: _BLANK_"} ); |
413 |
AddReturn( 'barcode_4', $branchcode_1 ); |
414 |
$item2 = GetItem( $itemnumber2 ); |
415 |
ok( $item2->{location} eq 'PROC' , q{UpdateItemLocationOnCheckin updates location value from '' to 'PROC' with setting "_BLANK_: PROC"} ); |
416 |
ok( $item2->{permanent_location} eq '' , q{UpdateItemLocationOnCheckin does not update permanent_location value from '' to 'PROC' with setting "_BLANK_: PROC"} ); |
417 |
AddReturn( 'barcode_4', $branchcode_1 ); |
418 |
$item2 = GetItem( $itemnumber2 ); |
419 |
ok( $item2->{location} eq '' , q{UpdateItemLocationOnCheckin updates location value from 'PROC' to '' with setting "PROC: _PERM_" } ); |
420 |
ok( $item2->{permanent_location} eq '' , q{UpdateItemLocationOnCheckin does not update permanent_location from '' with setting "PROC: _PERM_" } ); |
421 |
|
422 |
|
423 |
|
424 |
|
373 |
# Bug 14640 - Cancel the hold on checking out if asked |
425 |
# Bug 14640 - Cancel the hold on checking out if asked |
374 |
my $reserve_id = AddReserve($branchcode_1, $borrower_id1, $biblionumber, |
426 |
my $reserve_id = AddReserve($branchcode_1, $borrower_id1, $biblionumber, |
375 |
undef, 1, undef, undef, "a note", "a title", undef, ''); |
427 |
undef, 1, undef, undef, "a note", "a title", undef, ''); |