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

(-)a/C4/Items.pm (-1 / +1 lines)
Lines 1389-1395 sub GetItemsLocationInfo { Link Here
1389
        my @results;
1389
        my @results;
1390
1390
1391
	my $dbh = C4::Context->dbh;
1391
	my $dbh = C4::Context->dbh;
1392
	my $query = "SELECT a.branchname as homebranch, b.branchname as holdingbranch, 
1392
	my $query = "SELECT items.*,a.branchname as homebranch, b.branchname as holdingbranch, 
1393
			    location, itemcallnumber, cn_sort
1393
			    location, itemcallnumber, cn_sort
1394
		     FROM items, branches as a, branches as b
1394
		     FROM items, branches as a, branches as b
1395
		     WHERE homebranch = a.branchcode AND holdingbranch = b.branchcode 
1395
		     WHERE homebranch = a.branchcode AND holdingbranch = b.branchcode 
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-basket.tt (-2 / +7 lines)
Lines 354-359 function enableCheckboxActions(){ Link Here
354
	    <th>Author</th>
354
	    <th>Author</th>
355
	    <th>Year</th>
355
	    <th>Year</th>
356
	    <th>Location</th>
356
	    <th>Location</th>
357
		<th>Status</th>
357
        </tr></thead>
358
        </tr></thead>
358
359
359
        [% FOREACH BIBLIO_RESULT IN BIBLIO_RESULTS %]
360
        [% FOREACH BIBLIO_RESULT IN BIBLIO_RESULTS %]
Lines 390-396 function enableCheckboxActions(){ Link Here
390
                        [% END %]
391
                        [% END %]
391
                    </li>
392
                    </li>
392
                    [% END %]</ul>[% ELSE %]This record has no items.[% END %]</td>
393
                    [% END %]</ul>[% ELSE %]This record has no items.[% END %]</td>
393
            </tr>
394
				<td>[% IF ( BIBLIO_RESULT.ITEM_RESULTS ) %]<ul>[% FOREACH ITEM_RESULT IN BIBLIO_RESULT.ITEM_RESULTS %]
395
                    <li>
396
						[% INCLUDE 'item-status.inc' item = ITEM_RESULT %]
397
					 </li>
398
                    [% END %]</ul>[% END %]</td>
399
		</tr>
394
        [% END %]
400
        [% END %]
395
    </table></form>
401
    </table></form>
396
[% END %]
402
[% END %]
397
- 

Return to bug 7570