Lines 610-616
sub GetMember {
Link Here
|
610 |
|
610 |
|
611 |
C<GetMemberRelatives> returns a borrowersnumber's list of guarantor/guarantees of the member given in parameter |
611 |
C<GetMemberRelatives> returns a borrowersnumber's list of guarantor/guarantees of the member given in parameter |
612 |
|
612 |
|
613 |
=cut |
613 |
=cut |
|
|
614 |
|
614 |
sub GetMemberRelatives { |
615 |
sub GetMemberRelatives { |
615 |
my $borrowernumber = shift; |
616 |
my $borrowernumber = shift; |
616 |
my $dbh = C4::Context->dbh; |
617 |
my $dbh = C4::Context->dbh; |
Lines 1675-1680
sub GetBorrowercategory {
Link Here
|
1675 |
$categorycode = &GetBorrowerCategoryCode( $borrowernumber ); |
1676 |
$categorycode = &GetBorrowerCategoryCode( $borrowernumber ); |
1676 |
|
1677 |
|
1677 |
Given the borrowernumber, the function returns the corresponding categorycode |
1678 |
Given the borrowernumber, the function returns the corresponding categorycode |
|
|
1679 |
|
1678 |
=cut |
1680 |
=cut |
1679 |
|
1681 |
|
1680 |
sub GetBorrowerCategorycode { |
1682 |
sub GetBorrowerCategorycode { |
Lines 2228-2244
sub GetBorrowersNamesAndLatestIssue {
Link Here
|
2228 |
|
2230 |
|
2229 |
=head2 ModPrivacy |
2231 |
=head2 ModPrivacy |
2230 |
|
2232 |
|
2231 |
=over 4 |
2233 |
my $success = ModPrivacy( $borrowernumber, $privacy ); |
2232 |
|
|
|
2233 |
my $success = ModPrivacy( $borrowernumber, $privacy ); |
2234 |
|
2234 |
|
2235 |
Update the privacy of a patron. |
2235 |
Update the privacy of a patron. |
2236 |
|
2236 |
|
2237 |
return : |
2237 |
return : |
2238 |
true on success, false on failure |
2238 |
true on success, false on failure |
2239 |
|
2239 |
|
2240 |
=back |
|
|
2241 |
|
2242 |
=cut |
2240 |
=cut |
2243 |
|
2241 |
|
2244 |
sub ModPrivacy { |
2242 |
sub ModPrivacy { |
2245 |
- |
|
|