|
Lines 89-95
sub housebound_profile {
Link Here
|
| 89 |
my $profile = $self->_result->housebound_profile; |
89 |
my $profile = $self->_result->housebound_profile; |
| 90 |
return Koha::Patron::HouseboundProfile->_new_from_dbic($profile) |
90 |
return Koha::Patron::HouseboundProfile->_new_from_dbic($profile) |
| 91 |
if ( $profile ); |
91 |
if ( $profile ); |
| 92 |
return 0; |
92 |
return; |
| 93 |
} |
93 |
} |
| 94 |
|
94 |
|
| 95 |
=head3 housebound_role |
95 |
=head3 housebound_role |
|
Lines 103-109
sub housebound_role {
Link Here
|
| 103 |
|
103 |
|
| 104 |
my $role = $self->_result->housebound_role; |
104 |
my $role = $self->_result->housebound_role; |
| 105 |
return Koha::Patron::HouseboundRole->_new_from_dbic($role) if ( $role ); |
105 |
return Koha::Patron::HouseboundRole->_new_from_dbic($role) if ( $role ); |
| 106 |
return 0; |
106 |
return; |
| 107 |
} |
107 |
} |
| 108 |
|
108 |
|
| 109 |
=head3 siblings |
109 |
=head3 siblings |
| 110 |
- |
|
|