Lines 378-384
test_it($cpvPmappings, "PostReturn");
Link Here
|
378 |
# - $checkprevcheckout pref (first hardno, then hardyes) |
378 |
# - $checkprevcheckout pref (first hardno, then hardyes) |
379 |
|
379 |
|
380 |
# Our Patron |
380 |
# Our Patron |
381 |
my $CBBI_patron = $builder->build({source => 'Borrower'}); |
381 |
my $patron_category = $builder->build({ source => 'Category', value => { category_type => 'P', enrolmentfee => 0 } }); |
|
|
382 |
my $CBBI_patron = $builder->build({source => 'Borrower', value => { categorycode => $patron_category->{categorycode} }}); |
382 |
$patron = Koha::Patrons->find( $CBBI_patron->{borrowernumber} ); |
383 |
$patron = Koha::Patrons->find( $CBBI_patron->{borrowernumber} ); |
383 |
# Our Items |
384 |
# Our Items |
384 |
|
385 |
|
385 |
- |
|
|