Lines 47-53
my $patron = $builder->build_object(
Link Here
|
47 |
{ |
47 |
{ |
48 |
class => 'Koha::Patrons', |
48 |
class => 'Koha::Patrons', |
49 |
value => { |
49 |
value => { |
50 |
patron_category => $patron_category->{categorycode}, |
50 |
categorycode => $patron_category->{categorycode}, |
51 |
} |
51 |
} |
52 |
} |
52 |
} |
53 |
); |
53 |
); |
Lines 56-62
my $guarantee = $builder->build(
Link Here
|
56 |
source => 'Borrower', |
56 |
source => 'Borrower', |
57 |
value => { |
57 |
value => { |
58 |
guarantorid => $patron->borrowernumber, |
58 |
guarantorid => $patron->borrowernumber, |
59 |
patron_category => $patron_category->{categorycode}, |
59 |
categorycode => $patron_category->{categorycode}, |
60 |
} |
60 |
} |
61 |
} |
61 |
} |
62 |
); |
62 |
); |
63 |
- |
|
|