Cleanup selectbranchprinter.pl and .tmpl
[koha.git] / C4 / Branch.pm
1 package C4::Branch;
2
3 # This file is part of Koha.
4 #
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.
9 #
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.
13 #
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
17
18
19 use strict;
20 require Exporter;
21 use C4::Context;
22 use C4::Koha;
23
24 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
25
26 BEGIN {
27         # set the version for version checking
28         $VERSION = 3.02;
29         @ISA    = qw(Exporter);
30         @EXPORT = qw(
31                 &GetBranchCategory
32                 &GetBranchName
33                 &GetBranch
34                 &GetBranches
35                 &GetBranchesLoop
36                 &GetBranchDetail
37                 &get_branchinfos_of
38                 &ModBranch
39                 &CheckBranchCategorycode
40                 &GetBranchInfo
41                 &GetCategoryTypes
42                 &GetBranchCategories
43                 &GetBranchesInCategory
44                 &ModBranchCategoryInfo
45                 &DelBranch
46                 &DelBranchCategory
47         );
48         @EXPORT_OK = qw( &onlymine &mybranch );
49 }
50
51 =head1 NAME
52
53 C4::Branch - Koha branch module
54
55 =head1 SYNOPSIS
56
57 use C4::Branch;
58
59 =head1 DESCRIPTION
60
61 The functions in this module deal with branches.
62
63 =head1 FUNCTIONS
64
65 =head2 GetBranches
66
67   $branches = &GetBranches();
68
69   Returns informations about ALL branches, IndependantBranches Insensitive.
70   GetBranchInfo() returns the same information without the problems of this function 
71   (namespace collision, mainly).
72   Create a branch selector with the following code.
73   
74 =head3 in PERL SCRIPT
75
76     my $branches = GetBranches;
77     my @branchloop;
78     foreach my $thisbranch (sort keys %$branches) {
79         my $selected = 1 if $thisbranch eq $branch;
80         my %row =(value => $thisbranch,
81                     selected => $selected,
82                     branchname => $branches->{$thisbranch}->{branchname},
83                 );
84         push @branchloop, \%row;
85     }
86
87 =head3 in TEMPLATE
88
89     <select name="branch">
90         <option value="">Default</option>
91         <!-- TMPL_LOOP name="branchloop" -->
92         <option value="<!-- TMPL_VAR name="value" -->" <!-- TMPL_IF name="selected" -->selected<!-- /TMPL_IF -->><!-- TMPL_VAR name="branchname" --></option>
93         <!-- /TMPL_LOOP -->
94     </select>
95
96 =head4 Note that you often will want to just use GetBranchesLoop, for exactly the example above.
97
98 =cut
99
100 sub GetBranches {
101     my ($onlymine)=@_;
102     # returns a reference to a hash of references to ALL branches...
103     my %branches;
104     my $dbh = C4::Context->dbh;
105     my $sth;
106     my $query="SELECT * FROM branches";
107     my @bind_parameters;
108     if ($onlymine && C4::Context->userenv && C4::Context->userenv->{branch}){
109       $query .= ' WHERE branchcode = ? ';
110       push @bind_parameters, C4::Context->userenv->{branch};
111     }
112         $query.=" ORDER BY branchname";
113     $sth = $dbh->prepare($query);
114     $sth->execute( @bind_parameters );
115
116     my $nsth = $dbh->prepare(
117         "SELECT categorycode FROM branchrelations WHERE branchcode = ?"
118     );  # prepare once, outside while loop
119
120     while ( my $branch = $sth->fetchrow_hashref ) {
121         $nsth->execute( $branch->{'branchcode'} );
122         while ( my ($cat) = $nsth->fetchrow_array ) {
123             # FIXME - This seems wrong. It ought to be
124             # $branch->{categorycodes}{$cat} = 1;
125             # otherwise, there's a namespace collision if there's a
126             # category with the same name as a field in the 'branches'
127             # table (i.e., don't create a category called "issuing").
128             # In addition, the current structure doesn't really allow
129             # you to list the categories that a branch belongs to:
130             # you'd have to list keys %$branch, and remove those keys
131             # that aren't fields in the "branches" table.
132          #   $branch->{$cat} = 1;
133             $branch->{category}{$cat} = 1;
134         }
135         $branches{ $branch->{'branchcode'} } = $branch;
136     }
137     return ( \%branches );
138 }
139
140 sub onlymine {
141     return 
142     C4::Context->preference('IndependantBranches') &&
143     C4::Context->userenv                           &&
144     C4::Context->userenv->{flags}!=1               &&
145     C4::Context->userenv->{branch}                 ;
146 }
147
148 # always returns a string for OK comparison via "eq" or "ne"
149 sub mybranch {
150     C4::Context->userenv           or return '';
151     return C4::Context->userenv->{branch} || '';
152 }
153
154 sub GetBranchesLoop (;$$) {  # since this is what most pages want anyway
155     my $branch   = @_ ? shift : mybranch();     # optional first argument is branchcode of "my branch", if preselection is wanted.
156     my $onlymine = @_ ? shift : onlymine();
157     my $branches = GetBranches($onlymine);
158     my @loop;
159     foreach (sort { $branches->{$a}->{branchname} cmp $branches->{$b}->{branchname} } keys %$branches) {
160         push @loop, {
161             value => $_,
162             selected => ($_ eq $branch) ? 1 : 0, 
163             branchname => $branches->{$_}->{branchname},
164         };
165     }
166     return \@loop;
167 }
168
169 =head2 GetBranchName
170
171 =cut
172
173 sub GetBranchName {
174     my ($branchcode) = @_;
175     my $dbh = C4::Context->dbh;
176     my $sth;
177     $sth = $dbh->prepare("Select branchname from branches where branchcode=?");
178     $sth->execute($branchcode);
179     my $branchname = $sth->fetchrow_array;
180     $sth->finish;
181     return ($branchname);
182 }
183
184 =head2 ModBranch
185
186 $error = &ModBranch($newvalue);
187
188 This function modify an existing branch
189
190 C<$newvalue> is a ref to an array wich is containt all the column from branches table.
191
192 =cut
193
194 sub ModBranch {
195     my ($data) = @_;
196     
197     my $dbh    = C4::Context->dbh;
198     if ($data->{add}) {
199         my $query  = "
200             INSERT INTO branches
201             (branchcode,branchname,branchaddress1,
202             branchaddress2,branchaddress3,branchphone,
203             branchfax,branchemail,branchip,branchprinter)
204             VALUES (?,?,?,?,?,?,?,?,?,?)
205         ";
206         my $sth    = $dbh->prepare($query);
207         $sth->execute(
208             $data->{'branchcode'},       $data->{'branchname'},
209             $data->{'branchaddress1'},   $data->{'branchaddress2'},
210             $data->{'branchaddress3'},   $data->{'branchphone'},
211             $data->{'branchfax'},        $data->{'branchemail'},
212             $data->{'branchip'},         $data->{'branchprinter'},
213         );
214         return 1 if $dbh->err;
215     } else {
216         my $query  = "
217             UPDATE branches
218             SET branchname=?,branchaddress1=?,
219                 branchaddress2=?,branchaddress3=?,branchphone=?,
220                 branchfax=?,branchemail=?,branchip=?,branchprinter=?
221             WHERE branchcode=?
222         ";
223         my $sth    = $dbh->prepare($query);
224         $sth->execute(
225             $data->{'branchname'},
226             $data->{'branchaddress1'},   $data->{'branchaddress2'},
227             $data->{'branchaddress3'},   $data->{'branchphone'},
228             $data->{'branchfax'},        $data->{'branchemail'},
229             $data->{'branchip'},         $data->{'branchprinter'},
230             $data->{'branchcode'},
231         );
232     }
233     # sort out the categories....
234     my @checkedcats;
235     my $cats = GetBranchCategory();
236     foreach my $cat (@$cats) {
237         my $code = $cat->{'categorycode'};
238         if ( $data->{$code} ) {
239             push( @checkedcats, $code );
240         }
241     }
242     my $branchcode = uc( $data->{'branchcode'} );
243     my $branch     = GetBranchInfo($branchcode);
244     $branch = $branch->[0];
245     my $branchcats = $branch->{'categories'};
246     my @addcats;
247     my @removecats;
248     foreach my $bcat (@$branchcats) {
249
250         unless ( grep { /^$bcat$/ } @checkedcats ) {
251             push( @removecats, $bcat );
252         }
253     }
254     foreach my $ccat (@checkedcats) {
255         unless ( grep { /^$ccat$/ } @$branchcats ) {
256             push( @addcats, $ccat );
257         }
258     }
259     foreach my $cat (@addcats) {
260         my $sth =
261           $dbh->prepare(
262 "insert into branchrelations (branchcode, categorycode) values(?, ?)"
263           );
264         $sth->execute( $branchcode, $cat );
265         $sth->finish;
266     }
267     foreach my $cat (@removecats) {
268         my $sth =
269           $dbh->prepare(
270             "delete from branchrelations where branchcode=? and categorycode=?"
271           );
272         $sth->execute( $branchcode, $cat );
273         $sth->finish;
274     }
275 }
276
277 =head2 GetBranchCategory
278
279 $results = GetBranchCategory($categorycode);
280
281 C<$results> is an ref to an array.
282
283 =cut
284
285 sub GetBranchCategory {
286
287     # returns a reference to an array of hashes containing branches,
288     my ($catcode) = @_;
289     my $dbh = C4::Context->dbh;
290     my $sth;
291
292     #    print DEBUG "GetBranchCategory: entry: catcode=".cvs($catcode)."\n";
293     if ($catcode) {
294         $sth =
295           $dbh->prepare(
296             "select * from branchcategories where categorycode = ?");
297         $sth->execute($catcode);
298     }
299     else {
300         $sth = $dbh->prepare("Select * from branchcategories");
301         $sth->execute();
302     }
303     my @results;
304     while ( my $data = $sth->fetchrow_hashref ) {
305         push( @results, $data );
306     }
307     $sth->finish;
308
309     #    print DEBUG "GetBranchCategory: exit: returning ".cvs(\@results)."\n";
310     return \@results;
311 }
312
313 =head2 GetBranchCategories
314
315   my $categories = GetBranchCategories($branchcode,$categorytype);
316
317 Returns a list ref of anon hashrefs with keys eq columns of branchcategories table,
318 i.e. categorycode, categorydescription, categorytype, categoryname.
319 if $branchcode and/or $categorytype are passed, limit set to categories that
320 $branchcode is a member of , and to $categorytype.
321
322 =cut
323
324 sub GetBranchCategories {
325     my ($branchcode,$categorytype) = @_;
326         my $dbh = C4::Context->dbh();
327         my $query = "SELECT c.* FROM branchcategories c";
328         my (@where, @bind);
329         if($branchcode) {
330                 $query .= ",branchrelations r, branches b ";
331                 push @where, "c.categorycode=r.categorycode and r.branchcode=? ";  
332                 push @bind , $branchcode;
333         }
334         if ($categorytype) {
335                 push @where, " c.categorytype=? ";
336                 push @bind, $categorytype;
337         }
338         $query .= " where " . join(" and ", @where) if(@where);
339         $query .= " order by categorytype,c.categorycode";
340         my $sth=$dbh->prepare( $query);
341         $sth->execute(@bind);
342         
343         my $branchcats = $sth->fetchall_arrayref({});
344         $sth->finish();
345         return( $branchcats );
346 }
347
348 =head2 GetCategoryTypes
349
350 $categorytypes = GetCategoryTypes;
351 returns a list of category types.
352 Currently these types are HARDCODED.
353 type: 'searchdomain' defines a group of agencies that the calling library may search in.
354 Other usage of agency categories falls under type: 'properties'.
355         to allow for other uses of categories.
356 The searchdomain bit may be better implemented as a separate module, but
357 the categories were already here, and minimally used.
358 =cut
359
360         #TODO  manage category types.  rename possibly to 'agency domains' ? as borrowergroups are called categories.
361 sub GetCategoryTypes() {
362         return ( 'searchdomain','properties');
363 }
364
365 =head2 GetBranch
366
367 $branch = GetBranch( $query, $branches );
368
369 =cut
370
371 sub GetBranch ($$) {
372     my ( $query, $branches ) = @_;    # get branch for this query from branches
373     my $branch = $query->param('branch');
374     my %cookie = $query->cookie('userenv');
375     ($branch)                || ($branch = $cookie{'branchname'});
376     ( $branches->{$branch} ) || ( $branch = ( keys %$branches )[0] );
377     return $branch;
378 }
379
380 =head2 GetBranchDetail
381
382   $branchname = &GetBranchDetail($branchcode);
383
384 Given the branch code, the function returns the corresponding
385 branch name for a comprehensive information display
386
387 =cut
388
389 sub GetBranchDetail {
390     my ($branchcode) = @_;
391     my $dbh = C4::Context->dbh;
392     my $sth = $dbh->prepare("SELECT * FROM branches WHERE branchcode = ?");
393     $sth->execute($branchcode);
394     my $branchname = $sth->fetchrow_hashref();
395     $sth->finish();
396     return $branchname;
397 }
398
399 =head2 get_branchinfos_of
400
401   my $branchinfos_of = get_branchinfos_of(@branchcodes);
402
403 Associates a list of branchcodes to the information of the branch, taken in
404 branches table.
405
406 Returns a href where keys are branchcodes and values are href where keys are
407 branch information key.
408
409   print 'branchname is ', $branchinfos_of->{$code}->{branchname};
410
411 =cut
412
413 sub get_branchinfos_of {
414     my @branchcodes = @_;
415
416     my $query = '
417     SELECT branchcode,
418        branchname
419     FROM branches
420     WHERE branchcode IN ('
421       . join( ',', map( { "'" . $_ . "'" } @branchcodes ) ) . ')
422 ';
423     return C4::Koha::get_infos_of( $query, 'branchcode' );
424 }
425
426
427 =head2 GetBranchesInCategory
428
429   my $branches = GetBranchesInCategory($categorycode);
430
431 Returns a href:  keys %$branches eq (branchcode,branchname) .
432
433 =cut
434
435 sub GetBranchesInCategory($) {
436     my ($categorycode) = @_;
437         my @branches;
438         my $dbh = C4::Context->dbh();
439         my $sth=$dbh->prepare( "SELECT b.branchcode FROM branchrelations r, branches b 
440                                                         where r.branchcode=b.branchcode and r.categorycode=?");
441     $sth->execute($categorycode);
442         while (my $branch = $sth->fetchrow) {
443                 push @branches, $branch;
444         }
445         $sth->finish();
446         return( \@branches );
447 }
448
449 =head2 GetBranchInfo
450
451 $results = GetBranchInfo($branchcode);
452
453 returns C<$results>, a reference to an array of hashes containing branches.
454 if $branchcode, just this branch, with associated categories.
455 if ! $branchcode && $categorytype, all branches in the category.
456 =cut
457
458 sub GetBranchInfo {
459     my ($branchcode,$categorytype) = @_;
460     my $dbh = C4::Context->dbh;
461     my $sth;
462
463
464         if ($branchcode) {
465         $sth =
466           $dbh->prepare(
467             "Select * from branches where branchcode = ? order by branchcode");
468         $sth->execute($branchcode);
469     }
470     else {
471         $sth = $dbh->prepare("Select * from branches order by branchcode");
472         $sth->execute();
473     }
474     my @results;
475     while ( my $data = $sth->fetchrow_hashref ) {
476                 my @bind = ($data->{'branchcode'});
477         my $query= "select r.categorycode from branchrelations r";
478                 $query .= ", branchcategories c " if($categorytype);
479                 $query .= " where  branchcode=? ";
480                 if($categorytype) { 
481                         $query .= " and c.categorytype=? and r.categorycode=c.categorycode";
482                         push @bind, $categorytype;
483                 }
484         my $nsth=$dbh->prepare($query);
485                 $nsth->execute( @bind );
486         my @cats = ();
487         while ( my ($cat) = $nsth->fetchrow_array ) {
488             push( @cats, $cat );
489         }
490         $nsth->finish;
491         $data->{'categories'} = \@cats;
492         push( @results, $data );
493     }
494     $sth->finish;
495     return \@results;
496 }
497
498 =head2 DelBranch
499
500 &DelBranch($branchcode);
501
502 =cut
503
504 sub DelBranch {
505     my ($branchcode) = @_;
506     my $dbh = C4::Context->dbh;
507     my $sth = $dbh->prepare("delete from branches where branchcode = ?");
508     $sth->execute($branchcode);
509     $sth->finish;
510 }
511
512 =head2 ModBranchCategoryInfo
513
514 &ModBranchCategoryInfo($data);
515 sets the data from the editbranch form, and writes to the database...
516
517 =cut
518
519 sub ModBranchCategoryInfo {
520     my ($data) = @_;
521     my $dbh    = C4::Context->dbh;
522         if ($data->{'add'}){
523                 # we are doing an insert
524                 my $sth   = $dbh->prepare("INSERT INTO branchcategories (categorycode,categoryname,codedescription,categorytype) VALUES (?,?,?,?)");
525                 $sth->execute(uc( $data->{'categorycode'} ),$data->{'categoryname'}, $data->{'codedescription'},$data->{'categorytype'} );
526                 $sth->finish();         
527         }
528         else {
529                 # modifying
530                 my $sth = $dbh->prepare("UPDATE branchcategories SET categoryname=?,codedescription=?,categorytype=? WHERE categorycode=?");
531                 $sth->execute($data->{'categoryname'}, $data->{'codedescription'},$data->{'categorytype'},uc( $data->{'categorycode'} ) );
532                 $sth->finish();
533         }
534 }
535
536 =head2 DeleteBranchCategory
537
538 DeleteBranchCategory($categorycode);
539
540 =cut
541
542 sub DelBranchCategory {
543     my ($categorycode) = @_;
544     my $dbh = C4::Context->dbh;
545     my $sth = $dbh->prepare("delete from branchcategories where categorycode = ?");
546     $sth->execute($categorycode);
547     $sth->finish;
548 }
549
550 =head2 CheckBranchCategorycode
551
552 $number_rows_affected = CheckBranchCategorycode($categorycode);
553
554 =cut
555
556 sub CheckBranchCategorycode {
557
558     # check to see if the branchcode is being used in the database somewhere....
559     my ($categorycode) = @_;
560     my $dbh            = C4::Context->dbh;
561     my $sth            =
562       $dbh->prepare(
563         "select count(*) from branchrelations where categorycode=?");
564     $sth->execute($categorycode);
565     my ($total) = $sth->fetchrow_array;
566     return $total;
567 }
568
569 1;
570 __END__
571
572 =head1 AUTHOR
573
574 Koha Developement team <info@koha.org>
575
576 =cut