Bug 30477: Add new UNIMARC installer translation files
[koha.git] / C4 / Barcodes / annual.pm
1 package C4::Barcodes::annual;
2
3 # Copyright 2008 LibLime
4 #
5 # This file is part of Koha.
6 #
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.
11 #
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.
16 #
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>.
19
20 use strict;
21 use warnings;
22
23 use Carp qw( carp );
24
25 use C4::Context;
26
27 use Koha::DateUtils qw( dt_from_string output_pref );
28
29 use vars qw(@ISA);
30 use vars qw($width);
31
32 BEGIN {
33     @ISA = qw(C4::Barcodes);
34         $width = 4;
35 }
36
37 sub db_max {
38         my $self = shift;
39         my $query = "SELECT substring_index(barcode,'-',-1) AS chunk,barcode FROM items WHERE barcode LIKE ? ORDER BY chunk DESC LIMIT 1";
40                 # FIXME: unreasonably expensive query on large datasets (I think removal of group by does this?)
41         my $sth = C4::Context->dbh->prepare($query);
42         my ($iso);
43         if (@_) {
44                 my $input = shift;
45         $iso = output_pref({ dt => dt_from_string( $input, 'iso' ), dateformat => 'iso', dateonly => 1 }); # try to set the date w/ 2nd arg
46                 unless ($iso) {
47                         warn "Failed to create 'iso' Dates object with input '$input'.  Reverting to today's date.";
48             $iso = output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 }); # failover back to today
49                 }
50         } else {
51         $iso = output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 });
52         }
53         my $year = substr($iso,0,4);    # YYYY
54         $sth->execute("$year-%");
55         my $row = $sth->fetchrow_hashref;
56         return $row->{barcode};
57 }
58
59 sub initial () {
60         my $self = shift;
61     return substr(output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 }), 0, 4 ) .'-'. sprintf('%'."$width.$width".'d', 1);
62 }
63
64 sub parse {
65         my $self = shift;
66     my $barcode = (@_) ? shift : $self->value;
67         unless ($barcode =~ /(\d{4}-)(\d+)$/) {    # non-greedy match in first part
68                 carp "Barcode '$barcode' has no incrementing part!";
69                 return ($barcode,undef,undef);
70         }
71         return ($1,$2,'');  # the third part is in anticipation of barcodes that include checkdigits
72 }
73 sub width {
74         my $self = shift;
75         (@_) and $width = shift;        # hitting the class variable.
76         return $width;
77 }
78 sub process_head {
79         my ($self,$head,$whole,$specific) = @_;
80         $specific and return $head;     # if this is built off an existing barcode, just return the head unchanged.
81     return substr(output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 }), 0, 4 ) . '-'; # else get new YYYY-
82 }
83
84 sub new_object {
85         my $class = shift;
86         my $type = ref($class) || $class;
87         my $self = $type->default_self('annual');
88         return bless $self, $type;
89 }
90
91 1;
92 __END__
93