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

(-)a/C4/Budgets.pm (+8 lines)
Lines 191-196 sub GetBudgetChildren { Link Here
191
    |, { Slice => {} }, $budget_id );
191
    |, { Slice => {} }, $budget_id );
192
}
192
}
193
193
194
=head2 GetBudgetDescendantsIds
195
196
  my @descendants_ids = GetBudgetDescendantsIds($parent_id);
197
198
Get ids of all descendants of a given budget id.
199
200
=cut
201
194
sub GetBudgetDescendantsIds {
202
sub GetBudgetDescendantsIds {
195
    my ($budget_id) = @_;
203
    my ($budget_id) = @_;
196
204
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/suggestions_stats.tt (-2 / +2 lines)
Lines 40-46 Link Here
40
40
41
[% BLOCK select_tr %]
41
[% BLOCK select_tr %]
42
  [% select_filter = BLOCK %]
42
  [% select_filter = BLOCK %]
43
    [% IF display_values.$name.keys.size > 0 %]
43
    [% IF display_values.$name.keys.size %]
44
      <select name="filter_[% name %]">
44
      <select name="filter_[% name %]">
45
        <option value=""></option>
45
        <option value=""></option>
46
        [% FOREACH value IN display_values.$name.keys.sort %]
46
        [% FOREACH value IN display_values.$name.keys.sort %]
Lines 117-123 Link Here
117
117
118
          <form method="post" action="/cgi-bin/koha/reports/suggestions_stats.pl">
118
          <form method="post" action="/cgi-bin/koha/reports/suggestions_stats.pl">
119
            <fieldset class="rows">
119
            <fieldset class="rows">
120
              <legend>Acquisitions statistics</legend>
120
              <legend>Suggestions statistics</legend>
121
              <table>
121
              <table>
122
                <thead>
122
                <thead>
123
                  <tr>
123
                  <tr>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/suggestions_stats_results.tt (-3 / +2 lines)
Lines 2-8 Link Here
2
[% PROCESS 'reports/display_values_status.inc' %]
2
[% PROCESS 'reports/display_values_status.inc' %]
3
3
4
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
5
  <title>Koha &rsaquo; Reports &rsaquo; Acquisitions statistics results</title>
5
  <title>Koha &rsaquo; Reports &rsaquo; Suggestions statistics results</title>
6
  [% INCLUDE 'doc-head-close.inc' %]
6
  [% INCLUDE 'doc-head-close.inc' %]
7
  [% INCLUDE 'calendar.inc' %]
7
  [% INCLUDE 'calendar.inc' %]
8
</head>
8
</head>
Lines 25-31 Link Here
25
      <div id="yui-main">
25
      <div id="yui-main">
26
        <div class="yui-b">
26
        <div class="yui-b">
27
27
28
          <h1>Acquisitions statistics </h1>
28
          <h1>Suggestions statistics </h1>
29
          [% IF filters.keys.size %]
29
          [% IF filters.keys.size %]
30
            <p><b>Filtered on:</b></p>
30
            <p><b>Filtered on:</b></p>
31
            <ul>
31
            <ul>
32
- 

Return to bug 13392