Bug 6755 follow up
[koha.git] / C4 / Branch.pm
blobabcdbd6b748c651275bb77a9d25ffbd6575bf953
1 package C4::Branch;
3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
8 # version.
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License along with
15 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
16 # Suite 330, Boston, MA 02111-1307 USA
19 use strict;
20 #use warnings; FIXME - Bug 2505
21 require Exporter;
22 use C4::Context;
23 use C4::Koha;
25 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
27 BEGIN {
28 # set the version for version checking
29 $VERSION = 3.02;
30 @ISA = qw(Exporter);
31 @EXPORT = qw(
32 &GetBranchCategory
33 &GetBranchName
34 &GetBranch
35 &GetBranches
36 &GetBranchesLoop
37 &GetBranchDetail
38 &get_branchinfos_of
39 &ModBranch
40 &CheckBranchCategorycode
41 &GetBranchInfo
42 &GetCategoryTypes
43 &GetBranchCategories
44 &GetBranchesInCategory
45 &ModBranchCategoryInfo
46 &DelBranch
47 &DelBranchCategory
48 &CheckCategoryUnique
49 &mybranch
51 @EXPORT_OK = qw( &onlymine &mybranch get_branch_code_from_name );
54 =head1 NAME
56 C4::Branch - Koha branch module
58 =head1 SYNOPSIS
60 use C4::Branch;
62 =head1 DESCRIPTION
64 The functions in this module deal with branches.
66 =head1 FUNCTIONS
68 =head2 GetBranches
70 $branches = &GetBranches();
72 Returns informations about ALL branches, IndependantBranches Insensitive.
73 GetBranchInfo() returns the same information without the problems of this function
74 (namespace collision, mainly).
76 Create a branch selector with the following code.
78 =head3 in PERL SCRIPT
80 my $branches = GetBranches;
81 my @branchloop;
82 foreach my $thisbranch (sort keys %$branches) {
83 my $selected = 1 if $thisbranch eq $branch;
84 my %row =(value => $thisbranch,
85 selected => $selected,
86 branchname => $branches->{$thisbranch}->{branchname},
88 push @branchloop, \%row;
91 =head3 in TEMPLATE
93 <select name="branch">
94 <option value="">Default</option>
95 <!-- TMPL_LOOP name="branchloop" -->
96 <option value="<!-- TMPL_VAR name="value" -->" <!-- TMPL_IF name="selected" -->selected<!-- /TMPL_IF -->><!-- TMPL_VAR name="branchname" --></option>
97 <!-- /TMPL_LOOP -->
98 </select>
100 =head4 Note that you often will want to just use GetBranchesLoop, for exactly the example above.
102 =cut
104 sub GetBranches {
105 my ($onlymine)=@_;
106 # returns a reference to a hash of references to ALL branches...
107 my %branches;
108 my $dbh = C4::Context->dbh;
109 my $sth;
110 my $query="SELECT * FROM branches";
111 my @bind_parameters;
112 if ($onlymine && C4::Context->userenv && C4::Context->userenv->{branch}){
113 $query .= ' WHERE branchcode = ? ';
114 push @bind_parameters, C4::Context->userenv->{branch};
116 $query.=" ORDER BY branchname";
117 $sth = $dbh->prepare($query);
118 $sth->execute( @bind_parameters );
120 my $nsth = $dbh->prepare(
121 "SELECT categorycode FROM branchrelations WHERE branchcode = ?"
122 ); # prepare once, outside while loop
124 while ( my $branch = $sth->fetchrow_hashref ) {
125 $nsth->execute( $branch->{'branchcode'} );
126 while ( my ($cat) = $nsth->fetchrow_array ) {
127 # FIXME - This seems wrong. It ought to be
128 # $branch->{categorycodes}{$cat} = 1;
129 # otherwise, there's a namespace collision if there's a
130 # category with the same name as a field in the 'branches'
131 # table (i.e., don't create a category called "issuing").
132 # In addition, the current structure doesn't really allow
133 # you to list the categories that a branch belongs to:
134 # you'd have to list keys %$branch, and remove those keys
135 # that aren't fields in the "branches" table.
136 # $branch->{$cat} = 1;
137 $branch->{category}{$cat} = 1;
139 $branches{ $branch->{'branchcode'} } = $branch;
141 return ( \%branches );
144 sub onlymine {
145 return
146 C4::Context->preference('IndependantBranches') &&
147 C4::Context->userenv &&
148 C4::Context->userenv->{flags} %2 != 1 &&
149 C4::Context->userenv->{branch} ;
152 # always returns a string for OK comparison via "eq" or "ne"
153 sub mybranch {
154 C4::Context->userenv or return '';
155 return C4::Context->userenv->{branch} || '';
158 sub GetBranchesLoop (;$$) { # since this is what most pages want anyway
159 my $branch = @_ ? shift : mybranch(); # optional first argument is branchcode of "my branch", if preselection is wanted.
160 my $onlymine = @_ ? shift : onlymine();
161 my $branches = GetBranches($onlymine);
162 my @loop;
163 foreach ( sort { uc($branches->{$a}->{branchname}) cmp uc($branches->{$b}->{branchname}) } keys %$branches ) {
164 push @loop, {
165 value => $_,
166 selected => ($_ eq $branch) ? 1 : 0,
167 branchname => $branches->{$_}->{branchname},
170 return \@loop;
173 =head2 GetBranchName
175 =cut
177 sub GetBranchName {
178 my ($branchcode) = @_;
179 my $dbh = C4::Context->dbh;
180 my $sth;
181 $sth = $dbh->prepare("Select branchname from branches where branchcode=?");
182 $sth->execute($branchcode);
183 my $branchname = $sth->fetchrow_array;
184 $sth->finish;
185 return ($branchname);
188 =head2 ModBranch
190 $error = &ModBranch($newvalue);
192 This function modify an existing branch
194 C<$newvalue> is a ref to an array wich is containt all the column from branches table.
196 =cut
198 sub ModBranch {
199 my ($data) = @_;
201 my $dbh = C4::Context->dbh;
202 if ($data->{add}) {
203 my $query = "
204 INSERT INTO branches
205 (branchcode,branchname,branchaddress1,
206 branchaddress2,branchaddress3,branchzip,branchcity,branchstate,
207 branchcountry,branchphone,branchfax,branchemail,
208 branchurl,branchip,branchprinter,branchnotes)
209 VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
211 my $sth = $dbh->prepare($query);
212 $sth->execute(
213 $data->{'branchcode'}, $data->{'branchname'},
214 $data->{'branchaddress1'}, $data->{'branchaddress2'},
215 $data->{'branchaddress3'}, $data->{'branchzip'},
216 $data->{'branchcity'}, $data->{'branchstate'},
217 $data->{'branchcountry'},
218 $data->{'branchphone'}, $data->{'branchfax'},
219 $data->{'branchemail'}, $data->{'branchurl'},
220 $data->{'branchip'}, $data->{'branchprinter'},
221 $data->{'branchnotes'},
223 return 1 if $dbh->err;
224 } else {
225 my $query = "
226 UPDATE branches
227 SET branchname=?,branchaddress1=?,
228 branchaddress2=?,branchaddress3=?,branchzip=?,
229 branchcity=?,branchstate=?,branchcountry=?,branchphone=?,
230 branchfax=?,branchemail=?,branchurl=?,branchip=?,
231 branchprinter=?,branchnotes=?
232 WHERE branchcode=?
234 my $sth = $dbh->prepare($query);
235 $sth->execute(
236 $data->{'branchname'},
237 $data->{'branchaddress1'}, $data->{'branchaddress2'},
238 $data->{'branchaddress3'}, $data->{'branchzip'},
239 $data->{'branchcity'}, $data->{'branchstate'},
240 $data->{'branchcountry'},
241 $data->{'branchphone'}, $data->{'branchfax'},
242 $data->{'branchemail'}, $data->{'branchurl'},
243 $data->{'branchip'}, $data->{'branchprinter'},
244 $data->{'branchnotes'},
245 $data->{'branchcode'},
248 # sort out the categories....
249 my @checkedcats;
250 my $cats = GetBranchCategory();
251 foreach my $cat (@$cats) {
252 my $code = $cat->{'categorycode'};
253 if ( $data->{$code} ) {
254 push( @checkedcats, $code );
257 my $branchcode = uc( $data->{'branchcode'} );
258 my $branch = GetBranchInfo($branchcode);
259 $branch = $branch->[0];
260 my $branchcats = $branch->{'categories'};
261 my @addcats;
262 my @removecats;
263 foreach my $bcat (@$branchcats) {
265 unless ( grep { /^$bcat$/ } @checkedcats ) {
266 push( @removecats, $bcat );
269 foreach my $ccat (@checkedcats) {
270 unless ( grep { /^$ccat$/ } @$branchcats ) {
271 push( @addcats, $ccat );
274 foreach my $cat (@addcats) {
275 my $sth =
276 $dbh->prepare(
277 "insert into branchrelations (branchcode, categorycode) values(?, ?)"
279 $sth->execute( $branchcode, $cat );
280 $sth->finish;
282 foreach my $cat (@removecats) {
283 my $sth =
284 $dbh->prepare(
285 "delete from branchrelations where branchcode=? and categorycode=?"
287 $sth->execute( $branchcode, $cat );
288 $sth->finish;
292 =head2 GetBranchCategory
294 $results = GetBranchCategory($categorycode);
296 C<$results> is an ref to an array.
298 =cut
300 sub GetBranchCategory {
302 # returns a reference to an array of hashes containing branches,
303 my ($catcode) = @_;
304 my $dbh = C4::Context->dbh;
305 my $sth;
307 # print DEBUG "GetBranchCategory: entry: catcode=".cvs($catcode)."\n";
308 if ($catcode) {
309 $sth =
310 $dbh->prepare(
311 "select * from branchcategories where categorycode = ?");
312 $sth->execute($catcode);
314 else {
315 $sth = $dbh->prepare("Select * from branchcategories");
316 $sth->execute();
318 my @results;
319 while ( my $data = $sth->fetchrow_hashref ) {
320 push( @results, $data );
322 $sth->finish;
324 # print DEBUG "GetBranchCategory: exit: returning ".cvs(\@results)."\n";
325 return \@results;
328 =head2 GetBranchCategories
330 my $categories = GetBranchCategories($branchcode,$categorytype);
332 Returns a list ref of anon hashrefs with keys eq columns of branchcategories table,
333 i.e. categorycode, categorydescription, categorytype, categoryname.
334 if $branchcode and/or $categorytype are passed, limit set to categories that
335 $branchcode is a member of , and to $categorytype.
337 =cut
339 sub GetBranchCategories {
340 my ($branchcode,$categorytype) = @_;
341 my $dbh = C4::Context->dbh();
342 my $query = "SELECT c.* FROM branchcategories c";
343 my (@where, @bind);
344 if($branchcode) {
345 $query .= ",branchrelations r, branches b ";
346 push @where, "c.categorycode=r.categorycode and r.branchcode=? ";
347 push @bind , $branchcode;
349 if ($categorytype) {
350 push @where, " c.categorytype=? ";
351 push @bind, $categorytype;
353 $query .= " where " . join(" and ", @where) if(@where);
354 $query .= " order by categorytype,c.categorycode";
355 my $sth=$dbh->prepare( $query);
356 $sth->execute(@bind);
358 my $branchcats = $sth->fetchall_arrayref({});
359 $sth->finish();
360 return( $branchcats );
363 =head2 GetCategoryTypes
365 $categorytypes = GetCategoryTypes;
366 returns a list of category types.
367 Currently these types are HARDCODED.
368 type: 'searchdomain' defines a group of agencies that the calling library may search in.
369 Other usage of agency categories falls under type: 'properties'.
370 to allow for other uses of categories.
371 The searchdomain bit may be better implemented as a separate module, but
372 the categories were already here, and minimally used.
373 =cut
375 #TODO manage category types. rename possibly to 'agency domains' ? as borrowergroups are called categories.
376 sub GetCategoryTypes() {
377 return ( 'searchdomain','properties');
380 =head2 GetBranch
382 $branch = GetBranch( $query, $branches );
384 =cut
386 sub GetBranch ($$) {
387 my ( $query, $branches ) = @_; # get branch for this query from branches
388 my $branch = $query->param('branch');
389 my %cookie = $query->cookie('userenv');
390 ($branch) || ($branch = $cookie{'branchname'});
391 ( $branches->{$branch} ) || ( $branch = ( keys %$branches )[0] );
392 return $branch;
395 =head2 GetBranchDetail
397 $branch = &GetBranchDetail($branchcode);
399 Given the branch code, the function returns a
400 hashref for the corresponding row in the branches table.
402 =cut
404 sub GetBranchDetail {
405 my ($branchcode) = shift or return;
406 my $sth = C4::Context->dbh->prepare("SELECT * FROM branches WHERE branchcode = ?");
407 $sth->execute($branchcode);
408 return $sth->fetchrow_hashref();
411 =head2 get_branchinfos_of
413 my $branchinfos_of = get_branchinfos_of(@branchcodes);
415 Associates a list of branchcodes to the information of the branch, taken in
416 branches table.
418 Returns a href where keys are branchcodes and values are href where keys are
419 branch information key.
421 print 'branchname is ', $branchinfos_of->{$code}->{branchname};
423 =cut
425 sub get_branchinfos_of {
426 my @branchcodes = @_;
428 my $query = '
429 SELECT branchcode,
430 branchname
431 FROM branches
432 WHERE branchcode IN ('
433 . join( ',', map( { "'" . $_ . "'" } @branchcodes ) ) . ')
435 return C4::Koha::get_infos_of( $query, 'branchcode' );
439 =head2 GetBranchesInCategory
441 my $branches = GetBranchesInCategory($categorycode);
443 Returns a href: keys %$branches eq (branchcode,branchname) .
445 =cut
447 sub GetBranchesInCategory($) {
448 my ($categorycode) = @_;
449 my @branches;
450 my $dbh = C4::Context->dbh();
451 my $sth=$dbh->prepare( "SELECT b.branchcode FROM branchrelations r, branches b
452 where r.branchcode=b.branchcode and r.categorycode=?");
453 $sth->execute($categorycode);
454 while (my $branch = $sth->fetchrow) {
455 push @branches, $branch;
457 $sth->finish();
458 return( \@branches );
461 =head2 GetBranchInfo
463 $results = GetBranchInfo($branchcode);
465 returns C<$results>, a reference to an array of hashes containing branches.
466 if $branchcode, just this branch, with associated categories.
467 if ! $branchcode && $categorytype, all branches in the category.
468 =cut
470 sub GetBranchInfo {
471 my ($branchcode,$categorytype) = @_;
472 my $dbh = C4::Context->dbh;
473 my $sth;
476 if ($branchcode) {
477 $sth =
478 $dbh->prepare(
479 "Select * from branches where branchcode = ? order by branchcode");
480 $sth->execute($branchcode);
482 else {
483 $sth = $dbh->prepare("Select * from branches order by branchcode");
484 $sth->execute();
486 my @results;
487 while ( my $data = $sth->fetchrow_hashref ) {
488 my @bind = ($data->{'branchcode'});
489 my $query= "select r.categorycode from branchrelations r";
490 $query .= ", branchcategories c " if($categorytype);
491 $query .= " where branchcode=? ";
492 if($categorytype) {
493 $query .= " and c.categorytype=? and r.categorycode=c.categorycode";
494 push @bind, $categorytype;
496 my $nsth=$dbh->prepare($query);
497 $nsth->execute( @bind );
498 my @cats = ();
499 while ( my ($cat) = $nsth->fetchrow_array ) {
500 push( @cats, $cat );
502 $nsth->finish;
503 $data->{'categories'} = \@cats;
504 push( @results, $data );
506 $sth->finish;
507 return \@results;
510 =head2 DelBranch
512 &DelBranch($branchcode);
514 =cut
516 sub DelBranch {
517 my ($branchcode) = @_;
518 my $dbh = C4::Context->dbh;
519 my $sth = $dbh->prepare("delete from branches where branchcode = ?");
520 $sth->execute($branchcode);
521 $sth->finish;
524 =head2 ModBranchCategoryInfo
526 &ModBranchCategoryInfo($data);
527 sets the data from the editbranch form, and writes to the database...
529 =cut
531 sub ModBranchCategoryInfo {
532 my ($data) = @_;
533 my $dbh = C4::Context->dbh;
534 if ($data->{'add'}){
535 # we are doing an insert
536 my $sth = $dbh->prepare("INSERT INTO branchcategories (categorycode,categoryname,codedescription,categorytype) VALUES (?,?,?,?)");
537 $sth->execute(uc( $data->{'categorycode'} ),$data->{'categoryname'}, $data->{'codedescription'},$data->{'categorytype'} );
538 $sth->finish();
540 else {
541 # modifying
542 my $sth = $dbh->prepare("UPDATE branchcategories SET categoryname=?,codedescription=?,categorytype=? WHERE categorycode=?");
543 $sth->execute($data->{'categoryname'}, $data->{'codedescription'},$data->{'categorytype'},uc( $data->{'categorycode'} ) );
544 $sth->finish();
548 =head2 CheckCategoryUnique
550 if (CheckCategoryUnique($categorycode)){
551 # do something
554 =cut
556 sub CheckCategoryUnique {
557 my $categorycode = shift;
558 my $dbh = C4::Context->dbh;
559 my $sth = $dbh->prepare("SELECT categorycode FROM branchcategories WHERE categorycode = ?");
560 $sth->execute(uc( $categorycode) );
561 if (my $data = $sth->fetchrow_hashref){
562 return 0;
564 else {
565 return 1;
570 =head2 DeleteBranchCategory
572 DeleteBranchCategory($categorycode);
574 =cut
576 sub DelBranchCategory {
577 my ($categorycode) = @_;
578 my $dbh = C4::Context->dbh;
579 my $sth = $dbh->prepare("delete from branchcategories where categorycode = ?");
580 $sth->execute($categorycode);
581 $sth->finish;
584 =head2 CheckBranchCategorycode
586 $number_rows_affected = CheckBranchCategorycode($categorycode);
588 =cut
590 sub CheckBranchCategorycode {
592 # check to see if the branchcode is being used in the database somewhere....
593 my ($categorycode) = @_;
594 my $dbh = C4::Context->dbh;
595 my $sth =
596 $dbh->prepare(
597 "select count(*) from branchrelations where categorycode=?");
598 $sth->execute($categorycode);
599 my ($total) = $sth->fetchrow_array;
600 return $total;
603 sub get_branch_code_from_name {
604 my @branch_name = @_;
605 my $query = "SELECT branchcode FROM branches WHERE branchname=?;";
606 my $dbh = C4::Context->dbh();
607 my $sth = $dbh->prepare($query);
608 $sth->execute(@branch_name);
609 return $sth->fetchrow_array;
613 __END__
615 =head1 AUTHOR
617 Koha Development Team <http://koha-community.org/>
619 =cut