View | Details | Raw Unified | Return to bug 18212
Collapse All | Expand All

(-)a/Koha/AuthorisedValue.pm (+29 lines)
Lines 158-163 sub _avb_resultset { Link Here
158
    $self->{_avb_resultset};
158
    $self->{_avb_resultset};
159
}
159
}
160
160
161
=head3 GetAuthValues
162
my $sth = Koha::AuthorisedValue->GetAuthValues($authcat,$dbh);
163
164
This subroutine retrieves and returns all fields from the authorised_values table where the category is equal to the parameter $authcat, and orders therecords by the value of the lib field
165
166
=cut
167
168
sub GetAuthValues {
169
    my ($self, $authcat, $dbh) = @_;
170
    my $query = qq{ SELECT * FROM authorised_values WHERE category=? order by lib };
171
    my $sth   = $dbh->prepare($query);
172
    $sth->execute($authcat);
173
    return $sth;
174
}
175
176
=head3 GetDistinctCat
177
my $sth = Koha::AuthorisedValue->GetDistinctCat($dbh);
178
179
This subroutine retrieves and returns all the different category values starting with 'A' in the authorised_values table
180
181
=cut
182
183
sub GetDistinctCat {
184
    my ($self, $dbh) = @_;
185
    my $sth = $dbh->prepare("select distinct category from authorised_values where category like 'A%' ");
186
    $sth->execute;
187
    return $sth;
188
}
189
161
=head3 type
190
=head3 type
162
191
163
=cut
192
=cut
(-)a/Koha/ItemType.pm (+17 lines)
Lines 81-90 sub translated_descriptions { Link Here
81
    } @translated_descriptions ];
81
    } @translated_descriptions ];
82
}
82
}
83
83
84
=head3 GetItemTypes
85
my $sth = Koha::ItemType->GetItemTypes($dbh);
86
87
This subroutine retrieves and returns all the values for the fields: itemtype and description from the itemtypes table.
88
=cut
89
90
sub GetItemTypes{
91
     my ($self, $dbh) = @_;
92
     my $query = qq| SELECT itemtype, description FROM itemtypes |;
93
     my $sth   = $dbh->prepare($query);
94
     $sth->execute(  );
95
     return $sth;
96
}
97
98
99
84
=head3 type
100
=head3 type
85
101
86
=cut
102
=cut
87
103
104
88
sub _type {
105
sub _type {
89
    return 'Itemtype';
106
    return 'Itemtype';
90
}
107
}
(-)a/Koha/Libraries.pm (+15 lines)
Lines 52-57 sub search_filtered { Link Here
52
    return $self->SUPER::search( $params, $attributes );
52
    return $self->SUPER::search( $params, $attributes );
53
}
53
}
54
54
55
=head3
56
my $sth = Koha::Libraries->GetBranches($dbh);
57
58
This subroutine retrieves and returns all the values for the fields: branchcode and branchname from the branches table. 
59
60
=cut
61
62
sub GetBranches {
63
    my ($self, $dbh) = @_;
64
    my $query = qq| SELECT branchcode, branchname FROM branches |;
65
    my $sth   = $dbh->prepare($query);
66
    $sth->execute();
67
    return $sth;
68
}
69
55
=head3 type
70
=head3 type
56
71
57
=cut
72
=cut
(-)a/admin/aqplan.pl (-33 / +25 lines)
Lines 110-117 my $op = $input->param("op"); Link Here
110
my $budgets_ref = GetBudgetHierarchy( $budget_period_id, $show_mine?$template->{VARS}->{'USER_INFO'}->{'branchcode'}:'', $show_mine?$template->{VARS}->{'USER_INFO'}->{'borrowernumber'}:'' );
110
my $budgets_ref = GetBudgetHierarchy( $budget_period_id, $show_mine?$template->{VARS}->{'USER_INFO'}->{'branchcode'}:'', $show_mine?$template->{VARS}->{'USER_INFO'}->{'borrowernumber'}:'' );
111
111
112
# build categories list
112
# build categories list
113
my $sth = $dbh->prepare("select distinct category from authorised_values where category like 'A%' ");
113
my $sth = Koha::AuthorisedValue->GetDistinctCat($dbh);
114
$sth->execute;
115
114
116
# the list
115
# the list
117
my @category_list;
116
my @category_list;
Lines 192-208 HideCols($authcat, @hide_cols); Link Here
192
}
191
}
193
# ------------------------------------------------------------
192
# ------------------------------------------------------------
194
if ( $authcat =~ m/^Asort/ ) {
193
if ( $authcat =~ m/^Asort/ ) {
195
    my $categoryauthvalues = C4::Acquisition->GetAuthValuesForCategory($authcat);
194
    my $sth = Koha::AuthorisedValue->GetAuthValues($authcat,$dbh);
196
195
197
    if ( $categoryauthvalues->rows > 0 ) {
196
    if ( $sth->rows > 0 ) {
198
        for ( my $i = 0 ; $i < $categoryauthvalues->rows ; $i++ ) {
197
        for ( my $i = 0 ; $i < $sth->rows ; $i++ ) {
199
            my $results = $categoryauthvalues->fetchrow_hashref;
198
              my $results = $sth->fetchrow_hashref;
200
            push @authvals, $results->{authorised_value};
199
              push @authvals, $results->{authorised_value};
201
            $labels{ $results->{authorised_value} } = $results->{lib};
200
              $labels{ $results->{authorised_value} } = $results->{lib};
202
        }
201
        }
203
    }
202
    }
204
   $categoryauthvalues->finish;
203
    $sth->finish;
205
   @authvals = sort { $a <=> $b } @authvals;
204
    @authvals = sort { $a <=> $b } @authvals;
206
}
205
}
207
elsif ( $authcat eq 'MONTHS' && $budget_period_startdate && $budget_period_enddate ) {
206
elsif ( $authcat eq 'MONTHS' && $budget_period_startdate && $budget_period_enddate ) {
208
207
Lines 228-264 elsif ( $authcat eq 'MONTHS' && $budget_period_startdate && $budget_period_endda Link Here
228
}
227
}
229
228
230
elsif ( $authcat eq 'ITEMTYPES' ) {
229
elsif ( $authcat eq 'ITEMTYPES' ) {
231
    my $query = qq| SELECT itemtype, description FROM itemtypes |;
232
    my $sth   = $dbh->prepare($query);
233
    $sth->execute(  );
234
230
235
    if ( $sth->rows > 0 ) {
231
   my $sth = Koha::ItemType->GetItemTypes($dbh);
236
        for ( my $i = 0 ; $i < $sth->rows ; $i++ ) {
232
   if ( $sth->rows > 0 ) {
233
      for ( my $i = 0 ; $i < $sth->rows ; $i++ ) {
237
            my $results = $sth->fetchrow_hashref;
234
            my $results = $sth->fetchrow_hashref;
238
            push @authvals, $results->{itemtype};
235
            push @authvals, $results->{itemtype};
239
            $labels{ $results->{itemtype} } = $results->{description};
236
           $labels{ $results->{itemtype} } = $results->{description};
240
        }
237
      }
241
    }
238
   }
242
    $sth->finish;
239
   $sth->finish;
243
240
244
} elsif ( $authcat eq 'BRANCHES' ) {
241
} elsif ( $authcat eq 'BRANCHES' ) {
245
242
246
    my $query = qq| SELECT branchcode, branchname FROM branches |;
243
    my $sth = Koha::Libraries->GetBranches($dbh);
247
    my $sth   = $dbh->prepare($query);
248
    $sth->execute();
249
244
250
    if ( $sth->rows > 0 ) {
245
    if ( $sth->rows > 0 ) {
251
        for ( my $i = 0 ; $i < $sth->rows ; $i++ ) {
246
         for ( my $i = 0 ; $i < $sth->rows ; $i++ ) {
252
            my $results = $sth->fetchrow_hashref;
247
               my $results = $sth->fetchrow_hashref;
253
            push @authvals, $results->{branchcode};
248
               push @authvals, $results->{branchcode};
254
            $labels{ $results->{branchcode} } = $results->{branchname};
249
               $labels{ $results->{branchcode} } = $results->{branchname};
255
        }
250
         }
256
    }
251
     }
257
    $sth->finish;
258
} elsif ($authcat) {
252
} elsif ($authcat) {
259
    my $query = qq{ SELECT * FROM authorised_values WHERE category=? order by lib };
253
260
    my $sth   = $dbh->prepare($query);
254
    my $sth = Koha::AuthorisedValue->GetAuthValues($authcat,$dbh);
261
    $sth->execute($authcat);
262
    if ( $sth->rows > 0 ) {
255
    if ( $sth->rows > 0 ) {
263
        for ( my $i = 0 ; $i < $sth->rows ; $i++ ) {
256
        for ( my $i = 0 ; $i < $sth->rows ; $i++ ) {
264
            my $results = $sth->fetchrow_hashref;
257
            my $results = $sth->fetchrow_hashref;
265
- 

Return to bug 18212