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

(-)a/admin/columns_settings.yml (+2 lines)
Lines 1565-1570 modules: Link Here
1565
              columnname: location
1565
              columnname: location
1566
            -
1566
            -
1567
              columnname: itemtype
1567
              columnname: itemtype
1568
            -
1569
              columnname: collection
1568
            -
1570
            -
1569
              columnname: call_numbers
1571
              columnname: call_numbers
1570
            -
1572
            -
(-)a/circ/reserveratios.pl (+3 lines)
Lines 116-121 my $strsth = Link Here
116
            ORDER BY items.itemnumber SEPARATOR '|') as l_location,
116
            ORDER BY items.itemnumber SEPARATOR '|') as l_location,
117
        GROUP_CONCAT(DISTINCT items.itype 
117
        GROUP_CONCAT(DISTINCT items.itype 
118
            ORDER BY items.itemnumber SEPARATOR '|') as l_itype,
118
            ORDER BY items.itemnumber SEPARATOR '|') as l_itype,
119
        GROUP_CONCAT(DISTINCT items.ccode
120
            ORDER BY items.ccode SEPARATOR '|') as l_ccode,
119
121
120
        reserves.found,
122
        reserves.found,
121
        biblio.title,
123
        biblio.title,
Lines 173-178 while ( my $data = $sth->fetchrow_hashref ) { Link Here
173
            itemcallnumber     => $data->{itemcallnumber},
175
            itemcallnumber     => $data->{itemcallnumber},
174
            location           => [split('\|', $data->{l_location})],
176
            location           => [split('\|', $data->{l_location})],
175
            itype              => [split('\|', $data->{l_itype})],
177
            itype              => [split('\|', $data->{l_itype})],
178
            ccode              => [split('\|', $data->{l_ccode})],
176
            reservecount       => $data->{reservecount},
179
            reservecount       => $data->{reservecount},
177
            itemcount          => $data->{itemcount},
180
            itemcount          => $data->{itemcount},
178
            copies_to_buy      => sprintf( "%d", $copies_to_buy ),
181
            copies_to_buy      => sprintf( "%d", $copies_to_buy ),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/reserveratios.tt (-1 / +8 lines)
Lines 60-65 Link Here
60
          <th>Holding libraries</th>
60
          <th>Holding libraries</th>
61
          <th>Location</th>
61
          <th>Location</th>
62
          <th>Itype</th>
62
          <th>Itype</th>
63
          <th>Collection</th>
63
          <th class="natural">Call numbers</th>
64
          <th class="natural">Call numbers</th>
64
          <th>Items needed</th>
65
          <th>Items needed</th>
65
        </tr>
66
        </tr>
Lines 101-106 Link Here
101
                      [% END %]
102
                      [% END %]
102
                  </ul>
103
                  </ul>
103
            </td>
104
            </td>
105
            <td>
106
                  <ul>
107
                      [% FOREACH ccode IN reserveloo.ccode %]
108
                          <li>[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.ccode', authorised_value => ccode ) | html %]</li>
109
                      [% END %]
110
                  </ul>
111
            </td>
104
            <td>
112
            <td>
105
                  <ul>
113
                  <ul>
106
                      [% FOREACH listcall IN reserveloo.listcall %]
114
                      [% FOREACH listcall IN reserveloo.listcall %]
107
- 

Return to bug 34938