|
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 1676-1681
sub GetBorrowercategory {
Link Here
|
| 1676 |
$categorycode = &GetBorrowerCategoryCode( $borrowernumber ); |
1677 |
$categorycode = &GetBorrowerCategoryCode( $borrowernumber ); |
| 1677 |
|
1678 |
|
| 1678 |
Given the borrowernumber, the function returns the corresponding categorycode |
1679 |
Given the borrowernumber, the function returns the corresponding categorycode |
|
|
1680 |
|
| 1679 |
=cut |
1681 |
=cut |
| 1680 |
|
1682 |
|
| 1681 |
sub GetBorrowerCategorycode { |
1683 |
sub GetBorrowerCategorycode { |
|
Lines 2224-2240
sub GetBorrowersNamesAndLatestIssue {
Link Here
|
| 2224 |
|
2226 |
|
| 2225 |
=head2 ModPrivacy |
2227 |
=head2 ModPrivacy |
| 2226 |
|
2228 |
|
| 2227 |
=over 4 |
2229 |
my $success = ModPrivacy( $borrowernumber, $privacy ); |
| 2228 |
|
|
|
| 2229 |
my $success = ModPrivacy( $borrowernumber, $privacy ); |
| 2230 |
|
2230 |
|
| 2231 |
Update the privacy of a patron. |
2231 |
Update the privacy of a patron. |
| 2232 |
|
2232 |
|
| 2233 |
return : |
2233 |
return : |
| 2234 |
true on success, false on failure |
2234 |
true on success, false on failure |
| 2235 |
|
2235 |
|
| 2236 |
=back |
|
|
| 2237 |
|
| 2238 |
=cut |
2236 |
=cut |
| 2239 |
|
2237 |
|
| 2240 |
sub ModPrivacy { |
2238 |
sub ModPrivacy { |
| 2241 |
- |
|
|