3 # Copyright 2012 BibLibre
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
23 # Modification for patron's fields:
24 # surname firstname branchcode categorycode city state zipcode country sort1
25 # sort2 dateenrolled dateexpiry borrowernotes
26 # And for patron attributes.
34 use C4
::Members
::Attributes
;
35 use C4
::Members
::AttributeTypes qw
/GetAttributeTypes_hashref/;
37 use List
::MoreUtils qw
/any uniq/;
38 use Koha
::DateUtils
qw( dt_from_string );
39 use Koha
::List
::Patron
;
42 my $op = $input->param('op') || 'show_form';
43 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
44 { template_name
=> "tools/modborrowers.tt",
48 flagsrequired
=> { tools
=> "edit_patrons" },
52 my %cookies = parse CGI
::Cookie
($cookie);
53 my $sessionID = $cookies{'CGISESSID'}->value;
54 my $dbh = C4
::Context
->dbh;
56 # Show borrower informations
57 if ( $op eq 'show' ) {
58 my $filefh = $input->upload('uploadfile');
59 my $filecontent = $input->param('filecontent');
60 my $patron_list_id = $input->param('patron_list_id');
63 my @notfoundcardnumbers;
65 # Get cardnumbers from a file or the input area
68 while ( my $content = <$filefh> ) {
69 $content =~ s/[\r\n]*$//g;
70 push @cardnumbers, $content if $content;
72 } elsif ( $patron_list_id ) {
73 my ($list) = GetPatronLists
( { patron_list_id
=> $patron_list_id } );
76 $list->patron_list_patrons()->search_related('borrowernumber')
77 ->get_column('cardnumber')->all();
80 if ( my $list = $input->param('cardnumberlist') ) {
81 push @cardnumbers, split( /\s\n/, $list );
86 for my $cardnumber ( @cardnumbers ) {
87 my $borrower = GetBorrowerInfos
( cardnumber
=> $cardnumber );
89 $max_nb_attr = scalar( @
{ $borrower->{patron_attributes
} } )
90 if scalar( @
{ $borrower->{patron_attributes
} } ) > $max_nb_attr;
91 push @borrowers, $borrower;
93 push @notfoundcardnumbers, $cardnumber;
97 # Just for a correct display
98 for my $borrower ( @borrowers ) {
99 my $length = scalar( @
{ $borrower->{patron_attributes
} } );
100 push @
{ $borrower->{patron_attributes
} }, {} for ( $length .. $max_nb_attr - 1);
103 # Construct the patron attributes list
104 my @patron_attributes_values;
105 my @patron_attributes_codes;
106 my $patron_attribute_types = C4
::Members
::AttributeTypes
::GetAttributeTypes_hashref
('all');
107 my $patron_categories = C4
::Members
::GetBorrowercategoryList
;
108 for ( values %$patron_attribute_types ) {
109 my $attr_type = C4
::Members
::AttributeTypes
->fetch( $_->{code
} );
110 # TODO Repeatable attributes are not correctly managed and can cause data lost.
111 # This should be implemented.
112 next if $attr_type->{repeatable
};
113 my $options = $attr_type->authorised_value_category
114 ? GetAuthorisedValues
( $attr_type->authorised_value_category )
116 push @patron_attributes_values,
118 attribute_code
=> $_->{code
},
122 my $category_code = $_->{category_code
};
123 my ( $category_lib ) = map {
124 ( defined $category_code and $_->{categorycode
} eq $category_code ) ?
$_->{description
} : ()
125 } @
$patron_categories;
126 push @patron_attributes_codes,
128 attribute_code
=> $_->{code
},
129 attribute_lib
=> $_->{description
},
130 category_lib
=> $category_lib,
131 type
=> $attr_type->authorised_value_category ?
'select' : 'text',
135 my @attributes_header = ();
136 for ( 1 .. scalar( $max_nb_attr ) ) {
137 push @attributes_header, { attribute
=> "Attributes $_" };
139 $template->param( borrowers
=> \
@borrowers );
140 $template->param( attributes_header
=> \
@attributes_header );
141 @notfoundcardnumbers = map { { cardnumber
=> $_ } } @notfoundcardnumbers;
142 $template->param( notfoundcardnumbers
=> \
@notfoundcardnumbers )
143 if @notfoundcardnumbers;
145 # Construct drop-down list values
146 my $branches = GetBranchesLoop
;
148 push @branches_option, { value
=> $_->{value
}, lib
=> $_->{branchname
} } for @
$branches;
149 unshift @branches_option, { value
=> "", lib
=> "" };
150 my $categories = GetBorrowercategoryList
;
151 my @categories_option;
152 push @categories_option, { value
=> $_->{categorycode
}, lib
=> $_->{description
} } for @
$categories;
153 unshift @categories_option, { value
=> "", lib
=> "" };
154 my $bsort1 = GetAuthorisedValues
("Bsort1");
156 push @sort1_option, { value
=> $_->{authorised_value
}, lib
=> $_->{lib
} } for @
$bsort1;
157 unshift @sort1_option, { value
=> "", lib
=> "" }
159 my $bsort2 = GetAuthorisedValues
("Bsort2");
161 push @sort2_option, { value
=> $_->{authorised_value
}, lib
=> $_->{lib
} } for @
$bsort2;
162 unshift @sort2_option, { value
=> "", lib
=> "" }
165 my @mandatoryFields = split( /\|/, C4
::Context
->preference("BorrowerMandatoryField") );
171 mandatory
=> ( grep /surname/, @mandatoryFields ) ?
1 : 0
177 mandatory
=> ( grep /firstname/, @mandatoryFields ) ?
1 : 0,
181 name
=> "branchcode",
183 option
=> \
@branches_option,
184 mandatory
=> ( grep /branchcode/, @mandatoryFields ) ?
1 : 0,
188 name
=> "categorycode",
190 option
=> \
@categories_option,
191 mandatory
=> ( grep /categorycode/, @mandatoryFields ) ?
1 : 0,
197 mandatory
=> ( grep /city/, @mandatoryFields ) ?
1 : 0,
203 mandatory
=> ( grep /state/, @mandatoryFields ) ?
1 : 0,
209 mandatory
=> ( grep /zipcode/, @mandatoryFields ) ?
1 : 0,
215 mandatory
=> ( grep /country/, @mandatoryFields ) ?
1 : 0,
220 type
=> @sort1_option ?
"select" : "text",
221 option
=> \
@sort1_option,
222 mandatory
=> ( grep /sort1/, @mandatoryFields ) ?
1 : 0,
227 type
=> @sort2_option ?
"select" : "text",
228 option
=> \
@sort2_option,
229 mandatory
=> ( grep /sort2/, @mandatoryFields ) ?
1 : 0,
233 name
=> "dateenrolled",
235 mandatory
=> ( grep /dateenrolled/, @mandatoryFields ) ?
1 : 0,
239 name
=> "dateexpiry",
241 mandatory
=> ( grep /dateexpiry/, @mandatoryFields ) ?
1 : 0,
245 name
=> "borrowernotes",
247 mandatory
=> ( grep /borrowernotes/, @mandatoryFields ) ?
1 : 0,
251 $template->param('patron_attributes_codes', \
@patron_attributes_codes);
252 $template->param('patron_attributes_values', \
@patron_attributes_values);
254 $template->param( fields
=> \
@fields );
257 # Process modifications
260 my @disabled = $input->param('disable_input');
262 for my $field ( qw
/surname firstname branchcode categorycode city state zipcode country sort1 sort2 dateenrolled dateexpiry borrowernotes/ ) {
263 my $value = $input->param($field);
264 $infos->{$field} = $value if $value;
265 $infos->{$field} = "" if grep { /^$field$/ } @disabled;
268 for my $field ( qw( dateenrolled dateexpiry ) ) {
269 $infos->{$field} = dt_from_string
($infos->{$field}) if $infos->{$field};
272 my @attributes = $input->param('patron_attributes');
273 my @attr_values = $input->param('patron_attributes_value');
276 my @borrowernumbers = $input->param('borrowernumber');
277 # For each borrower selected
278 for my $borrowernumber ( @borrowernumbers ) {
279 # If at least one field are filled, we want to modify the borrower
280 if ( defined $infos ) {
281 $infos->{borrowernumber
} = $borrowernumber;
282 my $success = ModMember
(%$infos);
284 my $borrowerinfo = GetBorrowerInfos
( borrowernumber
=> $borrowernumber );
285 $infos->{cardnumber
} = $borrowerinfo->{cardnumber
} || '';
286 push @errors, { error
=> "can_not_update", borrowernumber
=> $infos->{borrowernumber
}, cardnumber
=> $infos->{cardnumber
} };
291 my $borrower_categorycode = GetBorrowerCategorycode
$borrowernumber;
293 for ( @attributes ) {
295 $attribute->{code
} = $_;
296 $attribute->{attribute
} = $attr_values[$i];
297 my $attr_type = C4
::Members
::AttributeTypes
->fetch( $_ );
298 # If this borrower is not in the category of this attribute, we don't want to modify this attribute
299 ++$i and next if $attr_type->{category_code
} and $attr_type->{category_code
} ne $borrower_categorycode;
300 my $valuename = "attr" . $i . "_value";
301 if ( grep { /^$valuename$/ } @disabled ) {
302 # The attribute is disabled, we remove it for this borrower !
304 C4
::Members
::Attributes
::DeleteBorrowerAttribute
( $borrowernumber, $attribute );
306 push @errors, { error
=> $@
} if $@
;
308 # Attribute's value is empty, we don't want to modify it
309 ++$i and next if not $attribute->{attribute
};
312 C4
::Members
::Attributes
::UpdateBorrowerAttribute
( $borrowernumber, $attribute );
314 push @errors, { error
=> $@
} if $@
;
319 $op = "show_results"; # We have process modifications, the user want to view its
321 # Construct the results list
324 for my $borrowernumber ( @borrowernumbers ) {
325 my $borrower = GetBorrowerInfos
( borrowernumber
=> $borrowernumber );
327 $max_nb_attr = scalar( @
{ $borrower->{patron_attributes
} } )
328 if scalar( @
{ $borrower->{patron_attributes
} } ) > $max_nb_attr;
329 push @borrowers, $borrower;
332 my @patron_attributes_option;
333 for my $borrower ( @borrowers ) {
334 push @patron_attributes_option, { value
=> "$_->{code}", lib
=> $_->{code
} } for @
{ $borrower->{patron_attributes
} };
335 my $length = scalar( @
{ $borrower->{patron_attributes
} } );
336 push @
{ $borrower->{patron_attributes
} }, {} for ( $length .. $max_nb_attr - 1);
339 my @attributes_header = ();
340 for ( 1 .. scalar( $max_nb_attr ) ) {
341 push @attributes_header, { attribute
=> "Attributes $_" };
344 $template->param( borrowers
=> \
@borrowers );
345 $template->param( attributes_header
=> \
@attributes_header );
347 $template->param( borrowers
=> \
@borrowers );
348 $template->param( errors
=> \
@errors );
351 $template->param( patron_lists
=> [ GetPatronLists
() ] );
357 output_html_with_http_headers
$input, $cookie, $template->output;
360 sub GetBorrowerInfos
{
362 my $borrower = GetMember
( %info );
364 $borrower->{branchname
} = GetBranchName
( $borrower->{branchcode
} );
365 for ( qw(dateenrolled dateexpiry) ) {
366 my $userdate = $borrower->{$_};
367 unless ($userdate && $userdate ne "0000-00-00" and $userdate ne "9999-12-31") {
368 $borrower->{$_} = '';
371 $borrower->{$_} = $userdate || '';
373 $borrower->{category_description
} = GetBorrowercategory
( $borrower->{categorycode
} )->{description
};
374 my $attr_loop = C4
::Members
::Attributes
::GetBorrowerAttributes
( $borrower->{borrowernumber
} );
375 $borrower->{patron_attributes
} = $attr_loop;