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

(-)a/circ/branchtransfers.pl (-2 lines)
Lines 128-134 if ($barcode) { Link Here
128
        $item{'ccode'}                 = $iteminformation->{'ccode'};
128
        $item{'ccode'}                 = $iteminformation->{'ccode'};
129
        $item{'itemcallnumber'}        = $iteminformation->{'itemcallnumber'};
129
        $item{'itemcallnumber'}        = $iteminformation->{'itemcallnumber'};
130
        $item{'location'}              = GetKohaAuthorisedValueLib("LOC",$iteminformation->{'location'});
130
        $item{'location'}              = GetKohaAuthorisedValueLib("LOC",$iteminformation->{'location'});
131
        $item{'tobrname'}              = $tobranchcd;
132
#         }
131
#         }
133
        $item{counter}  = 0;
132
        $item{counter}  = 0;
134
        $item{barcode}  = $barcode;
133
        $item{barcode}  = $barcode;
Lines 160-166 foreach ( $query->param ) { Link Here
160
    $item{'ccode'}                 = $iteminformation->{'ccode'};
159
    $item{'ccode'}                 = $iteminformation->{'ccode'};
161
    $item{'itemcallnumber'}        = $iteminformation->{'itemcallnumber'};
160
    $item{'itemcallnumber'}        = $iteminformation->{'itemcallnumber'};
162
    $item{'location'}              = GetKohaAuthorisedValueLib("LOC",$iteminformation->{'location'});
161
    $item{'location'}              = GetKohaAuthorisedValueLib("LOC",$iteminformation->{'location'});
163
    $item{'tobrname'}              = $tobcd;
164
    push( @trsfitemloop, \%item );
162
    push( @trsfitemloop, \%item );
165
}
163
}
166
164
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/branchtransfers.tt (-2 / +1 lines)
Lines 187-193 Link Here
187
                    <td class="tf-itemcallnumber">[% trsfitemloo.itemcallnumber %]</td>
187
                    <td class="tf-itemcallnumber">[% trsfitemloo.itemcallnumber %]</td>
188
                    <td class="tf-itemtype">[% ItemTypes.GetDescription( trsfitemloo.itemtype ) %]</td>
188
                    <td class="tf-itemtype">[% ItemTypes.GetDescription( trsfitemloo.itemtype ) %]</td>
189
                    <td class="tf-ccode">[% AuthorisedValues.GetByCode( 'CCODE', trsfitemloo.ccode ) %]</td>
189
                    <td class="tf-ccode">[% AuthorisedValues.GetByCode( 'CCODE', trsfitemloo.ccode ) %]</td>
190
                    <td class="tf-destination">[% Branches.GetName( trsfitemloo.tobrname ) %]</td>
190
                    <td class="tf-destination">[% Branches.GetName( trsfitemloo.tobrcd ) %]</td>
191
                </tr>
191
                </tr>
192
            [% END %]
192
            [% END %]
193
        </table>
193
        </table>
194
- 

Return to bug 15758